mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-28 00:21:53 +03:00
- release 1.8.2 - HTML handling improvement - new tree handling functions
- release 1.8.2 - HTML handling improvement - new tree handling functions - default namespace on attribute bug fixed - libxml use for C++ fixed (for good this time !) Daniel
This commit is contained in:
@ -35,7 +35,11 @@ void xmlDebugDumpNamespace(FILE *output, xmlNsPtr ns, int depth) {
|
||||
fprintf(output, shift);
|
||||
if (ns->type == XML_GLOBAL_NAMESPACE)
|
||||
fprintf(output, "old ");
|
||||
fprintf(output, "namespace %s href=", ns->prefix);
|
||||
if (ns->prefix != NULL)
|
||||
fprintf(output, "namespace %s href=", ns->prefix);
|
||||
else
|
||||
fprintf(output, "default namespace href=", ns->prefix);
|
||||
|
||||
xmlDebugDumpString(output, ns->href);
|
||||
fprintf(output, "\n");
|
||||
}
|
||||
|
Reference in New Issue
Block a user