pgRouting

Changeset 104

Show
Ignore:
Timestamp:
02/06/08 12:08:10 (10 months ago)
Author:
anton
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/routingservice/configuration.xsd

    r67 r104  
    5252      </xs:complexType>     
    5353    </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> 
    5561    <xs:element name="parameters" type="ParameterContainer"> 
    5662      <xs:complexType name="ParameterContainer"> 
     
    7076</xs:element> 
    7177 
     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 
    7289<xs:element name="parameter" type="ParameterType"> 
    7390  <xs:complexType name="ParameterType"> 
    7491    <xs:attribute name="name" type="xs:string"/> 
    7592    <xs:attribute name="type" type="xs:string"/> 
    76     <xs:attribute name="request" type="xs:string"/> 
     93    <xs:attribute name="codename" type="xs:string"/> 
    7794    <xs:attribute name="required" type="xs:boolean"/> 
     95    <xs:attribute name="default" type="xs:decimal"/>     
    7896  </xs:complexType> 
    7997</xs:element> 
     
    84102    <xs:attribute name="input" type="xs:boolean"/> 
    85103    <xs:attribute name="output" type="xs:boolean"/> 
     104    <xs:attribute name="srid" type="xs:integer"/> 
    86105  </xs:complexType> 
    87106</xs:element>