comparison test-data/XmlLoaderTests/schemas/translation.xsd @ 35:791b84b79a0f

* Fix missing file issues (file not added to VCS before) no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Sun, 03 Apr 2011 14:42:36 +0000
parents
children
comparison
equal deleted inserted replaced
34:de7c3ee39362 35:791b84b79a0f
1 <?xml version="1.0"?>
2 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ibboard.co.uk/translation" xmlns="http://ibboard.co.uk/translation" elementFormDefault="qualified">
3 <xs:complexType name="translationtype">
4 <xs:simpleContent>
5 <xs:extension base="xs:string">
6 <xs:attribute name="id" type="xs:ID" />
7 </xs:extension>
8 </xs:simpleContent>
9 </xs:complexType>
10 <xs:element name="translations">
11 <xs:complexType>
12 <xs:sequence>
13 <xs:element name="translation" minOccurs="0" maxOccurs="unbounded" type="translationtype"/>
14 </xs:sequence>
15 <xs:attribute name="lang" type="xs:string" use="required"/>
16 <xs:attribute name="extends" type="xs:string" default=""/>
17 </xs:complexType>
18 </xs:element>
19 </xs:schema>