Skip to content

Commit

Permalink
Release XLT 7.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jowerner committed Jul 21, 2023
2 parents f91f3a2 + 1ceea18 commit c00d3ef
Show file tree
Hide file tree
Showing 4 changed files with 284 additions and 403 deletions.
44 changes: 32 additions & 12 deletions config/xsl/loadreport/util/timer-summary-row.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,40 @@
<xsl:value-of select="format-number(count, '#,##0')"/>
</td>

<!-- count per sec -->
<td class="value number">
<xsl:value-of select="format-number(countPerSecond, '#,##0.0')"/>
</td>
<xsl:choose>
<xsl:when test="$type = 'request'">
<!-- distinct -->
<td class="value number">
<!-- value not available in the summary element -->
</td>

<!-- count per hour -->
<td class="value number">
<xsl:value-of select="format-number(countPerHour, '#,##0')"/>
</td>
<!-- count per sec -->
<td class="value number">
<xsl:value-of select="format-number(countPerSecond, '#,##0.0')"/>
</td>

<!-- count per day -->
<td class="value number">
<xsl:value-of select="format-number(countPerDay, '#,##0')"/>
</td>
<!-- count per hour -->
<td class="value number">
<xsl:value-of select="format-number(countPerHour, '#,##0')"/>
</td>
</xsl:when>
<xsl:otherwise>
<!-- count per sec -->
<td class="value number">
<xsl:value-of select="format-number(countPerSecond, '#,##0.0')"/>
</td>

<!-- count per hour -->
<td class="value number">
<xsl:value-of select="format-number(countPerHour, '#,##0')"/>
</td>

<!-- count per day -->
<td class="value number">
<xsl:value-of select="format-number(countPerDay, '#,##0')"/>
</td>
</xsl:otherwise>
</xsl:choose>

<!-- errors -->
<td class="value number colgroup1">
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.xceptance</groupId>
<artifactId>xlt</artifactId>
<version>7.1.0</version>
<version>7.1.1</version>
<packaging>jar</packaging>

<name>XLT</name>
Expand Down
Loading

0 comments on commit c00d3ef

Please sign in to comment.