- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 02 Sep 2009 13:50:56 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/WebContent/WEB-INF/resources/schemas
In directory hutz:/tmp/cvs-serv6876/WebContent/WEB-INF/resources/schemas
Modified Files:
tasklist.xsd
Log Message:
implemented the output element of the tasklist. Observations will be displayed in the right order.
Index: tasklist.xsd
===================================================================
RCS file: /sources/public/2006/unicorn/WebContent/WEB-INF/resources/schemas/tasklist.xsd,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- tasklist.xsd 28 Aug 2009 12:40:02 -0000 1.2
+++ tasklist.xsd 2 Sep 2009 13:50:54 -0000 1.3
@@ -10,7 +10,7 @@
<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:outputType" name="output" 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"/>
@@ -31,17 +31,11 @@
</xs:sequence>
<xs:attribute type="xs:string" name="name"/>
</xs:complexType>
- <xs:complexType name="outputseqType">
- <xs:sequence>
- <xs:element type="tas:outputgroupType" name="outputgroup" maxOccurs="unbounded" minOccurs="0" xmlns:tas="http://www.w3.org/unicorn/tasklist"/>
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="outputgroupType">
+ <xs:complexType name="outputType">
<xs:sequence>
- <xs:element type="xs:string" name="tasksort" maxOccurs="unbounded" minOccurs="0" xmlns:tas="http://www.w3.org/unicorn/tasklist"/>
+ <xs:element type="xs:string" name="observation" maxOccurs="unbounded" minOccurs="0" xmlns:tas="http://www.w3.org/unicorn/tasklist" />
</xs:sequence>
- <xs:attribute type="xs:byte" name="id" use="optional"/>
- </xs:complexType>
+ </xs:complexType>
<xs:complexType name="paramType">
<xs:simpleContent>
<xs:extension base="xs:string">
@@ -101,8 +95,7 @@
<xs:complexType name="execType" mixed="true">
<xs:sequence>
<xs:element type="tas:paramType" name="param" minOccurs="0" xmlns:tas="http://www.w3.org/unicorn/tasklist"/>
- </xs:sequence>
- <xs:attribute type="xs:string" name="id" use="optional"/>
+ </xs:sequence>
<xs:attribute type="xs:string" name="value" use="optional"/>
<xs:attribute type="xs:string" name="type" use="optional"/>
</xs:complexType>
Received on Wednesday, 2 September 2009 13:51:06 UTC