List of possible choices in a DTD

Rick Jelliffe ricko at allette.com.au
Mon Nov 10 14:12:44 GMT 1997


Is this what you are asking?

USING ELEMENT TYPES
-------------------

In standard SGML you can select days using parameter 
entities like this:

<!ENTITY % days  " ( sunday | monday | tuesday | wednesday | thursday |
	friday | saturday ) " >
<!ELEMENT day-choice  %days; >
<!ELEMENT %days;  EMPTY >


In XML, I think you may have to give a different ELEMENT declaration
for each day (I cannot remember what was decided, sorry.

USING ATTRIBUTES
----------------

<!ENTITY % days  " ( sunday | monday | tuesday | wednesday | thursday |
	friday | saturday ) " >
<!ELEMENT day-choice EMPTY>
<!ATTLIST day-choice
	day  %days;  #REQUIRED >

Again, in XML I think you may have to dereference the entity yourself.
(Even if you don't, it is probably good practise since parameter entities
will not be the first things implemented in beta XML parsers.)

<!ELEMENT day-choice EMPTY>
<!ATTLIST day-choice
	day  ( sunday | monday | tuesday | wednesday | thursday |
	friday | saturday ) #REQUIRED >


Rick Jelliffe


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)




More information about the Xml-dev mailing list