[Zope3-checkins] CVS: Zope3/src/ZConfig/doc - schema.dtd:1.7
Phillip J. Eby
pje@telecommunity.com
Thu, 10 Jul 2003 14:08:39 -0400
Update of /cvs-repository/Zope3/src/ZConfig/doc
In directory cvs.zope.org:/tmp/cvs-serv31898/doc
Modified Files:
schema.dtd
Log Message:
Attributes should be CDATA, not PCDATA. Oops. :(
=== Zope3/src/ZConfig/doc/schema.dtd 1.6 => 1.7 ===
--- Zope3/src/ZConfig/doc/schema.dtd:1.6 Mon Apr 21 09:22:13 2003
+++ Zope3/src/ZConfig/doc/schema.dtd Thu Jul 10 14:08:33 2003
@@ -61,7 +61,7 @@
<!ELEMENT key (description?, metadefault?, example?)>
<!ATTLIST key
- name PCDATA #REQUIRED
+ name CDATA #REQUIRED
attribute NMTOKEN #IMPLIED
datatype NMTOKEN #IMPLIED
handler NMTOKEN #IMPLIED
@@ -70,7 +70,7 @@
<!ELEMENT multikey (description?, metadefault?, example?, default*)>
<!ATTLIST multikey
- name PCDATA #REQUIRED
+ name CDATA #REQUIRED
attribute NMTOKEN #IMPLIED
datatype NMTOKEN #IMPLIED
handler NMTOKEN #IMPLIED
@@ -78,7 +78,7 @@
<!ELEMENT section (description?)>
<!ATTLIST section
- name PCDATA #REQUIRED
+ name CDATA #REQUIRED
attribute NMTOKEN #IMPLIED
type NMTOKEN #REQUIRED
handler NMTOKEN #IMPLIED
@@ -87,7 +87,7 @@
<!ELEMENT multisection (description?)>
<!ATTLIST multisection
- name PCDATA #REQUIRED
+ name CDATA #REQUIRED
attribute NMTOKEN #IMPLIED
type NMTOKEN #REQUIRED
handler NMTOKEN #IMPLIED