/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool
303 by Suren A. Chilingaryan
Initial integration of XML support
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
307 by Suren A. Chilingaryan
Finalyze XML support and provide initial support for views (only descriptions so far)
3
  <xsd:include schemaLocation="types.xsd"/>
4
5
  <xsd:element name="model">
6
    <xsd:complexType>
322 by Suren A. Chilingaryan
Support multiple XML files per folder
7
      <xsd:choice minOccurs="1" maxOccurs="unbounded">
307 by Suren A. Chilingaryan
Finalyze XML support and provide initial support for views (only descriptions so far)
8
        <xsd:element name="bank" type="pcilib_bank_t" minOccurs="0" maxOccurs="unbounded" />
9
        <xsd:element name="transform" type="pcilib_transform_view_t" minOccurs="0" maxOccurs="unbounded" />
10
        <xsd:element name="enum" type="pcilib_enum_view_t" minOccurs="0" maxOccurs="unbounded" />
11
        <xsd:element name="unit" type="pcilib_unit_t" minOccurs="0" maxOccurs="unbounded" />
12
      </xsd:choice>
13
    </xsd:complexType>
14
  </xsd:element>
303 by Suren A. Chilingaryan
Initial integration of XML support
15
</xsd:schema>