List of possible choices in a DTD
Paul Prescod
papresco at technologist.com
Mon Nov 10 16:12:54 GMT 1997
Thorsten Kitz wrote:
>
> Hey,
>
> I have a really simple problem: I like to define a choice list in a DTD, eg
> for element <Weekdays> a list of possible values like "Monday", "Tuesday",
> etc.
Try this:
<!DOCTYPE WEEKDAYS[
<!ELEMENT WEEKDAYS (WEEKDAY+)>
<!ELEMENT WEEKDAY EMPTY>
<!ATTLIST WEEKDAY DAY
("SUNDAY"|"MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY")
#IMPLIED>
]>
<WEEKDAYS>
<WEEKDAY DAY="SUNDAY"/>
<WEEKDAY DAY="FRIDAY"/>
</WEEKDAYS>
Paul Prescod
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