]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
Removed the RELAX NG samples folder.
authorAron Roberts <aron@socrates.berkeley.edu>
Fri, 27 Feb 2009 23:28:16 +0000 (23:28 +0000)
committerAron Roberts <aron@socrates.berkeley.edu>
Fri, 27 Feb 2009 23:28:16 +0000 (23:28 +0000)
sandbox/aron/schema/samples/patron.rng [deleted file]
sandbox/aron/schema/samples/patron.xml [deleted file]

diff --git a/sandbox/aron/schema/samples/patron.rng b/sandbox/aron/schema/samples/patron.rng
deleted file mode 100644 (file)
index 7054cbf..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-<element name="patron"
-         xmlns="http://relaxng.org/ns/structure/1.0">
-  <!-- From http://www.ibm.com/developerworks/xml/library/x-matters25.html -->
-  <interleave>
-    <element name="name"><text/></element>
-    <element name="id-num"><text/></element>
-    <zeroOrMore>
-      <element name="book">
-        <choice>
-          <attribute name="isbn"/>
-          <attribute name="title"/>
-        </choice>
-      </element>
-    </zeroOrMore>
-  </interleave>
-</element>
diff --git a/sandbox/aron/schema/samples/patron.xml b/sandbox/aron/schema/samples/patron.xml
deleted file mode 100644 (file)
index 9659edd..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-<patron>
-       <!-- From http://www.ibm.com/developerworks/xml/library/x-matters25.html -->
-  <book isbn="0-528-84460-X"/>
-  <name>John Doe</name>
-  <id-num>12345678</id-num>
-  <book title="Why RELAX is Clever"/>
-</patron>