Browse Source

2003-04-12 Atsushi Enomoto <[email protected]>

	* added this file along with this new directory.

svn path=/trunk/mcs/; revision=13552
Atsushi Eno 23 years ago
parent
commit
a438ed51eb

+ 3 - 0
mcs/class/System.XML/Test/XmlFiles/ChangeLog

@@ -0,0 +1,3 @@
+2003-04-12  Atsushi Enomoto <[email protected]>
+
+	* added this file along with this new directory.

+ 3 - 0
mcs/class/System.XML/Test/XmlFiles/xsd/ChangeLog

@@ -0,0 +1,3 @@
+2003-04-12  Atsushi Enomoto <[email protected]>
+
+	* added this file along with this new directory.

+ 26 - 0
mcs/class/System.XML/Test/XmlFiles/xsd/xml.xsd

@@ -0,0 +1,26 @@
+<xs:schema
+	xmlns:xs="http://www.w3.org/2001/XMLSchema"
+	targetNamespace="http://www.w3.org/XML/1998/namespace"
+	attributeFormDefault="qualified"
+>
+
+<xs:attribute name="lang" type="xs:language" />
+
+<xs:attribute name="space" default="preserve">
+	<xs:simpleType>
+		<xs:restriction base="xs:NCName">
+			<xs:enumeration value="default" />
+			<xs:enumeration value="preserve" />
+		</xs:restriction>
+	</xs:simpleType>
+</xs:attribute>
+
+<xs:attribute name="base" type="xs:anyURI" />
+
+<xs:attributeGroup name="specialAttrs">
+	<xs:attribute ref="xml:base" />
+	<xs:attribute ref="xml:lang" />
+	<xs:attribute ref="xml:space" />
+</xs:attributeGroup>
+
+<xs:schema>

+ 3 - 0
mcs/class/System.XML/Test/XmlFiles/xsl/ChangeLog

@@ -0,0 +1,3 @@
+2003-04-12  Atsushi Enomoto <[email protected]>
+
+	* added this file along with this new directory.

+ 9 - 0
mcs/class/System.XML/Test/XmlFiles/xsl/empty.xsl

@@ -0,0 +1,9 @@
+<xsl:stylesheet
+	version="1.0"
+	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+<xsl:template match="/">
+  <result/>
+</xsl:template>
+
+</xsl:stylesheet>