This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

complex conditional statement


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]