PageRenderTime 25ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Unknown | 28 lines | 24 code | 4 blank | 0 comment | 0 complexity | 359e00a4ca1a63057370789a22297bcb MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  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>