comparison dtds/warfoundry-cats.xsd @ 38:548cfc776f54

Fixes #34 - Remove "Choices" and "Base/Increment" from Category * Remove Choices and Base/Increment from code Re #47: Remove magic numbers * Replace "-1" magic number with WarFoundryCore.INFINITY * Use INFINITY instead of -1 in code * Use INF in schemas instead of -1 * Handle and parse INF as a special value in XML Factory
author IBBoard <dev@ibboard.co.uk>
date Thu, 19 Mar 2009 20:11:07 +0000
parents 6b9d37f14a14
children 3664eee50390
comparison
equal deleted inserted replaced
37:465a215a21a2 38:548cfc776f54
5 <xs:sequence> 5 <xs:sequence>
6 <xs:element name="cat" minOccurs="1" maxOccurs="unbounded"> 6 <xs:element name="cat" minOccurs="1" maxOccurs="unbounded">
7 <xs:complexType> 7 <xs:complexType>
8 <xs:attribute name="id" type="xs:ID" /> 8 <xs:attribute name="id" type="xs:ID" />
9 <xs:attribute name="name" type="xs:string" use="required"/> 9 <xs:attribute name="name" type="xs:string" use="required"/>
10 <xs:attribute name="minPoints" type="core:nonNegativeDecimal" default="0"/> 10 <xs:attribute name="minPoints" type="core:nonNegativeDouble" default="0"/>
11 <xs:attribute name="maxPoints" type="core:infiniteOrNonNegativeDecimal" default="-1"/> 11 <xs:attribute name="maxPoints" type="core:infiniteOrNonNegativeDouble" default="INF"/>
12 <xs:attribute name="minPercentage" type="core:percentage" default="0"/> 12 <xs:attribute name="minPercentage" type="core:percentage" default="0"/>
13 <xs:attribute name="maxPercentage" type="core:percentage" default="100"/> 13 <xs:attribute name="maxPercentage" type="core:percentage" default="100"/>
14 </xs:complexType> 14 </xs:complexType>
15 </xs:element> 15 </xs:element>
16 </xs:sequence> 16 </xs:sequence>