- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 04 Mar 2010 18:47:19 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/WebContent/WEB-INF/resources/schemas In directory hutz:/tmp/cvs-serv21212/WebContent/WEB-INF/resources/schemas Modified Files: tasklist.xsd Log Message: added attribute "default" to the xml task object. If set to true the coresponding task will be the on selected by default on the index page. Index: tasklist.xsd =================================================================== RCS file: /sources/public/2006/unicorn/WebContent/WEB-INF/resources/schemas/tasklist.xsd,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- tasklist.xsd 16 Sep 2009 11:57:25 -0000 1.5 +++ tasklist.xsd 4 Mar 2010 18:47:17 -0000 1.6 @@ -7,13 +7,14 @@ </xs:sequence> </xs:complexType> <xs:complexType name="taskType"> - <xs:all> + <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: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"/> + <xs:attribute type="xs:string" name="default" use="optional"/> </xs:complexType> <xs:complexType name="parameterType" mixed="true"> <xs:sequence> @@ -32,11 +33,11 @@ <xs:attribute type="xs:string" name="name"/> </xs:complexType> <xs:complexType name="outputType"> - <xs:sequence> + <xs:sequence> <xs:element name="group" type="tas:groupType" minOccurs="0" maxOccurs="unbounded"></xs:element> </xs:sequence> - </xs:complexType> + </xs:complexType> <xs:complexType name="paramType"> <xs:simpleContent> <xs:extension base="xs:string">
Received on Thursday, 4 March 2010 18:47:20 UTC