Subject: complex conditional statement
From: Eric Smith <Eric.Smith@xxxxxxxxxxxx>
Date: Mon, 15 Oct 2001 03:03:33 +0200
|
well complex for my level of XSL anyhow ...
This seems to work for me:
<xsl:template match="section">
<xsl:if test=" $output='retail' and @retail='1' or $output='full' ">
Now I want to do this:
<xsl:if test=" ($output='retail' and @retail='1') or $output='full' or ( $output = 'sale' and section[ancestor::sale])">
condition is true if the variable $output is 'sale' and the current
node - I explicitly named it here but because of the match statement in the line above, this need not be -
has an ancestor called 'sale'
I give up experimenting, ... please suggest correct syntax
thanx
( PS: I threw the parens in - not sure of that plays a role in xpath)
--
Eric Smith - See mail headers for processors used
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|