mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
applied the patch provided by Brent Hendricks fixing #105992 and
* SAX.c test/valid/ns* test/result/ns*: applied the patch provided by Brent Hendricks fixing #105992 and integrated the examples in the testsuite. Daniel
This commit is contained in:
parent
c4f65abe30
commit
f431eb8144
@ -1,3 +1,9 @@
|
||||
Tue Apr 22 10:35:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* SAX.c test/valid/ns* test/result/ns*: applied the patch
|
||||
provided by Brent Hendricks fixing #105992 and integrated the
|
||||
examples in the testsuite.
|
||||
|
||||
Tue Apr 22 01:06:09 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* TODO: updated a bit
|
||||
|
5
SAX.c
5
SAX.c
@ -958,7 +958,7 @@ my_attribute(void *ctx, const xmlChar *fullname, const xmlChar *value,
|
||||
if (nsret != NULL && ctxt->validate && ctxt->wellFormed &&
|
||||
ctxt->myDoc && ctxt->myDoc->intSubset)
|
||||
ctxt->valid &= xmlValidateOneNamespace(&ctxt->vctxt, ctxt->myDoc,
|
||||
ctxt->node, name, nsret, value);
|
||||
ctxt->node, prefix, nsret, value);
|
||||
if (name != NULL)
|
||||
xmlFree(name);
|
||||
if (nval != NULL)
|
||||
@ -1226,7 +1226,8 @@ process_external_subset:
|
||||
}
|
||||
}
|
||||
if (att == NULL) {
|
||||
attribute(ctxt, fulln, attr->defaultValue);
|
||||
my_attribute(ctxt, fulln, attr->defaultValue,
|
||||
prefix);
|
||||
}
|
||||
xmlFree(fulln);
|
||||
}
|
||||
|
7
result/valid/ns.xml
Normal file
7
result/valid/ns.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE a:outer [
|
||||
<!ELEMENT a:outer EMPTY>
|
||||
<!ATTLIST a:outer xmlns:a CDATA #FIXED "urn:namespace">
|
||||
<!ATTLIST a:outer xmlns:b CDATA #FIXED "urn:namespaceb">
|
||||
]>
|
||||
<a:outer xmlns:b="urn:namespaceb" xmlns:a="urn:namespace"/>
|
0
result/valid/ns.xml.err
Normal file
0
result/valid/ns.xml.err
Normal file
11
result/valid/ns2.xml
Normal file
11
result/valid/ns2.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE a:outer [
|
||||
<!ELEMENT a:outer (a:inner)>
|
||||
<!ATTLIST a:outer xmlns:a CDATA #FIXED "urn:namespace">
|
||||
<!ELEMENT a:inner EMPTY>
|
||||
<!ATTLIST a:inner xmlns:a CDATA #FIXED "urn:namespace">
|
||||
<!ATTLIST a:inner attr CDATA #FIXED "yes">
|
||||
]>
|
||||
<a:outer xmlns:a="urn:namespace">
|
||||
<a:inner xmlns:a="urn:namespace"/>
|
||||
</a:outer>
|
0
result/valid/ns2.xml.err
Normal file
0
result/valid/ns2.xml.err
Normal file
9
test/valid/ns.xml
Normal file
9
test/valid/ns.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE a:outer [
|
||||
|
||||
<!ELEMENT a:outer EMPTY>
|
||||
<!ATTLIST a:outer xmlns:a CDATA #FIXED 'urn:namespace'>
|
||||
<!ATTLIST a:outer xmlns:b CDATA #FIXED 'urn:namespaceb'>
|
||||
]>
|
||||
|
||||
<a:outer />
|
14
test/valid/ns2.xml
Normal file
14
test/valid/ns2.xml
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE a:outer [
|
||||
|
||||
<!ELEMENT a:outer (a:inner)>
|
||||
<!ATTLIST a:outer xmlns:a CDATA #FIXED 'urn:namespace'>
|
||||
|
||||
<!ELEMENT a:inner EMPTY>
|
||||
<!ATTLIST a:inner xmlns:a CDATA #FIXED 'urn:namespace'>
|
||||
<!ATTLIST a:inner attr CDATA #FIXED 'yes'>
|
||||
]>
|
||||
|
||||
<a:outer xmlns:a="urn:namespace">
|
||||
<a:inner />
|
||||
</a:outer>
|
Loading…
x
Reference in New Issue
Block a user