Mercurial > repos > IBDev-IBBoard.WarFoundry.API
annotate dtds/warfoundry-cats.xsd @ 32:6b9d37f14a14
Re #32 - Migrate to schemas
* Remove unused method that was still validating by DTD
* Collapse Cats schema in to one nested structure
System files are failing to validate because:
Problem validating against schema for WarFoundry data: XmlSchema error: Invalid start element: http://ibboard.co.uk/warfoundry/system:cat XML Line 4, Position 4.
which is a <cat> tag, which should match the Cat schema definition. Removing the tags results in a different error about the end </categories> tag being unexpected because of missing content.
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 14 Mar 2009 20:47:14 +0000 |
parents | 72312a7ac08a |
children | 548cfc776f54 |
rev | line source |
---|---|
21
1e18de815472
Re #32 - Migrate WarFoundry to schemas
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
24
72312a7ac08a
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
23
diff
changeset
|
2 <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" |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
22
diff
changeset
|
3 xmlns="http://ibboard.co.uk/warfoundry/cats" elementFormDefault="qualified"> |
21
1e18de815472
Re #32 - Migrate WarFoundry to schemas
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
4 <xs:complexType name="categoriestype"> |
1e18de815472
Re #32 - Migrate WarFoundry to schemas
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
5 <xs:sequence> |
32 | 6 <xs:element name="cat" minOccurs="1" maxOccurs="unbounded"> |
7 <xs:complexType> | |
8 <xs:attribute name="id" type="xs:ID" /> | |
9 <xs:attribute name="name" type="xs:string" use="required"/> | |
10 <xs:attribute name="minPoints" type="core:nonNegativeDecimal" default="0"/> | |
11 <xs:attribute name="maxPoints" type="core:infiniteOrNonNegativeDecimal" default="-1"/> | |
12 <xs:attribute name="minPercentage" type="core:percentage" default="0"/> | |
13 <xs:attribute name="maxPercentage" type="core:percentage" default="100"/> | |
14 </xs:complexType> | |
15 </xs:element> | |
21
1e18de815472
Re #32 - Migrate WarFoundry to schemas
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
16 </xs:sequence> |
1e18de815472
Re #32 - Migrate WarFoundry to schemas
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
17 </xs:complexType> |
1e18de815472
Re #32 - Migrate WarFoundry to schemas
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
18 </xs:schema> |