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

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: External DTD & namespaces

[ Lists Home | Date Index | Thread Index ]
  • From: David Brownell <db@Eng.Sun.COM>
  • To: Andy Malakov <amalakov@ptc.com>
  • Date: Sun, 20 Dec 1998 11:12:57 -0800

Andy Malakov wrote:
> 
> I want to use namespace prefixes in element declarations of the
> external/internal DTDs.
> For example, I want to define namespace "myns" and use with each DTD
> declaration:
> 
> <!ELEMENT myns:point (int, int)>
> 
> Where I should put "myns" namespace declaration?

<!ATTLIST myns:point
	xmlns:myns CDATA #FIXED
		"http://www.ptc.com/xml/something/goes/here"
	>

Keep in mind that if you put this in some external parameter
entity (e.g. the unnamed one in <!DOCTYPE foo SYSTEM "xyz.dtd">
some nonvalidating parsers will give you a hard time.  So you
may want to consider _also_ putting the declaration into your
instances:

	<myns:point xmlns:myns="http://www.ptc.com/..." ...>
		<int>42</int>
		<int>-66</int>
	</myns:point>

Where namespaces and DTDs really clash is when you might want
to change the prefix ("myns") associated with some URI.  But
namespaces actually do something that DTDs can't do -- they tie
individual elements (and attributes, though sadly not PIs) to
a specific entity, so semantics can be tied to something more
useful than an application's convention about what a TITLE is.
(Real estate vs novels, etc.)

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





 

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

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