summaryrefslogtreecommitdiffstats
path: root/doc/xsd/xml.xsd
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2013-05-03 22:12:43 (GMT)
committerDirk Baechle <dl9obn@darc.de>2013-05-03 22:12:43 (GMT)
commite70f1133e2725460290ec719351a33dd28c1df3e (patch)
treeb37d71196a6afd7eeb3271c651e86bf3d810dbcd /doc/xsd/xml.xsd
parent9e7cf970a730549348fd22a0921ea0ed2e894a69 (diff)
downloadSCons-e70f1133e2725460290ec719351a33dd28c1df3e.zip
SCons-e70f1133e2725460290ec719351a33dd28c1df3e.tar.gz
SCons-e70f1133e2725460290ec719351a33dd28c1df3e.tar.bz2
- added first version of the SCons XSD
- rewrote User Guide XML files, such that they are valid against it
Diffstat (limited to 'doc/xsd/xml.xsd')
-rw-r--r--doc/xsd/xml.xsd15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/xsd/xml.xsd b/doc/xsd/xml.xsd
new file mode 100644
index 0000000..600f399
--- /dev/null
+++ b/doc/xsd/xml.xsd
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified"
+ targetNamespace="http://www.w3.org/XML/1998/namespace">
+ <xs:import schemaLocation="scons.xsd"/>
+ <xs:attribute name="base"/>
+ <xs:attribute name="space">
+ <xs:simpleType>
+ <xs:restriction base="xs:token">
+ <xs:enumeration value="preserve"/>
+ </xs:restriction>
+ </xs:simpleType>
+ </xs:attribute>
+ <xs:attribute name="lang" type="xs:NMTOKEN"/>
+</xs:schema>