/bundles/plugins-trunk/XML/xml/dtds/any.rng

# · Unknown · 28 lines · 24 code · 4 blank · 0 comment · 0 complexity · 359e00a4ca1a63057370789a22297bcb MD5 · raw file

  1. <?xml version="1.0" ?>
  2. <!-- this grammar will validate any well formed XML document.
  3. $Id: any.rng 16641 2009-12-14 21:08:21Z kerik-sf $
  4. -->
  5. <grammar xmlns="http://relaxng.org/ns/structure/1.0">
  6. <define name="any">
  7. <zeroOrMore>
  8. <choice>
  9. <attribute>
  10. <anyName/>
  11. <text/>
  12. </attribute>
  13. <element>
  14. <anyName/>
  15. <ref name="any"/>
  16. </element>
  17. <text/>
  18. </choice>
  19. </zeroOrMore>
  20. </define>
  21. <start>
  22. <ref name="any"/>
  23. </start>
  24. </grammar>