- From: Jean-Guilhem Rouel via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 17 Aug 2009 18:15:11 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/WebContent/WEB-INF/resources/schemas
In directory hutz:/tmp/cvs-serv8482/WebContent/WEB-INF/resources/schemas
Modified Files:
Tag: dev2
tasklist.xsd
Log Message:
elements in task are now unordered
Index: tasklist.xsd
===================================================================
RCS file: /sources/public/2006/unicorn/WebContent/WEB-INF/resources/schemas/Attic/tasklist.xsd,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- tasklist.xsd 17 Aug 2009 18:05:02 -0000 1.1.2.3
+++ tasklist.xsd 17 Aug 2009 18:15:09 -0000 1.1.2.4
@@ -7,12 +7,12 @@
</xs:sequence>
</xs:complexType>
<xs:complexType name="taskType">
- <xs:sequence>
- <xs:element type="tas:condsType" name="conds" xmlns:tas="http://www.w3.org/unicorn/tasklist" maxOccurs="1" minOccurs="0"/>
- <xs:element type="tas:routineType" name="routine" xmlns:tas="http://www.w3.org/unicorn/tasklist" maxOccurs="1" minOccurs="1"/>
- <xs:element type="tas:outputseqType" name="outputseq" xmlns:tas="http://www.w3.org/unicorn/tasklist" maxOccurs="1" minOccurs="1"/>
- <xs:element type="tas:parametersType" name="parameters" xmlns:tas="http://www.w3.org/unicorn/tasklist" maxOccurs="1" minOccurs="0"/>
- </xs:sequence>
+ <xs:all>
+ <xs:element type="tas:condsType" name="conds" xmlns:tas="http://www.w3.org/unicorn/tasklist" minOccurs="0" />
+ <xs:element type="tas:routineType" name="routine" xmlns:tas="http://www.w3.org/unicorn/tasklist" />
+ <xs:element type="tas:outputseqType" name="outputseq" xmlns:tas="http://www.w3.org/unicorn/tasklist" />
+ <xs:element type="tas:parametersType" name="parameters" xmlns:tas="http://www.w3.org/unicorn/tasklist" minOccurs="0" />
+ </xs:all>
<xs:attribute type="xs:string" name="id" use="required"/>
</xs:complexType>
<xs:complexType name="parameterType" mixed="true">
Received on Monday, 17 August 2009 18:15:20 UTC