mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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
This commit is contained in:
parent
463a5479a8
commit
7b72ee5cfc
@ -1,3 +1,9 @@
|
|||||||
|
Fri Feb 28 00:23:00 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* 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 <daniel@veillard.com>
|
Thu Feb 27 22:28:40 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* check-xsddata-test-suite.py: give more infos
|
* check-xsddata-test-suite.py: give more infos
|
||||||
|
@ -21,10 +21,11 @@
|
|||||||
<datatype name="anyURI">
|
<datatype name="anyURI">
|
||||||
<valid>foobar</valid>
|
<valid>foobar</valid>
|
||||||
<valid>http://www.example.com</valid>
|
<valid>http://www.example.com</valid>
|
||||||
<valid>http://www.example.co%6d</valid>
|
<valid>http://ji%6d@www.example.com</valid>
|
||||||
<valid>nosuchscheme:stuff</valid>
|
<valid>nosuchscheme:stuff</valid>
|
||||||
<invalid>foo$bar:stuff</invalid>
|
<invalid>foo$bar:stuff</invalid>
|
||||||
<invalid>f%oobar</invalid>
|
<invalid>f%oobar</invalid>
|
||||||
|
<invalid>http://www.example.co%6d</invalid>
|
||||||
</datatype>
|
</datatype>
|
||||||
<datatype name="integer">
|
<datatype name="integer">
|
||||||
<valid>10</valid>
|
<valid>10</valid>
|
||||||
|
@ -12,6 +12,8 @@
|
|||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
<xsl:template match="datatype">
|
<xsl:template match="datatype">
|
||||||
|
<testSuite>
|
||||||
|
<documentation>Datatype <xsl:value-of select="@name"/></documentation>
|
||||||
<testCase>
|
<testCase>
|
||||||
<requires datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"/>
|
<requires datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"/>
|
||||||
<correct>
|
<correct>
|
||||||
@ -27,6 +29,7 @@
|
|||||||
<xsl:apply-templates select="valid|invalid"/>
|
<xsl:apply-templates select="valid|invalid"/>
|
||||||
</testCase>
|
</testCase>
|
||||||
<xsl:apply-templates select="equiv/class|length|lessThan|incomparable"/>
|
<xsl:apply-templates select="equiv/class|length|lessThan|incomparable"/>
|
||||||
|
</testSuite>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
<xsl:template match="valid">
|
<xsl:template match="valid">
|
||||||
|
4
tree.c
4
tree.c
@ -6993,6 +6993,10 @@ xmlNodeDumpOutputInternal(xmlOutputBufferPtr buf, xmlDocPtr doc,
|
|||||||
xmlOutputBufferWriteString(buf, "]]>");
|
xmlOutputBufferWriteString(buf, "]]>");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (cur->type == XML_ATTRIBUTE_NODE) {
|
||||||
|
xmlAttrDumpOutput(buf,doc,cur,encoding);
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (cur->type == XML_NAMESPACE_DECL) {
|
if (cur->type == XML_NAMESPACE_DECL) {
|
||||||
xmlNsDumpOutput(buf, (xmlNsPtr) cur);
|
xmlNsDumpOutput(buf, (xmlNsPtr) cur);
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user