Tag
Hash :
231d791f
Author :
Date :
2003-02-09T14:22:17
fixes a libtool problem on AMD 64bits builds found the validation problem * libxml.spec.in: fixes a libtool problem on AMD 64bits builds * relaxng.c: found the validation problem I had with interleave when not covering all remaining siblings * Makefile.am test.relaxng/* result/relaxng/*: augmented the testsuite and check the RNG schemas against the RNG schemas given in appendix A Daniel
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
<element name="html" xmlns="http://relaxng.org/ns/structure/1.0">
<element name="head">
<element name="title">
<text/>
</element>
</element>
<element name="body">
<element name="table">
<attribute name="class">
<value>addressBook</value>
</attribute>
<oneOrMore>
<element name="tr">
<attribute name="class">
<value>card</value>
</attribute>
<element name="td">
<attribute name="class">
<value>name</value>
</attribute>
<interleave>
<text/>
<optional>
<element name="span">
<attribute name="class">
<value>givenName</value>
</attribute>
<text/>
</element>
</optional>
<optional>
<element name="span">
<attribute name="class">
<value>familyName</value>
</attribute>
<text/>
</element>
</optional>
</interleave>
</element>
<element name="td">
<attribute name="class">
<value>email</value>
</attribute>
<text/>
</element>
</element>
</oneOrMore>
</element>
</element>
</element>