From 05dd36f104334a09d8eaea594752d49bb68418a8 Mon Sep 17 00:00:00 2001 From: "sgunderson@bigfoot.com" <> Date: Wed, 21 Sep 2011 21:54:12 +0200 Subject: [PATCH] Implement t:id cleaning in C++0x. simple passes! --- c++0x/xml-template.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/c++0x/xml-template.cpp b/c++0x/xml-template.cpp index 3be1407..f2d2d6b 100644 --- a/c++0x/xml-template.cpp +++ b/c++0x/xml-template.cpp @@ -26,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; + } + } } } @@ -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(); -- 2.39.2