Subject: RE: Consolidating xpath expressions....
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Mon, 1 Dec 2003 12:40:32 -0000
|
>
>
> Thanks for the answer, but could you explain what that is
> doing? I've not
> come across that syntax before.
>
It's called a path expression. If you've never come across path
expressions before, I suggest you do some reading.
Michael Kay
>
> 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
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|