Statistics
| Revision:

root / trunk / frameworks / _fwAndami / schemas / andami-config.xsd @ 6101

History | View | Annotate | Download (1.11 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="lookAndFeel" type="xs:string" use="optional" />
20
      <xs:attribute name="pluginsDirectory" type="xs:string" use="required" />
21
    </xs:complexType>
22
  </xs:element>
23

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

    
31
</xs:schema>