Fix up the gschema.dtd
authorMatthias Clasen <mclasen@redhat.com>
Sat, 29 Dec 2012 05:22:34 +0000 (00:22 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 29 Dec 2012 05:22:34 +0000 (00:22 -0500)
This DTD wasn't syntactically correct, and didn't actually
describe keys correctly. This change makes it a bit too lax,
but at least it can be used now.
https://bugzilla.gnome.org/show_bug.cgi?id=690538

gio/gschema.dtd

index 96ff014..00e3a16 100644 (file)
@@ -1,5 +1,5 @@
 <!ELEMENT schemalist (schema|enum)* >
-<!ATTLIST schemalist gettext-domain #IMPLIED >
+<!ATTLIST schemalist gettext-domain CDATA #IMPLIED >
 
 <!ELEMENT schema (key|child|override)* >
 <!ATTLIST schema id             CDATA #REQUIRED
 <!ELEMENT value EMPTY >
 <!-- nick must be at least 2 characters long -->
 <!-- value must be parsable as a 32-bit integer -->
-<!ELEMENT value nick  #REQUIRED
-                value #REQUIRED >
+<!ATTLIST value nick  CDATA #REQUIRED
+                value CDATA #REQUIRED >
 
-<!ELEMENT key (default|summary?|description?|range?|choices?|aliases?) >
+<!ELEMENT key (default|summary?|description?|range?|choices?|aliases?)* >
 <!-- name can only contain lowercase letters, numbers and '-' -->
 <!-- type must be a GVariant type string -->
 <!-- enum must be the id of an enum type that has been defined earlier -->