This commit is contained in:
Ren RenJuan 2014-01-19 20:56:09 +00:00
parent e9a0c54922
commit fafc5f2801
3 changed files with 14 additions and 11 deletions

View File

@ -330,7 +330,7 @@ void mdCommander::say(char *what)
void mdCommander::greet() { void mdCommander::greet() {
const char *title="AusReg Cliever Commander", 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"; *prompt="Enter ? or command";
sprintf(theBanner,banner,thisConfig->shellProcess,thisConfig->daemonProcess); sprintf(theBanner,banner,thisConfig->shellProcess,thisConfig->daemonProcess);
@ -395,16 +395,14 @@ void mdCommander::eppMainMenu() {
mvprintw(24,10," v<letter> - vi/xmledit a blank XML form"); mvprintw(24,10," v<letter> - vi/xmledit a blank XML form");
mvprintw(25,10," V<n> - vi/xmledit a XSDs"); mvprintw(25,10," V<n> - vi/xmledit a XSDs");
mvprintw(7,50, "Commands are defined by the XSDs"); mvprintw(7,50, "EPP command schemata are defined by XSDs in ./resources.");
mvprintw(8,50, "in ./resources. These are being migrated from"); mvprintw(8,50, "Originals from the 2007 toolkit are updated to what's @");
mvprintw(9,50,"what was in in the 2007 toolkit to."); mvprintw(9,50, "http://www.iana.org/assignments/xml-registry/xml-registry.xhtml");
mvprintw(10,50, "what's at the 'XML TO USE IN AC' link @"); mvprintw(10,50,"What's loaded here is generated in the build from those xsds.");
mvprintw(11,50,"dnseppus.meansofproduction.biz/doc,."); mvprintw(12,50,"If no schemata loaded you'll see stubs in the internal editor.");
mvprintw(13,50,"If no XSD loaded you'll see");
mvprintw(14,50,"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(15,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(16,50," 4: registrant-1.0.xsd 5: host-1-0.xsd 6: kv-1.0.xsd");
say((char *)"Action sequence or ? to exit"); say((char *)"Action sequence or ? to exit");
} }

View File

@ -57,7 +57,7 @@ void md() {
try { try {
theseLogs = new mdLogger(); theseLogs = new mdLogger();
theseLogs->init(); theseLogs->init(true);
theseLogs->logN(1,MD_NAME " " MD_VERSION " compiled on " __DATE__ " @ " __TIME__ "(%d)",thisConfig->daemonProcess); theseLogs->logN(1,MD_NAME " " MD_VERSION " compiled on " __DATE__ " @ " __TIME__ "(%d)",thisConfig->daemonProcess);
if (daemonized) theseLogs->logN(1,"(detached from %d)",thisConfig->shellProcess); if (daemonized) theseLogs->logN(1,"(detached from %d)",thisConfig->shellProcess);

5
README
View File

@ -38,4 +38,9 @@
2014-01 is more complicated than that but on a new host 2014-01 is more complicated than that but on a new host
(not necessarily debian) that should be done first. (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.