Implement choice for name classes on attributes

https://bugzilla.gnome.org/show_bug.cgi?id=710744
This commit is contained in:
Shaun McCance 2013-10-23 14:51:33 -04:00 committed by Daniel Veillard
parent f3f86ff465
commit 6473a41a49
8 changed files with 37 additions and 0 deletions

View File

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

View File

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

0
result/relaxng/710744_2 Normal file
View File

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

View File

@ -0,0 +1,2 @@
<ex1:test xmlns:ex1="http://example.com/1/"
ex1:foo="bar"/>

View File

@ -0,0 +1,3 @@
<ex1:test xmlns:ex1="http://example.com/1/"
xmlns:ex3="http://example.com/3/"
ex3:foo="bar"/>