configurationengine/source/plugins/symbian/ConeCRMLPlugin/CRMLPlugin/xsd/crml.xsd
changeset 3 e7e0ae78773e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/configurationengine/source/plugins/symbian/ConeCRMLPlugin/CRMLPlugin/xsd/crml.xsd	Tue Aug 10 14:29:28 2010 +0300
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.s60.com/xml/cenrep/1" xmlns:cenrep="http://www.s60.com/xml/cenrep/1">
+  <xs:element name="repository">
+    <xs:complexType>
+            <xs:choice minOccurs="0" maxOccurs="unbounded">
+        <xs:element minOccurs="0" maxOccurs="2" ref="cenrep:access" />
+      	<xs:element minOccurs="0" maxOccurs="1" ref="cenrep:desc" />
+      	<xs:element minOccurs="0" maxOccurs="unbounded" ref="cenrep:key" />
+      	<xs:element minOccurs="0" maxOccurs="unbounded" ref="cenrep:keyRange" />
+      </xs:choice>
+      <xs:attribute name="backup" type="xs:boolean"/>
+      <xs:attribute name="rfs" type="xs:boolean"/>
+      <xs:attribute name="initialialisationFileVersion" type="xs:integer"/>
+      <xs:attribute name="owner" type="cenrep:hexOrDecimalNumberType"/>
+      <xs:attribute name="uidName" type="xs:string"/>
+      <xs:attribute name="uidValue" type="cenrep:hexOrDecimalNumberType"/>
+      <xs:attribute name="version" type="xs:decimal" use="optional"/>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="desc" type="xs:string"/>
+  <xs:element name="key">
+    <xs:complexType>
+            <xs:choice minOccurs="0" maxOccurs="unbounded">
+            	<xs:element minOccurs="0" maxOccurs="2"
+            		ref="cenrep:access" />
+            	<xs:element minOccurs="0" maxOccurs="unbounded"
+            		ref="cenrep:value" />
+            	<xs:element minOccurs="0" maxOccurs="unbounded"
+            		ref="cenrep:bit" />
+            	<xs:element ref="cenrep:desc" minOccurs="0" maxOccurs="1"></xs:element>
+            </xs:choice>
+            
+      <xs:attribute name="backup" type="xs:boolean"/>
+      <xs:attribute name="int" type="cenrep:hexOrDecimalNumberType"/>
+      <xs:attribute name="name" type="xs:string"/>
+      <xs:attribute name="readOnly" type="xs:boolean"/>
+      <xs:attribute name="ref" type="xs:string"/>
+      <xs:attribute name="type" type="cenrep:typeType"/>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="value">
+    <xs:complexType mixed="true">
+      <xs:attribute name="desc" />
+      <xs:attribute name="value" type="xs:string"/>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="bit">
+    <xs:complexType>
+      <xs:simpleContent>
+        <xs:extension base="xs:integer">
+          <xs:attribute name="ref" type="xs:string"/>
+          <xs:attribute name="value" type="xs:boolean"/>
+        </xs:extension>
+      </xs:simpleContent>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="keyRange">
+    <xs:complexType>
+      <xs:choice minOccurs="0" maxOccurs="unbounded">
+      	<xs:element ref="cenrep:desc"/>
+        <xs:element ref="cenrep:access"/>
+        <xs:element ref="cenrep:key"/>
+      </xs:choice>
+      <xs:attribute name="backup" type="xs:boolean"/>
+      <xs:attribute name="countInt" type="cenrep:hexOrDecimalNumberType"/>
+      <xs:attribute name="firstIndex" type="xs:int"/>
+      <xs:attribute name="firstInt" type="xs:string"/>
+      <xs:attribute name="indexBits" type="xs:string"/>
+      <xs:attribute name="int" type="xs:int"/>
+      <xs:attribute name="lastInt" type="xs:string"/>
+      <xs:attribute name="name" type="xs:string"/>
+      <xs:attribute name="ref" type="xs:string"/>
+      <xs:attribute name="readOnly" type="xs:boolean"/>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="access">
+    <xs:complexType>
+    	<xs:choice>
+    		<xs:element ref="cenrep:desc" minOccurs="0" maxOccurs="1"></xs:element>
+    	</xs:choice>
+    	<xs:attribute name="capabilities" type="xs:string" />
+    	<xs:attribute name="sid" type="xs:string" />
+    	<xs:attribute name="type" type="xs:NMTOKEN" />
+    </xs:complexType>
+  </xs:element>
+  <xs:simpleType name="typeType">
+		<xs:restriction base="xs:string">
+			<xs:enumeration id="int" value="int"></xs:enumeration>
+			<xs:enumeration value="binary"></xs:enumeration>
+			<xs:enumeration value="real"></xs:enumeration>
+			<xs:enumeration value="string"></xs:enumeration>
+			<xs:enumeration value="string8"></xs:enumeration>
+		</xs:restriction>
+	</xs:simpleType>
+    
+    <xs:simpleType name="hexOrDecimalNumberType">
+        <xs:union>
+            <xs:simpleType>
+                <xs:restriction base="xs:nonNegativeInteger"/>
+            </xs:simpleType>
+            <xs:simpleType>
+                <xs:restriction base="xs:string">
+                    <xs:pattern value="0x[0-9a-fA-F]{1,8}"/>
+                </xs:restriction>
+            </xs:simpleType>
+        </xs:union>
+    </xs:simpleType>
+
+</xs:schema>