- From: Doug Davis via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 05 Oct 2009 19:09:20 +0000
- To: public-ws-resource-access-notifications@w3.org
Update of /w3ccvs/WWW/2002/ws/ra/edcopies/ws-fra In directory hutz:/tmp/cvs-serv29838/ws-fra Modified Files: FragmentPolicy.xsd Log Message: add correct xsd for policy Index: FragmentPolicy.xsd =================================================================== RCS file: /w3ccvs/WWW/2002/ws/ra/edcopies/ws-fra/FragmentPolicy.xsd,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- FragmentPolicy.xsd 5 Oct 2009 15:18:23 -0000 1.1 +++ FragmentPolicy.xsd 5 Oct 2009 19:09:18 -0000 1.2 @@ -1,4 +1,31 @@ -<wsfrp:Fragment [wsp:Optional="xs:boolean"]? ...> - <wsfrp:Language ...> xs:anyURI </wsfrp:Language> * - ... -</wsfrp:Fragment> +<xs:schema + targetNamespace="http://www.w3.org/2009/09/ws-evp" + xmlns:tns="http://www.w3.org/2009/09/ws-evp" + xmlns:xs="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" + blockDefault="#all"> + + <xs:import namespace="http://www.w3.org/XML/1998/namespace" + schemaLocation="http://www.w3.org/2001/xml.xsd" /> + + <xs:complexType name="URI"> + <xs:simpleContent> + <xs:extension base="xs:anyURI"> + <xs:anyAttribute namespace="##other" processContents="lax"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + + <xs:element name="Fragment"> + <xs:complexType> + <xs:sequence> + <xs:element name="Language" type="tns:URI" minOccurs="0" + maxOccurs="unbounded"/> + <xs:any namespace="##other" processContents="lax" minOccurs="0" + maxOccurs="unbounded"/> + </xs:sequence> + <xs:anyAttribute namespace="##other" processContents="lax" /> + </xs:complexType> + </xs:element> + +</xs:schema>
Received on Monday, 5 October 2009 19:09:24 UTC