comparison test-schema.xsd @ 603:640ffb822da1

Bug #1652 and Feature #1650 fixes. You can specify the track labels through page attribute 'label' ('default', 'none', 'number', 'letter', 'capital'). Updated examples to match schema
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Thu, 10 Mar 2016 16:16:16 +0000
parents a73bafb18494
children 96cb6735c9c2
comparison
equal deleted inserted replaced
602:6531e3903ea1 603:640ffb822da1
51 <xs:attribute name="randomiseOrder" type="xs:boolean" default="false"/> 51 <xs:attribute name="randomiseOrder" type="xs:boolean" default="false"/>
52 <xs:attribute name="repeatCount" type="xs:nonNegativeInteger" default="0"/> 52 <xs:attribute name="repeatCount" type="xs:nonNegativeInteger" default="0"/>
53 <xs:attribute name="loop" type="xs:boolean" default="false"/> 53 <xs:attribute name="loop" type="xs:boolean" default="false"/>
54 <xs:attribute name="showElementComments" type="xs:boolean" default="false"/> 54 <xs:attribute name="showElementComments" type="xs:boolean" default="false"/>
55 <xs:attribute name="loudness" type="xs:nonPositiveInteger" use="optional"/> 55 <xs:attribute name="loudness" type="xs:nonPositiveInteger" use="optional"/>
56 <xs:attribute name="label" use="optional" default="default">
57 <xs:simpleType>
58 <xs:restriction base="xs:string">
59 <xs:enumeration value="default"/>
60 <xs:enumeration value="none"/>
61 <xs:enumeration value="number"/>
62 <xs:enumeration value="letter"/>
63 <xs:enumeration value="capital"/>
64 </xs:restriction>
65 </xs:simpleType>
66 </xs:attribute>
56 </xs:complexType> 67 </xs:complexType>
57 </xs:element> 68 </xs:element>
58 69
59 <xs:element name="metric"> 70 <xs:element name="metric">
60 <xs:complexType> 71 <xs:complexType>