xsl-list
[Top] [All Lists]

Re: [xsl] Need help with using lookup table and string translation

2009-05-11 16:48:28
The 'for in' looks like xslt2 function.
well an xpath2 expression, yes.

for $x in key('tr_string-by-str', $key) return (x$/ru, $x/en, .)[1]

but you are in luck here as the for isn't actually doing anything in
that case you could write
key('tr_string-by-str', $key)/(ru,en, current())[1]
in xpath2
or in xslt1 
<xsl:variable nae="x" select="key('tr_string-by-str', $key)"/>
<xsl:choose>
 <xsl:when test="$x/ru">
  <xsl:value-of select="$x/ru"/>
 </xsl:when>
 <xsl:when test="$x/en">
  <xsl:value-of select="$x/en"/>
 </xsl:when>
...

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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--