[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: for-each issue

Subject: Re: for-each issue
From: "Z W" <mpc8250@xxxxxxxxx>
Date: Thu, 27 Mar 2008 03:39:59 -0700
Re:  for-each issue
Mukal
Want to acknowledge your help there.
Thank you for that help.

On Thu, Mar 27, 2008 at 3:32 AM, Mukul Gandhi <gandhi.mukul@xxxxxxxxx> wrote:
> On 3/27/08, Z W <mpc8250@xxxxxxxxx> wrote:
> > <td>
> > <xsl:variable name="cib_time_duration">
> > <xsl:for-each select="document($currentJTL)/testResults/*[not(@label =
> > preceding::*/@label)]">
> > <xsl:variable name="minTimeStamp_prev_2">
> >        <xsl:call-template name="find_minTimeStamp_prev_2">                     <xsl:with-param
> > name="nodes" select="/testResults/sampleResult" />
> >        </xsl:call-template>
> > </xsl:variable>
> >
> > <xsl:variable name="maxTimeStamp_prev_2">
> >        <xsl:call-template name="find_maxTimeStamp_prev_2">
> >        <xsl:with-param name="nodes" select="/testResults/sampleResult" />
> >                </xsl:call-template>
> > </xsl:variable>
> >
> > <xsl:variable name="timeSpan" select="$maxTimeStamp_prev_2
> > -$minTimeStamp_prev_2" />
> > <xsl:value-of select="$timeSpan"/>
> > </xsl:for-each>
> > </xsl:variable>
> >
> > <xsl:value-of select="$cib_time_duration"/>
> >
> > </td>
> >
> > But I get the $cib_time_duration printed 3 times. How do I get it to
> > print once ?
>
> This might solve the problem
>
> <xsl:variable name="cib_time_duration">
>   <xsl:for-each select="document($currentJTL)/testResults/*[not(@label =
>             preceding::*/@label)]">
>      <!-- keep the code here
>            as it is
>      -->
>      <xsl:if test="position() = last()">
>         <xsl:value-of select="$timeSpan"/>
>      </xsl:if>
>   </xsl:for-each>
> </xsl:variable>
>
> <xsl:value-of select="$cib_time_duration" />
>
> Though I have a feeling, you can structure the code even better.
>
>
> --
> Regards,
> Mukul Gandhi

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.