comparison schemas/translation.xsd @ 64:70d6c2a5d99e

* Move schema from "dtds" folder to "schemas" folder to match warfoundry:429 no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Wed, 16 Dec 2009 20:48:10 +0000
parents
children a70d89de1435
comparison
equal deleted inserted replaced
63:8fe11cd7d3bf 64:70d6c2a5d99e
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:complexType>
17 </xs:element>
18 </xs:schema>