changeset 250:b8b6a1c50023 WarFoundry_v0.1RC1_Winforms WarFoundry_v0.1beta7_Winforms WarFoundry_v0.1beta8_Winforms WarFoundry_v0.1beta9_Winforms

Re #152: Test and fix extensibility of current schemas * Fix typo - "processContents" (plural, not singular) no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Wed, 31 Mar 2010 20:02:57 +0000
parents 2f8fd45d55e2
children 22509bd03ca2
files schemas/warfoundry-core.xsd
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/schemas/warfoundry-core.xsd	Sat Mar 13 20:51:04 2010 +0000
+++ b/schemas/warfoundry-core.xsd	Wed Mar 31 20:02:57 2010 +0000
@@ -4,7 +4,7 @@
 <xs:element name="extension">
 	<xs:complexType>
 		<xs:sequence>
-			<xs:any minOccurs="0" maxOccurs="unbounded" processContent="lax"/>
+			<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
 		</xs:sequence>
 	</xs:complexType>
 </xs:element>
@@ -13,37 +13,37 @@
 		<xs:element name="percentageLimit">
 			<xs:complexType>
 				<xs:sequence>
-					<xs:any minOccurs="0" maxOccurs="unbounded" processContent="lax"/>
+					<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
 				</xs:sequence>
 				<xs:attribute name="limit" type="percentage" use="required"/>
 				<xs:attribute name="round" type="updowntype" default="up" />
-				<xs:anyAttribute processContent="lax"/>
+				<xs:anyAttribute processContents="lax"/>
 			</xs:complexType>
 		</xs:element>
 		<xs:element name="sizeConstrainedLimit">
 			<xs:complexType>
 				<xs:sequence>
-					<xs:any minOccurs="0" maxOccurs="unbounded" processContent="lax"/>
+					<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
 				</xs:sequence>
 				<xs:attribute name="limit" type="xs:nonNegativeInteger" use="required"/>
-				<xs:anyAttribute processContent="lax"/>
+				<xs:anyAttribute processContents="lax"/>
 			</xs:complexType>
 		</xs:element>
 		<xs:element name="absoluteLimit">
 			<xs:complexType>
 				<xs:sequence>
-					<xs:any minOccurs="0" maxOccurs="unbounded" processContent="lax"/>
+					<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
 				</xs:sequence>
 				<xs:attribute name="limit" type="xs:nonNegativeInteger" use="required"/>
-				<xs:anyAttribute processContent="lax"/>
+				<xs:anyAttribute processContents="lax"/>
 			</xs:complexType>
 		</xs:element>
 		<xs:element name="unitSizeLimit">
 			<xs:complexType>
 				<xs:sequence>
-					<xs:any minOccurs="0" maxOccurs="unbounded" processContent="lax"/>
+					<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
 				</xs:sequence>
-				<xs:anyAttribute processContent="lax"/>
+				<xs:anyAttribute processContents="lax"/>
 			</xs:complexType>
 		</xs:element>
 	</xs:choice>