]> git.sesse.net Git - xml-template/commitdiff
Implement t:id cleaning in C++0x. simple passes!
authorsgunderson@bigfoot.com <>
Wed, 21 Sep 2011 19:54:12 +0000 (21:54 +0200)
committersgunderson@bigfoot.com <>
Wed, 21 Sep 2011 19:54:12 +0000 (21:54 +0200)
c++0x/xml-template.cpp

index 3be1407b3b5592d93b6768859135a90dfc26481f..f2d2d6b7926dc5c58b1b94fd1b8f6baff261cd9f 100644 (file)
@@ -26,6 +26,14 @@ void Substitute::process(xmlNode *node, bool clean) {
                                if (strcmp(reinterpret_cast<const char *>(attr->ns->href), "http://template.sesse.net/") == 0 &&
                                    strcmp(reinterpret_cast<const char *>(attr->name), "id") == 0) {
                                        id = reinterpret_cast<const char *>(xmlNodeGetContent(attr->children));
+
+                                       if (clean) {
+                                               if (attr->prev == NULL) {
+                                                       child->properties = attr->next;
+                                               } else {
+                                                       attr->prev->next = attr->next;
+                                               }
+                                       }
                                }
                        }
 
@@ -53,7 +61,7 @@ void process_file(const string &input_filename,
        LIBXML_TEST_VERSION
 
        xmlDocPtr doc = xmlParseFile(input_filename.c_str());
-       root_directive->process(xmlDocGetRootElement(doc), false);
+       root_directive->process(xmlDocGetRootElement(doc), true);
        xmlSaveFile(output_filename.c_str(), doc);
 
        xmlCleanupParser();