a97111aaa55e32353d714b2f56f5df74122ee813
[yaffs-website] / vendor / symfony / routing / Loader / schema / routing / routing-1.0.xsd
1 <?xml version="1.0" encoding="UTF-8" ?>
2
3 <xsd:schema xmlns="http://symfony.com/schema/routing"
4     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
5     targetNamespace="http://symfony.com/schema/routing"
6     elementFormDefault="qualified">
7
8   <xsd:annotation>
9     <xsd:documentation><![CDATA[
10       Symfony XML Routing Schema, version 1.0
11       Authors: Fabien Potencier, Tobias Schultze
12
13       This scheme defines the elements and attributes that can be used to define
14       routes. A route maps an HTTP request to a set of configuration variables.
15     ]]></xsd:documentation>
16   </xsd:annotation>
17
18   <xsd:element name="routes" type="routes" />
19
20   <xsd:complexType name="routes">
21     <xsd:choice minOccurs="0" maxOccurs="unbounded">
22       <xsd:element name="import" type="import" />
23       <xsd:element name="route" type="route" />
24     </xsd:choice>
25   </xsd:complexType>
26
27   <xsd:group name="configs">
28     <xsd:choice>
29       <xsd:element name="default" nillable="true" type="default" />
30       <xsd:element name="requirement" type="element" />
31       <xsd:element name="option" type="element" />
32       <xsd:element name="condition" type="xsd:string" />
33     </xsd:choice>
34   </xsd:group>
35
36   <xsd:complexType name="route">
37     <xsd:group ref="configs" minOccurs="0" maxOccurs="unbounded" />
38
39     <xsd:attribute name="id" type="xsd:string" use="required" />
40     <xsd:attribute name="path" type="xsd:string" use="required" />
41     <xsd:attribute name="host" type="xsd:string" />
42     <xsd:attribute name="schemes" type="xsd:string" />
43     <xsd:attribute name="methods" type="xsd:string" />
44     <xsd:attribute name="controller" type="xsd:string" />
45   </xsd:complexType>
46
47   <xsd:complexType name="import">
48     <xsd:group ref="configs" minOccurs="0" maxOccurs="unbounded" />
49
50     <xsd:attribute name="resource" type="xsd:string" use="required" />
51     <xsd:attribute name="type" type="xsd:string" />
52     <xsd:attribute name="prefix" type="xsd:string" />
53     <xsd:attribute name="host" type="xsd:string" />
54     <xsd:attribute name="schemes" type="xsd:string" />
55     <xsd:attribute name="methods" type="xsd:string" />
56     <xsd:attribute name="controller" type="xsd:string" />
57   </xsd:complexType>
58
59   <xsd:complexType name="default" mixed="true">
60     <xsd:choice minOccurs="0" maxOccurs="1">
61       <xsd:element name="bool" type="xsd:boolean" />
62       <xsd:element name="int" type="xsd:integer" />
63       <xsd:element name="float" type="xsd:float" />
64       <xsd:element name="string" type="xsd:string" />
65       <xsd:element name="list" type="list" />
66       <xsd:element name="map" type="map" />
67     </xsd:choice>
68     <xsd:attribute name="key" type="xsd:string" use="required" />
69   </xsd:complexType>
70
71   <xsd:complexType name="element">
72     <xsd:simpleContent>
73       <xsd:extension base="xsd:string">
74         <xsd:attribute name="key" type="xsd:string" use="required" />
75       </xsd:extension>
76     </xsd:simpleContent>
77   </xsd:complexType>
78
79   <xsd:complexType name="list">
80     <xsd:choice minOccurs="0" maxOccurs="unbounded">
81       <xsd:element name="bool" nillable="true" type="xsd:boolean" />
82       <xsd:element name="int" nillable="true" type="xsd:integer" />
83       <xsd:element name="float" nillable="true" type="xsd:float" />
84       <xsd:element name="string" nillable="true" type="xsd:string" />
85       <xsd:element name="list" nillable="true" type="list" />
86       <xsd:element name="map" nillable="true" type="map" />
87     </xsd:choice>
88   </xsd:complexType>
89
90   <xsd:complexType name="map">
91       <xsd:choice minOccurs="0" maxOccurs="unbounded">
92           <xsd:element name="bool" nillable="true" type="map-bool-entry" />
93           <xsd:element name="int" nillable="true" type="map-int-entry" />
94           <xsd:element name="float" nillable="true" type="map-float-entry" />
95           <xsd:element name="string" nillable="true" type="map-string-entry" />
96           <xsd:element name="list" nillable="true" type="map-list-entry" />
97           <xsd:element name="map" nillable="true" type="map-map-entry" />
98       </xsd:choice>
99   </xsd:complexType>
100
101   <xsd:complexType name="map-bool-entry">
102     <xsd:simpleContent>
103       <xsd:extension base="xsd:boolean">
104         <xsd:attribute name="key" type="xsd:string" use="required" />
105       </xsd:extension>
106     </xsd:simpleContent>
107   </xsd:complexType>
108
109   <xsd:complexType name="map-int-entry">
110     <xsd:simpleContent>
111       <xsd:extension base="xsd:integer">
112         <xsd:attribute name="key" type="xsd:string" use="required" />
113       </xsd:extension>
114     </xsd:simpleContent>
115   </xsd:complexType>
116
117   <xsd:complexType name="map-float-entry">
118     <xsd:simpleContent>
119       <xsd:extension base="xsd:float">
120         <xsd:attribute name="key" type="xsd:string" use="required" />
121       </xsd:extension>
122     </xsd:simpleContent>
123   </xsd:complexType>
124
125   <xsd:complexType name="map-string-entry">
126     <xsd:simpleContent>
127       <xsd:extension base="xsd:string">
128         <xsd:attribute name="key" type="xsd:string" use="required" />
129       </xsd:extension>
130     </xsd:simpleContent>
131   </xsd:complexType>
132
133   <xsd:complexType name="map-list-entry">
134     <xsd:complexContent>
135       <xsd:extension base="list">
136         <xsd:attribute name="key" type="xsd:string" use="required" />
137       </xsd:extension>
138     </xsd:complexContent>
139   </xsd:complexType>
140
141   <xsd:complexType name="map-map-entry">
142     <xsd:complexContent>
143       <xsd:extension base="map">
144         <xsd:attribute name="key" type="xsd:string" use="required" />
145       </xsd:extension>
146     </xsd:complexContent>
147   </xsd:complexType>
148 </xsd:schema>