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

Re: global xsl:variable problem, value not being set

Subject: Re: global xsl:variable problem, value not being set
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 7 Sep 2009 11:22:22 +0100
Re:  global xsl:variable problem
  <xsl:variable name="refName">
      <xsl:value-of select="//meta[@id='judgementNo']/@href" />
  </xsl:variable>


That makes a new temporary document with a root node and a text node
child, which is rather inefficient, you should use teh form with teh
select on teh xsl:variable


  <xsl:variable name="refName"
  select="//meta[@id='judgementNo']/@href" />


which defines refName to be the selected attribute directly.

However that selects the meta element in no-namespace and you want the
element meta in the namespace http://www.metalex.org/1.0 so either set
the xpath default namespace or add
xmlns:m="http://www.metalex.org/1.0" to xsl:stylesheet and then use


  <xsl:variable name="refName"
  select="//m:meta[@id='judgementNo']/@href" />

If you know where teh meta element will be using something more specific
than // woul dbe a good idea as well.


Do you intend to change the namespace of all elements?

      <xsl:template match="*">
              <xsl:element name="{node-name(.)}">

That generates a new element with the same local name, but in teh
default namespace of the stylesheet (which is no namespace in your case)
rather than the defaulr namespace of the source.  If you do not intent
to change namespace, you can write

      <xsl:template match="*">
              <xsl:element name="{node-name(.)}">
                      <xsl:for-each select="@*">
                              <xsl:attribute name="{name(.)}">
                                      <xsl:value-of select="."/>
                              </xsl:attribute>
                      </xsl:for-each>
                      <xsl:apply-templates/>
              </xsl:element>
      </xsl:template>



as

<xsl:template match="*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

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.