This commit is contained in:
parent
e9a0c54922
commit
fafc5f2801
|
@ -395,16 +395,14 @@ void mdCommander::eppMainMenu() {
|
|||
mvprintw(24,10," v<letter> - vi/xmledit a blank XML form");
|
||||
mvprintw(25,10," V<n> - 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");
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
5
README
5
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.
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue