diff schemas/system.xsd @ 3:2f52da2e7605

Directory and project updates. VS2008 does not like app.config so I had to remove references of that from the solution from other projects.
author Tsudico
date Wed, 08 Dec 2010 18:44:10 -0600
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/schemas/system.xsd	Wed Dec 08 18:44:10 2010 -0600
@@ -0,0 +1,55 @@
+<?xml version="1.0"?>
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:core="http://ibboard.co.uk/warfoundry/core" xmlns:cats="http://ibboard.co.uk/warfoundry/cats"
+targetNamespace="http://ibboard.co.uk/warfoundry/system" xmlns="http://ibboard.co.uk/warfoundry/system" xmlns:sys="http://ibboard.co.uk/warfoundry/system" elementFormDefault="qualified">
+<xs:element name="system">
+	<xs:complexType>
+		<xs:sequence>
+			<xs:element name="categories" type="cats:categoriestype">
+				<xs:key name="catsKey">
+					<xs:selector xpath="cats:cat"/>
+					<xs:field xpath="@id"/>
+				</xs:key>
+			</xs:element>
+			<xs:element name="sysStatsList">
+				<xs:complexType>
+					<xs:sequence>
+						<xs:element name="sysStats" maxOccurs="unbounded">
+							<xs:complexType>
+								<xs:sequence>
+									<xs:element name="sysStat" maxOccurs="unbounded">
+										<xs:complexType>
+											<xs:sequence>
+												<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
+											</xs:sequence>
+											<xs:attribute name="name" type="xs:string" use="required"/>
+											<xs:anyAttribute processContents="lax"/>
+										</xs:complexType>
+									</xs:element>
+								</xs:sequence>
+								<xs:attribute name="id" type="xs:string" />
+								<xs:anyAttribute processContents="lax"/>
+							</xs:complexType>
+						</xs:element>
+					</xs:sequence>
+					<xs:attribute name="defaultStats" type="xs:string" use="required" />
+					<xs:anyAttribute processContents="lax"/>
+				</xs:complexType>
+			</xs:element>
+			<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
+		</xs:sequence>
+		<xs:attribute name="id" type="xs:string" />
+		<xs:attribute name="name" type="xs:string" use="required"/>
+		<xs:attribute name="warn" type="xs:boolean" default="false"/>
+		<xs:attribute name="allowAllies" type="xs:boolean" default="true"/>
+		<xs:anyAttribute processContents="lax"/>
+	</xs:complexType>
+	<xs:keyref name="defaultStatsRef" refer="statsKey">
+		<xs:selector xpath="sys:sysStatsList"/>
+		<xs:field xpath="@defaultStats"/>
+	</xs:keyref>
+	<xs:key name="statsKey">
+		<xs:selector xpath="sys:sysStatsList/sys:sysStats"/>
+		<xs:field xpath="@id"/>
+	</xs:key>
+</xs:element>
+</xs:schema>
\ No newline at end of file