Changeset 104
- Timestamp:
- 02/06/08 12:08:10 (10 months ago)
- Files:
-
- branches/routingservice/configuration.xsd (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/routingservice/configuration.xsd
r67 r104 52 52 </xs:complexType> 53 53 </xs:element> 54 <xs:element name="sql" type="xs:string"/> 54 <xs:element name="sql" type="SQLContainer"> 55 <xs:complexType name="SQLContainer"> 56 <xs:sequence> 57 <xs:element ref="query" maxOccurs="unbounded"/> 58 </xs:sequence> 59 </xs:complexType> 60 </xs:element> 55 61 <xs:element name="parameters" type="ParameterContainer"> 56 62 <xs:complexType name="ParameterContainer"> … … 70 76 </xs:element> 71 77 78 <xs:element name="query" type="QueryType"> 79 <xs:complexType name="QueryType"> 80 <xsd:simpleContent> 81 <xsd:extension base="xs:string"> 82 <xs:attribute name="transformProjectionIn" type="xs:boolean"/> 83 <xs:attribute name="transformProjectionOut" type="xs:boolean"/> 84 </xsd:extension> 85 </xsd:simpleContent> 86 </xs:complexType> 87 </xs:element> 88 72 89 <xs:element name="parameter" type="ParameterType"> 73 90 <xs:complexType name="ParameterType"> 74 91 <xs:attribute name="name" type="xs:string"/> 75 92 <xs:attribute name="type" type="xs:string"/> 76 <xs:attribute name=" request" type="xs:string"/>93 <xs:attribute name="codename" type="xs:string"/> 77 94 <xs:attribute name="required" type="xs:boolean"/> 95 <xs:attribute name="default" type="xs:decimal"/> 78 96 </xs:complexType> 79 97 </xs:element> … … 84 102 <xs:attribute name="input" type="xs:boolean"/> 85 103 <xs:attribute name="output" type="xs:boolean"/> 104 <xs:attribute name="srid" type="xs:integer"/> 86 105 </xs:complexType> 87 106 </xs:element>

