From 7b72ee5cfc00e18fd773db3b9c8edcf4057c564a Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Thu, 27 Feb 2003 23:24:53 +0000 Subject: [PATCH] fixed a node dump crash on attributes fixed an URI test bug and get better * tree.c: fixed a node dump crash on attributes * test/xsdtest/xsdtest.xml test/xsdtest/xsdtest.xsl: fixed an URI test bug and get better output. Daniel --- ChangeLog | 6 ++++++ test/xsdtest/xsdtest.xml | 3 ++- test/xsdtest/xsdtest.xsl | 3 +++ tree.c | 4 ++++ 4 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0fbc0eb2..c52b251c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Feb 28 00:23:00 CET 2003 Daniel Veillard + + * tree.c: fixed a node dump crash on attributes + * test/xsdtest/xsdtest.xml test/xsdtest/xsdtest.xsl: fixed + an URI test bug and get better output. + Thu Feb 27 22:28:40 CET 2003 Daniel Veillard * check-xsddata-test-suite.py: give more infos diff --git a/test/xsdtest/xsdtest.xml b/test/xsdtest/xsdtest.xml index 2fe94b65..45d0be1d 100644 --- a/test/xsdtest/xsdtest.xml +++ b/test/xsdtest/xsdtest.xml @@ -21,10 +21,11 @@ foobar http://www.example.com -http://www.example.co%6d +http://ji%6d@www.example.com nosuchscheme:stuff foo$bar:stuff f%oobar +http://www.example.co%6d 10 diff --git a/test/xsdtest/xsdtest.xsl b/test/xsdtest/xsdtest.xsl index 1290b168..d57adf23 100644 --- a/test/xsdtest/xsdtest.xsl +++ b/test/xsdtest/xsdtest.xsl @@ -12,6 +12,8 @@ + +Datatype @@ -27,6 +29,7 @@ + diff --git a/tree.c b/tree.c index 1a03a5ab..f6b928cc 100644 --- a/tree.c +++ b/tree.c @@ -6993,6 +6993,10 @@ xmlNodeDumpOutputInternal(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlOutputBufferWriteString(buf, "]]>"); return; } + if (cur->type == XML_ATTRIBUTE_NODE) { + xmlAttrDumpOutput(buf,doc,cur,encoding); + return; + } if (cur->type == XML_NAMESPACE_DECL) { xmlNsDumpOutput(buf, (xmlNsPtr) cur); return;