[Home] [By Thread] [By Date] [Recent Entries]
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@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@i... the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)
|

Cart



