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

Re: DTD Question

  • From: David Brownell <db@E...>
  • To: "Samuel R. Blackburn" <sblackbu@e...>
  • Date: Sat, 17 Oct 1998 10:31:58 -0700

samuel r. blackburn
Samuel R. Blackburn wrote:
> 
> <NAME>
>   <FIRST>Sam</FIRST>
>   <LAST>Blackburn</LAST>
> </NAME>
> <ROUTE>
>    <FIRST>99.409</FIRST>
>    <LAST>2091.7785</LAST>
> </ROUTE>
> 
> Is it possible in DTD to say that NAME.FIRST is a string
> and ROUTE.FIRST is a number?

The DTD doesn't represent data typing; that's the job of
some component that interprets information encoded in XML.
Your overloading of a "flat" namespace makes that hard.

You could have chosen other validatable ways to do this:

  <NAME>
	<NAME.FIRST>Sam</NAME.FIRST>
	...</NAME>
  <ROUTE>
	<ROUTE.FIRST>99.409</ROUTE.FIRST>
	...</ROUTE>

Or with namespaces (the "xmlns:" decarations go best in
the DTD, IMHO):

  <NAME xmlns:NAME=".../name-rules">
	<NAME:FIRST>Sam</NAME:FIRST>
	... </NAME>
  <ROUTE xmlns:ROUTE=".../route-rules">
	<ROUTE:FIRST>99.409</ROUTE:FIRST>
	...</ROUTE>

Or even just have the rules that applications must follow
implicitly, based on context (and probably making validation
hard/impossible over time).  I'd use an explicit approach,
since context is so easily lost.

- Dave

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...)


  • References:

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.