OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: DTD Question

[ Lists Home | Date Index | Thread Index ]
  • From: David Brownell <db@Eng.Sun.COM>
  • To: "Samuel R. Blackburn" <sblackbu@erols.com>
  • Date: Sat, 17 Oct 1998 10:31:58 -0700

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


  • References:
    • DTD Question
      • From: "Samuel R. Blackburn" <sblackbu@erols.com>



 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS