[Zodb-checkins] CVS: Packages/ZConfig/xml - schema.dtd:1.1.2.7

Fred L. Drake, Jr. fred@zope.com
Fri, 13 Dec 2002 12:11:57 -0500


Update of /cvs-repository/Packages/ZConfig/xml
In directory cvs.zope.org:/tmp/cvs-serv14133

Modified Files:
      Tag: zconfig-schema-devel-branch
	schema.dtd 
Log Message:
Python datatype converters are now identified using "datatype", not
"type".  Section type names are now specified using the "type"
attribute instead of the "name" attribute, to match their use in
section elements.


=== Packages/ZConfig/xml/schema.dtd 1.1.2.6 => 1.1.2.7 ===
--- Packages/ZConfig/xml/schema.dtd:1.1.2.6	Thu Dec 12 10:39:30 2002
+++ Packages/ZConfig/xml/schema.dtd	Fri Dec 13 12:11:57 2002
@@ -7,7 +7,7 @@
           prefix     NMTOKEN  #IMPLIED
           handler    NMTOKEN  #IMPLIED
           keytype    NMTOKEN  #IMPLIED
-          type       NMTOKEN  #IMPLIED
+          datatype   NMTOKEN  #IMPLIED
           valuetype  NMTOKEN  #IMPLIED>
 
 <!ELEMENT description (#PCDATA)*>
@@ -18,22 +18,22 @@
 <!ATTLIST key
           name       NMTOKEN  #REQUIRED
           attribute  NMTOKEN  #IMPLIED
-          type       NMTOKEN  #IMPLIED
+          datatype   NMTOKEN  #IMPLIED
           handler    NMTOKEN  #IMPLIED
           minOccurs  NMTOKEN  #IMPLIED
           maxOccurs  NMTOKEN  #IMPLIED>
 
 <!ELEMENT sectiontype (description?, (section | key)*)>
 <!ATTLIST sectiontype
-          name       NMTOKEN  #REQUIRED
+          type       NMTOKEN  #REQUIRED
           prefix     NMTOKEN  #IMPLIED
           keytype    NMTOKEN  #IMPLIED
-          type       NMTOKEN  #IMPLIED
+          datatype   NMTOKEN  #IMPLIED
           valuetype  NMTOKEN  #IMPLIED>
 
 <!ELEMENT sectiongroup (description?, sectiontype+)>
 <!ATTLIST sectiongroup
-          name       NMTOKEN  #REQUIRED
+          type       NMTOKEN  #REQUIRED
           prefix     NMTOKEN  #IMPLIED>
 
 <!ELEMENT section (description?)>