diff --git a/APIG/client/commander.cpp b/APIG/client/commander.cpp index 845965c..5c257c8 100644 --- a/APIG/client/commander.cpp +++ b/APIG/client/commander.cpp @@ -330,7 +330,7 @@ void mdCommander::say(char *what) void mdCommander::greet() { const char *title="AusReg Cliever Commander", - *warn="NB: this program is meant to be powerful and fast, not safe or user friendly", + *warn="NB: this program is meant to be powerful and fast, not safe or user friendly", *prompt="Enter ? or command"; sprintf(theBanner,banner,thisConfig->shellProcess,thisConfig->daemonProcess); @@ -395,16 +395,14 @@ void mdCommander::eppMainMenu() { mvprintw(24,10," v - vi/xmledit a blank XML form"); mvprintw(25,10," V - vi/xmledit a XSDs"); - mvprintw(7,50, "Commands are defined by the XSDs"); - mvprintw(8,50, "in ./resources. These are being migrated from"); - mvprintw(9,50,"what was in in the 2007 toolkit to."); - mvprintw(10,50, "what's at the 'XML TO USE IN AC' link @"); - mvprintw(11,50,"dnseppus.meansofproduction.biz/doc,."); - mvprintw(13,50,"If no XSD loaded you'll see"); - mvprintw(14,50,"stubs in the internal editor."); + mvprintw(7,50, "EPP command schemata are defined by XSDs in ./resources."); + mvprintw(8,50, "Originals from the 2007 toolkit are updated to what's @"); + mvprintw(9,50, "http://www.iana.org/assignments/xml-registry/xml-registry.xhtml"); + mvprintw(10,50,"What's loaded here is generated in the build from those xsds."); + mvprintw(12,50,"If no schemata loaded you'll see stubs in the internal editor."); - mvprintw(16,50," n = 1 : epp-1.0.xsd 2: domain-1-0.xsd 3: contact-1.0.xsd"); - mvprintw(17,50," 4: registrant-1.0.xsd 5: host-1-0.xsd 6: kv-1.0.xsd"); + mvprintw(15,50," n = 1 : epp-1.0.xsd 2: domain-1-0.xsd 3: contact-1.0.xsd"); + mvprintw(16,50," 4: registrant-1.0.xsd 5: host-1-0.xsd 6: kv-1.0.xsd"); say((char *)"Action sequence or ? to exit"); } diff --git a/AusRegCliever/server/cliever-md.cpp b/AusRegCliever/server/cliever-md.cpp index 2f20acb..cd08d7f 100644 --- a/AusRegCliever/server/cliever-md.cpp +++ b/AusRegCliever/server/cliever-md.cpp @@ -57,7 +57,7 @@ void md() { try { theseLogs = new mdLogger(); - theseLogs->init(); + theseLogs->init(true); theseLogs->logN(1,MD_NAME " " MD_VERSION " compiled on " __DATE__ " @ " __TIME__ "(%d)",thisConfig->daemonProcess); if (daemonized) theseLogs->logN(1,"(detached from %d)",thisConfig->shellProcess); diff --git a/README b/README index 109b4fc..0f441d1 100644 --- a/README +++ b/README @@ -38,4 +38,9 @@ 2014-01 is more complicated than that but on a new host (not necessarily debian) that should be done first. + The Code Synthesis xsd program is used to construct + c++ objects from the XSD files defining EPP XML. + The generated code is treated like object code and + not tracked in the git repo. +