applied patch from Alexander Pohoyda fixing xmlGetNodePath on namespaced

* tree.c: applied patch from Alexander Pohoyda fixing xmlGetNodePath
  on namespaced attributes #310417.
Daniel
This commit is contained in:
Daniel Veillard 2005-07-19 11:31:55 +00:00
parent dd9b64abc2
commit 365c806eb5
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Tue Jul 19 12:33:31 CEST 2005 Daniel Veillard <daniel@veillard.com>
* tree.c: applied patch from Alexander Pohoyda fixing xmlGetNodePath
on namespaced attributes #310417.
Mon Jul 18 23:01:15 CEST 2005 Daniel Veillard <daniel@veillard.com>
* doc/xmllint.1 doc/xmllint.html doc/xmllint.xml: --nonet was

10
tree.c
View File

@ -4332,6 +4332,16 @@ xmlGetNodePath(xmlNodePtr node)
} else if (cur->type == XML_ATTRIBUTE_NODE) {
sep = "/@";
name = (const char *) (((xmlAttrPtr) cur)->name);
if (cur->ns) {
if (cur->ns->prefix != NULL)
snprintf(nametemp, sizeof(nametemp) - 1, "%s:%s",
(char *)cur->ns->prefix, (char *)cur->name);
else
snprintf(nametemp, sizeof(nametemp) - 1, "%s",
(char *)cur->name);
nametemp[sizeof(nametemp) - 1] = 0;
name = nametemp;
}
next = ((xmlAttrPtr) cur)->parent;
} else {
next = cur->parent;