Re: [xsl] Consolidating xpath expressions....

Subject: Re: [xsl] Consolidating xpath expressions....
From: Oliver Lord <ol@xxxxxxxxxxxxxxx>
Date: Mon, 01 Dec 2003 11:31:01 +0000

Thanks for the answer, but could you explain what that is doing? I've not come across that syntax before.



At 11:22 01/12/2003 +0000, you wrote:
Can someone give me some advice as to how I can change these three lines of
code into a single line??


  <xsl:for-each select="//client[not($clientid) or @ID=$clientid]">
  <xsl:for-each select="descendant-or-self::client">
  <xsl:for-each select="usage[@TOTALSENT > 0]">

just replace xsl:for-each by /


<xsl:for-each select="//client[not($clientid) or @ID=$clientid]/descendant-or-self::client/usage[@TOTALSENT > 0]">


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


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


Current Thread