Re: [xsl] Looking up keys in a separate xml file

Subject: Re: [xsl] Looking up keys in a separate xml file
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 6 Jan 2004 14:52:55 GMT
> There may be a better way than saving the @lookup as $key_value,

In XSLT1 that is about the best you can do, this is made simpler in
XPath/XSLT2 drafts, where you can use the key() function after
a step in an Xpath so instead of

 <xsl:for-each select="$desc">
      <xsl:copy-of select="key('

you'll be able to do
 <xsl:copy-of select="document(...)/key(..."

Note however that:
> 
> <xsl:output method='xml' version='1.0' encoding='iso-8859-1'
> omit-xml-declaration="yes" indent="yes"/>

has incompatible options: you can't have latin1 output and omit the xml
declaration (otherwise the result would not be well formed XML.
The XSLt engine will be forced to ignore omit-xml-declaration="yes"
here.

David

-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread