Statistics
| Revision:

svn-gvsig-desktop / branches / v10alpha_tecnimap / frameworks / _fwAndami / schemas / andami-config.xsd @ 40416

History | View | Annotate | Download (1.04 KB)

1
<?xml version="1.0" encoding="UTF-8" ?>
2

    
3
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
4
  <xs:element name="andami">
5
    <xs:complexType>
6
      <xs:attribute name="update" type="xs:boolean" use="required" />
7
    </xs:complexType>
8
  </xs:element>
9

    
10
  <xs:element name="andami-config">
11
    <xs:complexType>
12
      <xs:sequence>
13
        <xs:element ref="andami" />
14
        <xs:element ref="plugin" maxOccurs="unbounded" />
15
      </xs:sequence>
16
      <xs:attribute name="locale-language" type="xs:string" use="optional" />
17
      <xs:attribute name="locale-country" type="xs:string" use="optional" />
18
      <xs:attribute name="locale-variant" type="xs:string" use="optional" />
19
      <xs:attribute name="pluginsDirectory" type="xs:string" use="required" />
20
    </xs:complexType>
21
  </xs:element>
22

    
23
  <xs:element name="plugin">
24
    <xs:complexType>
25
      <xs:attribute name="name" type="xs:NMTOKEN" use="required" />
26
      <xs:attribute name="update" type="xs:boolean" use="required" />
27
    </xs:complexType>
28
  </xs:element>
29

    
30
</xs:schema>