1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-26 10:03:34 +03:00
libxml2/test/relaxng/interleave0_0.rng
Daniel Veillard 231d791fc4 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
2003-02-09 14:22:17 +00:00

25 lines
495 B
Plaintext

<element name="addressBook" xmlns="http://relaxng.org/ns/structure/1.0">
<zeroOrMore>
<element name="card">
<interleave>
<zeroOrMore>
<element name="name">
<text/>
</element>
<element name="email">
<text/>
</element>
</zeroOrMore>
<zeroOrMore>
<element name="company">
<text/>
</element>
<element name="email">
<text/>
</element>
</zeroOrMore>
</interleave>
</element>
</zeroOrMore>
</element>