mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Implement choice for name classes on attributes
https://bugzilla.gnome.org/show_bug.cgi?id=710744
This commit is contained in:
parent
f3f86ff465
commit
6473a41a49
13
relaxng.c
13
relaxng.c
@ -9047,6 +9047,19 @@ xmlRelaxNGAttributeMatch(xmlRelaxNGValidCtxtPtr ctxt,
|
||||
return (ret);
|
||||
list = list->next;
|
||||
}
|
||||
} else if (define->type == XML_RELAXNG_CHOICE) {
|
||||
xmlRelaxNGDefinePtr list;
|
||||
|
||||
list = define->nameClass;
|
||||
while (list != NULL) {
|
||||
ret = xmlRelaxNGAttributeMatch(ctxt, list, prop);
|
||||
if (ret == 1)
|
||||
return (1);
|
||||
if (ret < 0)
|
||||
return (ret);
|
||||
list = list->next;
|
||||
}
|
||||
return (0);
|
||||
} else {
|
||||
TODO}
|
||||
return (1);
|
||||
|
0
result/relaxng/710744_1
Normal file
0
result/relaxng/710744_1
Normal file
1
result/relaxng/710744_1.err
Normal file
1
result/relaxng/710744_1.err
Normal file
@ -0,0 +1 @@
|
||||
./test/relaxng/710744_1.xml validates
|
0
result/relaxng/710744_2
Normal file
0
result/relaxng/710744_2
Normal file
2
result/relaxng/710744_2.err
Normal file
2
result/relaxng/710744_2.err
Normal file
@ -0,0 +1,2 @@
|
||||
./test/relaxng/710744_2.xml:3: element test: Relax-NG validity error : Invalid attribute foo for element test
|
||||
./test/relaxng/710744_2.xml fails to validate
|
16
test/relaxng/710744.rng
Normal file
16
test/relaxng/710744.rng
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0"?>
|
||||
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
|
||||
<start>
|
||||
<element name="test" ns="http://example.com/1/">
|
||||
<zeroOrMore>
|
||||
<attribute>
|
||||
<choice>
|
||||
<nsName ns="http://example.com/1/"/>
|
||||
<nsName ns="http://example.com/2/"/>
|
||||
</choice>
|
||||
<text/>
|
||||
</attribute>
|
||||
</zeroOrMore>
|
||||
</element>
|
||||
</start>
|
||||
</grammar>
|
2
test/relaxng/710744_1.xml
Normal file
2
test/relaxng/710744_1.xml
Normal file
@ -0,0 +1,2 @@
|
||||
<ex1:test xmlns:ex1="http://example.com/1/"
|
||||
ex1:foo="bar"/>
|
3
test/relaxng/710744_2.xml
Normal file
3
test/relaxng/710744_2.xml
Normal file
@ -0,0 +1,3 @@
|
||||
<ex1:test xmlns:ex1="http://example.com/1/"
|
||||
xmlns:ex3="http://example.com/3/"
|
||||
ex3:foo="bar"/>
|
Loading…
x
Reference in New Issue
Block a user