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

Re: Trying to build a schema and add a namespace

Subject: Re: Trying to build a schema and add a namespace
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 20 Apr 2005 17:11:48 +0100
url xmlns
  A revised stylesheet with one entry
  being for the default namespace (no prefix) would be useful.

Note that attributes have a different meaning for no-prefix than
elements, so to include that case you have to use element nodes rather
than attribute nodes to generate the namespaces, but basically it's as
before


<namespaces>
<namespace prefix="xsd">schema ns</namespace>
<namespace prefix="">defaulttns</namespace>
<namespace prefix="yy">ACORD default URL</namespace>
<namespace prefix="acord-doc">ACORD doc URL</namespace>
<namespace prefix="jag">ACORD JAG URL</namespace>
</namespaces>





<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                   version="1.0"
                   xmlns:saxon="http://icl.com/saxon"
                   exclude-result-prefixes="saxon"
             xmlns:xsd="schema ns"
             >
<xsl:output method="xml" indent="yes" />

<xsl:template match="/">

 <xsd:schema>

<xsl:variable name="rtf">
<xsl:for-each select="/namespaces/namespace">
      <xsl:variable name="x"><xsl:if test="string(@prefix)">:</xsl:if></xsl:variable>
      <xsl:element name="{@prefix}{$x}foo" namespace="{.}"/>
</xsl:for-each>
</xsl:variable>
<xsl:copy-of select="saxon:node-set($rtf)/*/namespace::*"/>
</xsd:schema>

</xsl:template>
</xsl:stylesheet>


$ saxon ns2.xml ns2.xsl
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema
   xmlns:xsd="schema ns"
  xmlns="defaulttns"
  xmlns:yy="ACORD default URL"
  xmlns:acord-doc="ACORD doc URL"
  xmlns:jag="ACORD JAG URL"/>

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread

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