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:
Daniel Veillard 2003-04-22 08:37:26 +00:00
parent c4f65abe30
commit f431eb8144
8 changed files with 50 additions and 2 deletions

View File

@ -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
View File

@ -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
View 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
View File

11
result/valid/ns2.xml Normal file
View 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
View File

9
test/valid/ns.xml Normal file
View 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
View 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>