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

Help with Namespace Defaulting

  • From: Mark Tucker <mct@f...>
  • To: xml-dev@i...
  • Date: Mon, 31 Aug 1998 11:06:18 -0500 (EST)

element bk


Hello, 
	Can I define xmlns = "....." as a fixed attribute of an
element?

Suppose I have Person_Data (PD) and Book (BK), both of which would
like to use an element called NAME.  To keep the XML Elements unique,
I could use namespaces to keep PD:NAME distinct from BK:NAME.


MY QUESTION: 

	Can I use NAMESPACE defaulting via a fixed xmlns attribute
(as seen in the second example) to get rid of most of my namespace
prefixes?

=======================: With Namespaces :======================
<HTML xmlns:PD="http://tucker.rg.iupui.edu/Person_Data"
      xmlns:PN="http://tucker.rg.iupui.edu/Person_Name"
      xmlns:BK="http://tucker.rg.iupui.edu/Book">

<!ELEMENT PD:PERSON_DATA ( PD:NAME PD:AGE )/>
<!ELEMENT PD:NAME (PN:FIRST PN:LAST) />
<!ELEMENT PN:FIRST (#pcdata) />
<!ELEMENT PN:LAST (#pcdata) />
<!ELEMENT PD:AGE (#pcdata) />

<!ELEMENT BK:BOOK -- (BK:NAME BK:SUMMARY)/>
<!ELEMENT BK:NAME - - (#PCDATA) />
<!ELEMENT BK:SUMMARY - - (#PCDATA) />


<!ELEMENT OUTER (PD:NAME BK:BOOK> />


<OUTER>
  <PD:PERSON_DATA>
      <PD:NAME>
          <PN:FIRST>John</PN:FIRST>
          <PN:LAST>Doe</PN:LAST>
      </PD:NAME>	
    <PD:AGE>50</PD:AGE>
  </PD:PERSON_DATA>
  
  <BK:BOOK>
      <BK:NAME>Xml Made Easy</BK:NAME>
      <BK:SUMMARY>Now its all clear</BK:SUMMARY>
  </BK:BOOK>    
</OUTER>

</HTML>


========================: With Namespace Defaulting :====================



<HTML xmlns:PD="http://tucker.rg.iupui.edu/Person_Data"
      xmlns:PN="http://tucker.rg.iupui.edu/Person_Name"
      xmlns:BK="http://tucker.rg.iupui.edu/Book">

<!ELEMENT PD:PERSON_DATA ( PD:NAME PD:AGE )/>
<!ATTRLIST PD:PERSON_DATA 
	xmlns "http://tucker.rg.iupui.edu/Person_Data" #FIXED /?

<!ELEMENT PD:NAME (#pcdata) />

<!ATTRLIST PD:NAME
	xmlns "http://tucker.rg.iupui.edu/Person_Name" #FIXED /?

<!ELEMENT PN:FIRST (#pcdata) />
<!ELEMENT PN:LAST (#pcdata) />
<!ELEMENT PD:AGE (#pcdata) />

<!ELEMENT BK:BOOK -- (BK:NAME BK:SUMMARY)/>
<!ELEMENT BK:NAME - - (#PCDATA) />
<!ELEMENT BK:SUMMARY - - (#PCDATA) />
<!ATTRLIST BK:BOOK
	xmlns "http://tucker.rg.iupui.edu/Book" #FIXED /?


<!ELEMENT OUTER (PD:PERSON_DATA BK:BOOK> />

<OUTER>
  <PD:PERSON_DATA>
      <NAME>
          <FIRST>John</FIRST>
          <LAST>Doe</LAST>
      </NAME>	
    <AGE>50</AGE>
  </PD:PERSON_DATA>
  
  <BK:BOOK>
      <NAME>Xml Made Easy</NAME>
      <SUMMARY>Now its all clear</SUMMARY>
  </BK:BOOK>    
</OUTER>

</HTML>



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.