|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: RELAX NG equivalent of <xsd:any processContents="lax">?
Thanks for your help. I'm thankful for what functionality there is in
RELAX NG, trust me.
Just for kicks I tried self-referencing back to the schema, but
recursion is not allowed (ah well).
Test.rng:
<?xml version="1.0"?>
<grammar
xmlns="http://relaxng.org/ns/structure/1.0"
ns="http://foo.org/bar">
<start>
<ref name="children"></ref>
</start>
<define name="children">
<zeroOrMore>
<element>
<anyName>
<except>
<nsName/>
</except>
</anyName>
<ref name="children"></ref>
</element>
</zeroOrMore>
<optional>
<ref name="interestingElements"></ref>
</optional>
</define>
<define name="interestingElements">
<choice>
<externalRef href="Test.rng"/>
</choice>
</define>
</grammar>
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] |
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||






