Subject: Re: Consolidating xpath expressions....
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 1 Dec 2003 11:22:42 GMT
|
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
|