mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
02b252d7a2
commit
2fab235d10
@ -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
0
result/relaxng/565219_0
Normal file
2
result/relaxng/565219_0.err
Normal file
2
result/relaxng/565219_0.err
Normal 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
0
result/relaxng/565219_1
Normal file
1
result/relaxng/565219_1.err
Normal file
1
result/relaxng/565219_1.err
Normal file
@ -0,0 +1 @@
|
||||
./test/relaxng/565219_1.xml validates
|
0
result/relaxng/565219_2
Normal file
0
result/relaxng/565219_2
Normal file
2
result/relaxng/565219_2.err
Normal file
2
result/relaxng/565219_2.err
Normal 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
|
1
result/relaxng/565219_err
Normal file
1
result/relaxng/565219_err
Normal file
@ -0,0 +1 @@
|
||||
./test/relaxng/565219.rng validates
|
0
result/relaxng/565219_valid
Normal file
0
result/relaxng/565219_valid
Normal file
14
test/relaxng/565219.rng
Normal file
14
test/relaxng/565219.rng
Normal 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>
|
||||
|
1
test/relaxng/565219_0.xml
Normal file
1
test/relaxng/565219_0.xml
Normal file
@ -0,0 +1 @@
|
||||
<foo xmlns="http://foo.com/"/>
|
1
test/relaxng/565219_1.xml
Normal file
1
test/relaxng/565219_1.xml
Normal file
@ -0,0 +1 @@
|
||||
<foo/>
|
1
test/relaxng/565219_2.xml
Normal file
1
test/relaxng/565219_2.xml
Normal file
@ -0,0 +1 @@
|
||||
<foo xmlns="http://foo.com/"/>
|
Loading…
x
Reference in New Issue
Block a user