Fix support for except in nameclasses

For https://bugzilla.gnome.org/show_bug.cgi?id=565219

The code was imply missing even if simple, added a few regression
tests.
This commit is contained in:
Daniel Veillard 2015-03-16 08:38:36 +08:00
parent 02b252d7a2
commit 2fab235d10
13 changed files with 28 additions and 1 deletions

View File

@ -3819,7 +3819,11 @@ xmlRelaxNGCompareNameClasses(xmlRelaxNGDefinePtr def1,
return (0);
return (1);
} else if (def1->type == XML_RELAXNG_EXCEPT) {
TODO ret = 0;
ret = xmlRelaxNGCompareNameClasses(def1->content, def2);
if (ret == 0)
ret = 1;
else if (ret == 1)
ret = 0;
} else {
TODO ret = 0;
}

0
result/relaxng/565219_0 Normal file
View File

View File

@ -0,0 +1,2 @@
./test/relaxng/565219_0.xml:1: element foo: Relax-NG validity error : Element foo has wrong namespace: expecting http://bar.com/
./test/relaxng/565219_0.xml fails to validate

0
result/relaxng/565219_1 Normal file
View File

View File

@ -0,0 +1 @@
./test/relaxng/565219_1.xml validates

0
result/relaxng/565219_2 Normal file
View File

View File

@ -0,0 +1,2 @@
./test/relaxng/565219_2.xml:1: element foo: Relax-NG validity error : Element foo has wrong namespace: expecting http://bar.com/
./test/relaxng/565219_2.xml fails to validate

View File

@ -0,0 +1 @@
./test/relaxng/565219.rng validates

View File

14
test/relaxng/565219.rng Normal file
View File

@ -0,0 +1,14 @@
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
<start>
<element>
<anyName>
<except>
<nsName ns="http://bar.com/"/>
<nsName ns="http://foo.com/"/>
</except>
</anyName>
<empty/>
</element>
</start>
</grammar>

View File

@ -0,0 +1 @@
<foo xmlns="http://foo.com/"/>

View File

@ -0,0 +1 @@
<foo/>

View File

@ -0,0 +1 @@
<foo xmlns="http://foo.com/"/>