gschema.dtd 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!ELEMENT schemalist (schema|enum)* >
  2. <!ATTLIST schemalist gettext-domain CDATA #IMPLIED >
  3. <!ELEMENT schema (key|child|override)* >
  4. <!ATTLIST schema id CDATA #REQUIRED
  5. path CDATA #IMPLIED
  6. gettext-domain CDATA #IMPLIED
  7. extends CDATA #IMPLIED
  8. list-of CDATA #IMPLIED >
  9. <!-- enumerated and flags types -->
  10. <!-- each value element maps a nick to a numeric value -->
  11. <!ELEMENT enum (value*) >
  12. <!ATTLIST enum id CDATA #REQUIRED >
  13. <!ELEMENT flags (value*) >
  14. <!ATTLIST flags id CDATA #REQUIRED >
  15. <!ELEMENT value EMPTY >
  16. <!-- nick must be at least 2 characters long -->
  17. <!-- value must be parsable as a 32-bit integer -->
  18. <!ATTLIST value nick CDATA #REQUIRED
  19. value CDATA #REQUIRED >
  20. <!ELEMENT key (default|summary?|description?|range?|choices?|aliases?)* >
  21. <!-- name can only contain lowercase letters, numbers and '-' -->
  22. <!-- type must be a GVariant type string -->
  23. <!-- enum must be the id of an enum type that has been defined earlier -->
  24. <!-- flags must be the id of a flags type that has been defined earlier -->
  25. <!-- exactly one of type, enum or flags must be given -->
  26. <!ATTLIST key name CDATA #REQUIRED
  27. type CDATA #IMPLIED
  28. enum CDATA #IMPLIED
  29. flags CDATA #IMPLIED >
  30. <!-- the default value is specified a a serialized GVariant,
  31. i.e. you have to include the quotes when specifying a string -->
  32. <!ELEMENT default (#PCDATA) >
  33. <!-- the presence of the l10n attribute marks a default value for
  34. translation, its value is the gettext category to use -->
  35. <!-- if context is present, it specifies msgctxt to use -->
  36. <!ATTLIST default l10n (messages|time) #IMPLIED
  37. context CDATA #IMPLIED >
  38. <!ELEMENT summary (#PCDATA) >
  39. <!ELEMENT description (#PCDATA) >
  40. <!-- range is only allowed for keys with numeric type -->
  41. <!ELEMENT range EMPTY >
  42. <!-- min and max must be parseable as values of the key type and min < max -->
  43. <!ATTLIST range min CDATA #REQUIRED
  44. max CDATA #REQUIRED >
  45. <!-- choices is only allowed for keys with string or string array type -->
  46. <!ELEMENT choices (choice+) >
  47. <!-- each choice element specifies one possible value -->
  48. <!ELEMENT choice EMPTY >
  49. <!ATTLIST choice value CDATA #REQUIRED >
  50. <!-- aliases is only allowed for keys with enumerated type or with choices -->
  51. <!ELEMENT aliases (alias+) >
  52. <!-- each alias element specifies an alias for one of the possible values -->
  53. <!ELEMENT alias EMPTY >
  54. <!ATTLIST alias value CDATA #REQUIRED >
  55. <!ELEMENT child EMPTY >
  56. <!ATTLIST child name CDATA #REQUIRED
  57. schema CDATA #REQUIRED >
  58. <!ELEMENT override (#PCDATA) >
  59. <!ATTLIST override name CDATA #REQUIRED
  60. l10n CDATA #IMPLIED
  61. context CDATA #IMPLIED >