- From: Dan Connolly <connolly@w3.org>
- Date: Thu, 22 Feb 2001 01:06:15 -0600
- To: www-xml-infoset-comments@w3.org
- Message-ID: <3A94BA67.6D8A05D2@w3.org>
---------------------------- revision 1.2 date: 2001/02/22 07:03:47; author: connolly; state: Exp; lines: +100 -53 rdfs:subClassOf was being used as an propAttr, but RDF propAttrs only have string values; so I changed them to subelements. There was one use of an obsolete RDFS URI. fixed. ---------------------------- diffs attached. I went ahead and updated the schema in the web. -- Dan Connolly, W3C http://www.w3.org/People/Connolly/
Index: infoset.rdf =================================================================== RCS file: /w3ccvs/WWW/2001/02/infoset.rdf,v retrieving revision 1.1 diff -u -r1.1 infoset.rdf --- infoset.rdf 2001/01/31 22:22:07 1.1 +++ infoset.rdf 2001/02/22 07:01:11 @@ -4,7 +4,7 @@ <!-- $Id: infoset.rdf,v 1.1 2001/01/31 22:22:07 dom Exp $ --> <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:rdfs='http://www.w3.org/2000/01/rdf-schema#' - xmlns='http://www.w3.org/2001/02/infoset#'> + xmlns='http://www.w3.org/2001/02/infoset#' --> <!-- @@ -39,10 +39,11 @@ <Boolean ID='Boolean.true'/> <Boolean ID='Boolean.false'/> -<rdfs:Class ID='Integer' - rdfs:subClassOf='http://www.w3.org/2000/01/rdf-schema#Literal'/> +<rdfs:Class ID='Integer'> + <rdfs:subClassOf resource='http://www.w3.org/2000/01/rdf-schema#Literal'/> +</rdfs:Class> -<rdfs:Class ID='Standalone'/> +<rdfs:Class ID='StandaloneType'/> <StandaloneType ID='Standalone.yes'/> <StandaloneType ID='Standalone.no'/> @@ -50,60 +51,106 @@ <rdfs:Class ID='InfoItem'/> -<rdfs:Class ID='Document' rdfs:subClassOf='#InfoItem'/> +<rdfs:Class ID='Document'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='Element'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='Attribute'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='ProcessingInstruction'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='Character'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='UnexpandedEntityReference'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='Comment'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='DocumentTypeDeclaration'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='Entity'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='InternalEntity'> + <rdfs:subClassOf resource='#Entity'/> +</rdfs:Class> + +<rdfs:Class ID='ExternalEntity'> + <rdfs:subClassOf resource='#Entity'/> +</rdfs:Class> + +<rdfs:Class ID='UnparsedEntity'> + <rdfs:subClassOf resource='#Entity'/> +</rdfs:Class> + +<rdfs:Class ID='Notation'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='EntityStartMarker'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='EntityEndMarker'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='Namespace'> + <rdfs:subClassOf resource='#InfoItem'/>\ +</rdfs:Class> + +<rdfs:Class ID='CDATAStartMarker'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> + +<rdfs:Class ID='CDATAEndMarker'> + <rdfs:subClassOf resource='#InfoItem'/> +</rdfs:Class> -<rdfs:Class ID='Element' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='Attribute' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='ProcessingInstruction' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='Character' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='UnexpandedEntityReference' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='Comment' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='DocumentTypeDeclaration' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='Entity' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='InternalEntity' rdfs:subClassOf='#Entity'/> - -<rdfs:Class ID='ExternalEntity' rdfs:subClassOf='#Entity'/> - -<rdfs:Class ID='UnparsedEntity' rdfs:subClassOf='#Entity'/> - -<rdfs:Class ID='Notation' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='EntityStartMarker' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='EntityEndMarker' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='Namespace' rdfs:subClassOf='#InfoItem'/>\ - -<rdfs:Class ID='CDATAStartMarker' rdfs:subClassOf='#InfoItem'/> - -<rdfs:Class ID='CDATAEndMarker' rdfs:subClassOf='#InfoItem'/> - <!--Set containers--> - -<rdfs:Class ID='InfoItemSet' - rdfs:subClassOf='http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag'/> - -<rdfs:Class ID='AttributeSet' rdfs:subClassOf='#InfoItemSet'/> - -<rdfs:Class ID='EntitySet' rdfs:subClassOf='#InfoItemSet'/> - -<rdfs:Class ID='NamespaceSet' rdfs:subClassOf='#InfoItemSet'/> -<rdfs:Class ID='NotationSet' rdfs:subClassOf='#InfoItemSet'/> +<rdfs:Class ID='InfoItemSet'> + <rdfs:subClassOf resource='http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag'/> +</rdfs:Class> + +<rdfs:Class ID='AttributeSet'> + <rdfs:subClassOf resource='#InfoItemSet'/> +</rdfs:Class> + +<rdfs:Class ID='EntitySet'> + <rdfs:subClassOf resource='#InfoItemSet'/> +</rdfs:Class> + +<rdfs:Class ID='NamespaceSet'> + <rdfs:subClassOf resource='#InfoItemSet'/> +</rdfs:Class> + +<rdfs:Class ID='NotationSet'> + <rdfs:subClassOf resource='#InfoItemSet'/> +</rdfs:Class> <!--Sequence container--> -<rdfs:Class ID='InfoItemSeq' - rdfs:subClassOf='http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq'/> +<rdfs:Class ID='InfoItemSeq'> + <rdfs:subClassOf resource='http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq'/> +</rdfs:Class> <!--Info item properties--> @@ -128,7 +175,7 @@ <rdfs:domain resource='#Element'/> <rdfs:domain resource='#ProcessingInstruction'/> <rdfs:domain resource='#ExternalEntity'/> - <rdfs:range resource='http://www.w3.org/TR/1999/PR-rdf-schema-19990303#Literal'/> + <rdfs:range resource='http://www.w3.org/2000/01/rdf-schema#Literal'/> </rdfs:Property> <rdfs:Property ID='characterCode'>
Received on Thursday, 22 February 2001 02:06:17 UTC