diff options
author | Dirk Baechle <dl9obn@darc.de> | 2013-05-03 22:12:43 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2013-05-03 22:12:43 (GMT) |
commit | e70f1133e2725460290ec719351a33dd28c1df3e (patch) | |
tree | b37d71196a6afd7eeb3271c651e86bf3d810dbcd /doc/xsd/xml.xsd | |
parent | 9e7cf970a730549348fd22a0921ea0ed2e894a69 (diff) | |
download | SCons-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.xsd | 15 |
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> |