On 02/12/2011 08:02, Roelof Wobben wrote:
<xsl:when test="$page='1'">number(1+$page*2)</xsl:when>
the content of xsl:when is like the content of any other part of the
template just copied to the output as text or literal result elements.
If you want to evaluate an xpath you need to put it in a select
expression, in a xsl:value-of most likely, in XSLT 1
<xsl:when test="$page='1'"><xsl:value-of select="1+$page*2"/></xsl:when>
There is still no evidence that you actually need any variables at all.
Do you really need to pass any parameter to your template? the $page
parameter is in scope for the entire stylesheet so you could just use
1+$page*2 at whatever point you need that number, and avoid all the
complication.
David
--
google plus: https:/profiles.google.com/d.p.carlisle
________________________________________________________________________
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>
--~--