view 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
line wrap: on
line source

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:core="http://ibboard.co.uk/warfoundry/core" targetNamespace="http://ibboard.co.uk/warfoundry/cats"
xmlns="http://ibboard.co.uk/warfoundry/cats" elementFormDefault="qualified">
<xs:complexType name="categoriestype">
  <xs:sequence>
    <xs:element name="cat" minOccurs="1" maxOccurs="unbounded">
      <xs:complexType>
        <xs:attribute name="id" type="xs:ID" />
        <xs:attribute name="name" type="xs:string" use="required"/>
        <xs:attribute name="minPoints" type="core:nonNegativeDouble" default="0"/>
        <xs:attribute name="maxPoints" type="core:infiniteOrNonNegativeDouble" default="INF"/>
        <xs:attribute name="minPercentage" type="core:percentage" default="0"/>
        <xs:attribute name="maxPercentage" type="core:percentage" default="100"/>
      </xs:complexType>
	</xs:element>
  </xs:sequence>
</xs:complexType>
</xs:schema>