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

Re: parser for xml-data?

  • From: Paul Prescod <papresco@t...>
  • To: xml-dev@i...
  • Date: Thu, 21 May 1998 07:11:17 -0400

zyx xml
Charles Frankston wrote:
> 
> DTDs are not well-equipped to handle namespaces.  It can technically be
> done: for example, you could allow your outer DTD to have 'ANY' content.

This example can be done in DTD syntax in the same way that you do it with
namespaces. In fact, namespaces were specifically designed to not break
validation. (also, note that the ns pseudo-attribute is supposed to be a
URL)
 
> XML-Data schemas are designed to integrate with namespaces:
> 
> <!-- Schema for xyz namespace -->
> <elementType id="a">
>   <string/>
> </elementType>
> 
> <!-- Schema for zyx namespace (in a separate file) -->
> <?xml:namespace ns="xyz" prefix="x"?>
> <elementType id="b">
>    <element type="x:a">
> </elementType>
> 
> <!-- Instance file -->
> <?xml:namespace ns="zyx" prefix="z"?>
> <?xml:namespace ns="xyz" prefix="x"?>
> <z:b>
>   <x:a/>
> </z:b>

xyz.dtd:
<!ELEMENT xyz:a (#PCDATA)>

zyx.dtd:
<!ELEMENT zyx:b (xyz:a)>

instance.xml:
<?xml:namespace ns="zyx.dtd" prefix="zyx"?>
<?xml:namespace ns="xyz.dtd" prefix="xyz"?>
<zyx:b>
<xyz:a>
</xyz:a>
</zyx:b>

You don't need "ANY" to use namespaces.
 
> The ns, prefix, and src parameters to a namespace PI look a lot like
> attributes (although they are not in a formal sense).  Since attributes in
> XML do not have to be in a particular order, it would certainly be
> surprising for people to discover that attributes in a namespace have to be
> a particular order.  You're suggesting that the syntax be made harder to use
> in order to make the productions easier to author.  I think this is a bad
> tradeoff.

Note that the XML declaration has a required order of pseudo-attribute
occurrence. It would be best if the XML-family of language were
consistent.

[23]  XMLDecl ::=  '<?xml' VersionInfo EncodingDecl? SDDecl? S? '?>' 
 
 Paul Prescod  - http://itrc.uwaterloo.ca/~papresco

"A writer is also a citizen, a political animal, whether he likes it or 
not. But I do not accept that a writer has a greater obligation 
to society than a musician or a mason or a teacher. Everyone has
a citizen's commitment."  - Wole Soyinka, Africa's first Nobel Laureate

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


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.