configurationengine/doc/xsd/XInclude.xsd
author terytkon
Thu, 11 Mar 2010 17:04:37 +0200
changeset 0 2e8eeb919028
permissions -rw-r--r--
Adding EPL version of configurationengine.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8"?>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     2
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     3
           xmlns:xi="http://www.w3.org/2001/XInclude"
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     4
           targetNamespace="http://www.w3.org/2001/XInclude"
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     5
           finalDefault="extension">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     6
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     7
  <xs:element name="include" type="xi:includeType" />
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     8
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     9
  <xs:complexType name="includeType" mixed="true">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    10
    <xs:choice minOccurs='0' maxOccurs='unbounded' >
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    11
      <xs:element ref='xi:fallback' />
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    12
      <xs:any namespace='##other' processContents='lax' />
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    13
      <xs:any namespace='##local' processContents='lax' />
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    14
    </xs:choice>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    15
    <xs:attribute name="href" use="optional" type="xs:anyURI"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    16
    <xs:attribute name="parse" use="optional" default="xml"
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    17
                  type="xi:parseType" />
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    18
    <xs:attribute name="xpointer" use="optional" type="xs:string"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    19
    <xs:attribute name="encoding" use="optional" type="xs:string"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    20
    <xs:attribute name="accept" use="optional" type="xs:string"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    21
    <xs:attribute name="accept-language" use="optional" type="xs:string"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    22
    <xs:anyAttribute namespace="##other" processContents="lax"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    23
  </xs:complexType>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    24
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    25
  <xs:simpleType name="parseType">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    26
    <xs:restriction base="xs:token">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    27
      <xs:enumeration value="xml"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    28
      <xs:enumeration value="text"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    29
    </xs:restriction>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    30
  </xs:simpleType>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    31
  
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    32
  <xs:element name="fallback" type="xi:fallbackType" />
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    33
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    34
  <xs:complexType name="fallbackType" mixed="true">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    35
    <xs:choice minOccurs="0" maxOccurs="unbounded">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    36
      <xs:element ref="xi:include"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    37
      <xs:any namespace="##other" processContents="lax"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    38
      <xs:any namespace="##local" processContents="lax"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    39
    </xs:choice>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    40
    <xs:anyAttribute namespace="##other" processContents="lax" />
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    41
  </xs:complexType>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    42
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    43
</xs:schema>