0
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
2 |
<xs:schema
|
|
3 |
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
4 |
targetNamespace="http://www.s60.com/xml/content/1"
|
|
5 |
xmlns:content="http://www.s60.com/xml/content/1"
|
|
6 |
elementFormDefault="qualified">
|
|
7 |
|
|
8 |
<xs:complexType name="tagType">
|
|
9 |
<xs:attribute name="name" type="xs:string"/>
|
|
10 |
<xs:attribute name="value" type="xs:string"/>
|
|
11 |
</xs:complexType>
|
|
12 |
|
|
13 |
<xs:complexType name="includeType">
|
|
14 |
<xs:attribute name="files" type="xs:string"/>
|
|
15 |
<xs:attribute name="dir" type="xs:string"/>
|
|
16 |
<xs:attribute name="pattern" type="xs:string"/>
|
|
17 |
</xs:complexType>
|
|
18 |
|
|
19 |
|
|
20 |
<xs:complexType name="outputType">
|
|
21 |
<xs:attribute name="dir" type="xs:string"/>
|
|
22 |
<xs:attribute name="flatten" type="xs:string"/>
|
|
23 |
</xs:complexType>
|
|
24 |
|
|
25 |
<xs:complexType name="excludeType">
|
|
26 |
<xs:attribute name="files" type="xs:string"/>
|
|
27 |
<xs:attribute name="dir" type="xs:string"/>
|
|
28 |
<xs:attribute name="pattern" type="xs:string"/>
|
|
29 |
</xs:complexType>
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
<xs:complexType name="inputType">
|
|
34 |
<xs:sequence>
|
|
35 |
<xs:element name="include" type="content:includeType"
|
|
36 |
minOccurs="0" maxOccurs="unbounded" />
|
|
37 |
<xs:element name="exclude" type="content:excludeType"
|
|
38 |
minOccurs="0" maxOccurs="unbounded" />
|
|
39 |
</xs:sequence>
|
|
40 |
<xs:attribute name="file" type="xs:string"></xs:attribute>
|
|
41 |
</xs:complexType>
|
|
42 |
|
|
43 |
|
|
44 |
<xs:complexType name="contentRootType">
|
|
45 |
<xs:sequence>
|
|
46 |
<xs:element name="desc" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
|
|
47 |
<xs:element name="tag" type="content:tagType" minOccurs="0" maxOccurs="unbounded"/>
|
|
48 |
<xs:element name="output" type="content:outputType" minOccurs="0" maxOccurs="unbounded"/>
|
|
49 |
<xs:element name="input" type="content:inputType" minOccurs="0" maxOccurs="unbounded"/>
|
|
50 |
</xs:sequence>
|
|
51 |
</xs:complexType>
|
|
52 |
|
|
53 |
<xs:element name="content" type="content:contentRootType"/>
|
|
54 |
|
|
55 |
</xs:schema> |