fix protegekb tag

This commit is contained in:
Massimiliano Corsini 2006-01-26 16:14:48 +00:00
parent 29c6470b0b
commit 2e94f9b4f7
1 changed files with 4 additions and 11 deletions

View File

@ -114,26 +114,19 @@ void XMLTree::setVerboseMode(bool flag)
void XMLTree::initializeMain()
{
MainNode* mn = new MainNode;
//NodeGroup* ng = new NodeGroup;
mn->headers.push_back(pair<const char*, const char*>("protegekb", ""));
char* s1 = "http://www.w3.org/2001/XMLSchema-instance";
char* s2 = new(char[100]);
char* s2 = new char[100];
sprintf(s2,"\"%s\"",s1);
mn->addHeaders(" xmlns:xsi=", s2);
s1 = "http://protege.stanford.edu/plugins/xmlbackend/protege_xml_backend.xsd";
s2 = new(char[100]);
sprintf(s2,"\"%s\"",s1);
mn->addHeaders(" xsi:noNamespaceSchemaLocation=", s2);
mn->addHeaders(" xmlns:xsi=", s2);
root.Sons.push_back(mn);
}
void XMLTree::finalizeMain()