[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: ATTLIST question

  • From: Steve Rowe <sarowe@t...>
  • To: James Gray <jmgii@y...>, xml-dev@l...
  • Date: Thu, 28 Sep 2000 15:49:11 -0400

attlist
James Gray wrote:
> I'm trying to create a DTD that will incorporate an 
> attribute list that will allow  the following case:
> 
>   1. Define optional values for an element
>   2. Require one of the options be present
>   3. Not allow any option other than those listed
> 
> I've scoured my XML books and can't figure out how
> to implement such a case.  An example that is 
> similar is for shirts.  I'd like to have a "shirt"
> element that is only allowed to the values:
> S, M, LG, XL
> 
> If the <shirt> element is filled with "XS" or "XXL",
> I would be able to reject it based on my DTD?

Yes, you would, with a validating parser.  A possible
DTD fragment to get what you want, using enumerated
attribute values and requiring the "size" attribute
for shirt elements:

  <!ELEMENT shirt EMPTY>
  <!ATTLIST shirt size (S|M|LG|XL) #REQUIRED>

Tim Bray says of enumerated attribute values: "You'll
see a lot of this in real-world XML documents" [1]

Hope it helps.
Steve Rowe
MNIS-TextWise Labs

[1] The Annotated XML Specification
    <URL:http://www.xml.com/axml/testaxml.htm>
    In Section 3.3.1 (Attribute Types), at the
    (T)echnical note to the Enumeration validity
    constraint:
    <URL:http://www.xml.com/axml/notes/EnumAttr.html>
    

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.