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

Re: HTML2_X.DTD

  • From: lee@s...
  • To: xml-dev@i...
  • Date: Tue, 17 Jun 97 13:30:11 EDT

Re:  HTML2_X.DTD
Richard Light <richard@l...> wrote:

> 1) This is the relevant fragment for the first issue (the '&' content
> models have not been changed):
> 
> <!ELEMENT HEAD      (TITLE & ISINDEX? & BASE?)>
> <!-- +(META|LINK) exception removed -->

Well, I originally wrote the & content model for HTML 2.0.

We had to have a model that reflected the idea that you could have
* zero or one BASE
* zero or one ISINDEX
* exactly one TITLE
* any number of META elements interspersed in any order.

You could try
    META*,
    (
	(ISINDEX, META* TITLE) | (TITLE, META*, ISINDEX?)
    )
    META*

but this is ambiguous in SGML and requires lookahead, because if you get
a META after a TITLE, you don't know if there is goiong to be an ISINDEX
following.

The following might work:

    META*, (
	(ISINDEX, META* TITLE, META*) |
	(TITLE, META*, (ISINDEX, META*)?)
    )

but this doesn't allow for BASE or NEXTID.
I am not sure how to write a content model for HTML's HEAD in XML
that allows for all the things you might want to put in it.

The trouble is that & isn't a very good way to say "I want one of these
anywhere in this soup", because it can connect any two expressions of
arbitrary complexity.

The best thing to do is probably

    <!Element Head
	(TITLE|META|BASE|ISINDEX|NEXTID|....)*
    >

and require the application to do the additional checking.

Lee


xml-dev: A list for W3C XML Developers
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To unsubscribe, send to majordomo@i... the following message;
unsubscribe xml-dev
List coordinator, Henry Rzepa (rzepa@i...)


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.