- From: Damien Leroy via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 08 Sep 2006 15:35:55 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/resources/schemas
In directory hutz:/tmp/cvs-serv30025/resources/schemas
Modified Files:
observer-response.xsd
Log Message:
Fixed critical error with "nullpointerexception" in "UnicornCall.doRequests".
Index: observer-response.xsd
===================================================================
RCS file: /sources/public/2006/unicorn/resources/schemas/observer-response.xsd,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- observer-response.xsd 31 Aug 2006 09:09:29 -0000 1.1.1.1
+++ observer-response.xsd 8 Sep 2006 15:35:53 -0000 1.2
@@ -1,9 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
-<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
- elementFormDefault="qualified"
- targetNamespace="http://www.w3.org/unicorn/observationresponse"
- xmlns:m="http://www.w3.org/unicorn/observationresponse">
- <xs:import namespace="http://www.w3.org/XML/1998/namespace"
+<xs:schema
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified"
+ targetNamespace="http://www.w3.org/unicorn/observationresponse"
+ xmlns:m="http://www.w3.org/unicorn/observationresponse">
+ <xs:import
+ namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="http://www.w3.org/2001/xml.xsd"/>
<xs:element name="observationresponse">
<xs:complexType>
@@ -23,7 +25,7 @@
</xs:sequence>
</xs:complexType>
</xs:element>
-
+
<xs:element name="uri" type="xs:anyURI"/>
<xs:element name="checkedby" type="xs:anyURI"/>
<xs:element name="version" type="xs:string"/>
@@ -48,7 +50,7 @@
<xs:complexType>
<xs:sequence>
<!-- Total number of errors -->
- <xs:element ref="m:errorcount" minOccurs="0"/>
+ <xs:element ref="m:errorcount" minOccurs="0"/>
<xs:element ref="m:errorlist" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute ref="xml:lang" use="required"/>
@@ -202,15 +204,15 @@
</xs:sequence>
</xs:complexType>
</xs:element>
-
+
<xs:element name="level" type="m:tWarningLevels"/>
-
+
<xs:simpleType name="tWarningLevels">
<xs:restriction base="xs:nonNegativeInteger">
<xs:maxInclusive value="3"/>
</xs:restriction>
</xs:simpleType>
-
+
<xs:element name="informations">
<xs:complexType>
<xs:sequence>
@@ -220,9 +222,9 @@
<xs:attribute ref="xml:lang" use="required"/>
</xs:complexType>
</xs:element>
-
+
<xs:element name="infocount" type="xs:integer"/>
-
+
<xs:element name="infolist">
<xs:complexType>
<xs:sequence>
@@ -238,13 +240,13 @@
<xs:sequence>
<xs:element ref="m:line" minOccurs="0"/>
<xs:element ref="m:column" minOccurs="0"/>
- <xs:element ref="m:context" minOccurs="0"/>
+ <xs:element ref="m:context" minOccurs="0"/>
<xs:element ref="m:message" maxOccurs="unbounded"/>
<xs:element ref="m:longmessage" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
-
+
<!--<xs:element name="errordetail" type="xs:string"/>-->
-
+
</xs:schema>
Received on Friday, 8 September 2006 15:36:02 UTC