The XSL files on the programmerplanet website are for an earlier version of the JTL files.
Have a look in the JMeter extras directory for updated versions. S. On 29/03/06, Travis Cooper <[EMAIL PROTECTED]> wrote: > That didn't seem to help. I found this in the xsl file, but I am not > familiar with these template files so I don't know how to fix it. > > <xsl:template name="min"> > <xsl:param name="nodes" select="/.." /> > <xsl:choose> > <xsl:when test="not($nodes)">NaN</xsl:when> > <xsl:otherwise> > <xsl:for-each select="$nodes"> > <xsl:sort data-type="number" /> > <xsl:if test="position() = 1"> > <xsl:value-of select="number(.)" > /> > </xsl:if> > </xsl:for-each> > </xsl:otherwise> > </xsl:choose> > </xsl:template> > > <xsl:template name="max"> > <xsl:param name="nodes" select="/.." /> > <xsl:choose> > <xsl:when test="not($nodes)">NaN</xsl:when> > <xsl:otherwise> > <xsl:for-each select="$nodes"> > <xsl:sort data-type="number" > order="descending" /> > <xsl:if test="position() = 1"> > <xsl:value-of select="number(.)" > /> > </xsl:if> > </xsl:for-each> > </xsl:otherwise> > </xsl:choose> > </xsl:template> > > It appears that it is just displaying based on the when and not getting > to the otherwise part of the template. I tried taking the choose, when > and otherwise fields out completely, but that didn't work either. > Apparently the test property is being set to not($nodes) does anybody > know why this might be. > > Thanks, > Travis J. Cooper > -----Original Message----- > From: Hoffman, Matthew [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 29, 2006 9:42 AM > To: JMeter Users List; Travis Cooper > Subject: RE: XSLT files > > > Travis, > > I had to go into the .xsl file and remove 'ms' from <xsl:template > name="display-percent"> > <xsl:param name="value" /> > <xsl:value-of select="format-number($value,'0.00%')" /> > </xsl:template> > > <xsl:template name="display-time"> > <xsl:param name="value" /> > <xsl:value-of select="format-number($value,'0')" /> > </xsl:template> > > Try the example above and see if that helps. > > -----Original Message----- > From: Travis Cooper [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 29, 2006 11:36 AM > To: [email protected] > Subject: XSLT files > > I am running my scripts through an Ant build file and turning the output > into an html file using the reports found at > http://www.programmerplanet.org/ant-jmeter/ However, the fields for Min > Time and Max Time are returning NaN (not a number) everytime. Does > anybody know why this is, or how I can fix it. Also, the webpage I got > the reports from say that the detailed version of the report has an > "optional display of response Data in Failure Detail entries" what > exactly does this mean? Does it mean I can see the http response that > was generated due to the request? That would be great, but I don't > think it can do that, because looking through the generated .jtl files I > don't see that information anywhere. > Thanks, > Travis J. Cooper > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

