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

Re: Keeping a map in my XSL

Subject: Re: Keeping a map in my XSL
From: andrew welch <andrew.j.welch@xxxxxxxxx>
Date: Wed, 14 Sep 2005 10:30:39 +0100
Re:  Keeping a map in my XSL
> Note that you can even include the map in the XSLT transformation itself
> assuming that :
>       * You use a namespace (that isn"t the XSLT namespace)
>       * Your map is a top level element of the transformation.
>
> You can then access to your map through document(''):
>
> <xsl:for-each select="document('')/">
>   <!-- You are now at the root of your XSLT transformation
>        and if you use a key, that key will
>        be applied to your transformation -->
>   <xsl:value-of select="key('mappings', $lookup)/@value"/>
> </xsl:for-each>

No need for document(''), just access the variable directly:

<xsl:variable name="map">
  <map>
     <key name="blah" value="blah"/>
     ....
  </map>
</xsl:variable>

and

<xsl:for-each select="$map">
  <xsl:value-of select="key('mappings', $lookup)/@value"/>

The key will only be built for, and applied to the contents of $map

cheers
andrew

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.