X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=c%2B%2B0x%2Fxml-template.cpp;h=f2d2d6b7926dc5c58b1b94fd1b8f6baff261cd9f;hb=05dd36f104334a09d8eaea594752d49bb68418a8;hp=a158f31023c2feb9c93ee42dd729faf40b94d916;hpb=59996859ced59ac9fdb307b2eb2130b48d4d4f63;p=xml-template diff --git a/c++0x/xml-template.cpp b/c++0x/xml-template.cpp index a158f31..f2d2d6b 100644 --- a/c++0x/xml-template.cpp +++ b/c++0x/xml-template.cpp @@ -1,6 +1,7 @@ #include "xml-template.h" #include +#include using namespace std; @@ -25,6 +26,14 @@ void Substitute::process(xmlNode *node, bool clean) { if (strcmp(reinterpret_cast(attr->ns->href), "http://template.sesse.net/") == 0 && strcmp(reinterpret_cast(attr->name), "id") == 0) { id = reinterpret_cast(xmlNodeGetContent(attr->children)); + + if (clean) { + if (attr->prev == NULL) { + child->properties = attr->next; + } else { + attr->prev->next = attr->next; + } + } } } @@ -44,3 +53,17 @@ void Substitute::process(xmlNode *node, bool clean) { } } } + +void process_file(const string &input_filename, + const string &output_filename, + Directive *root_directive) +{ + LIBXML_TEST_VERSION + + xmlDocPtr doc = xmlParseFile(input_filename.c_str()); + root_directive->process(xmlDocGetRootElement(doc), true); + xmlSaveFile(output_filename.c_str(), doc); + + xmlCleanupParser(); + xmlMemoryDump(); +}