Skip to content

Commit

Permalink
Release XLT 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jowerner committed Jun 5, 2023
2 parents 69ea8c4 + 4f20b07 commit ef7a9bf
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 16 deletions.
23 changes: 10 additions & 13 deletions config/xsl/common/sections/head.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

<xsl:param name="projectName" />
<xsl:param name="title" />
<xsl:param name="type" />

<meta charset="utf-8" />
<!-- Min width set because we cannot handle our data size on a smartphone display -->
Expand Down Expand Up @@ -42,18 +41,16 @@
<link rel="icon" href="images/favicon.svg" type="image/svg+xml" />

<style type="text/css">
.chart-group img {
width: <xsl:value-of select="configuration/chartWidth" />px;
height: <xsl:value-of select="configuration/chartHeight" />px;
}

<xsl:if test="$type = 'transactions'">
.chart-group .overview img {
width: <xsl:value-of select="configuration/chartWidth" />px;
height: <xsl:value-of select="configuration/chartHeight * 1.5" />px;
}
</xsl:if>

.chart-group .chart img {
width: <xsl:value-of select="configuration/chartWidth" />px;
height: <xsl:value-of select="configuration/chartHeight" />px;
}
#transaction-summary .chart-group .overview .chart img {
height: <xsl:value-of select="configuration/chartHeight * 1.5" />px;
}
#agents .chart-group .memory .chart img {
height: <xsl:value-of select="configuration/chartHeight * 2.3" />px;
}
</style>

</xsl:template>
Expand Down
1 change: 0 additions & 1 deletion config/xsl/loadreport/transactions.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
<xsl:call-template name="head">
<xsl:with-param name="title" select="'XLT Report - Transactions'" />
<xsl:with-param name="projectName" select="configuration/projectName" />
<xsl:with-param name="type" select="'transactions'"/>
</xsl:call-template>
</head>
<body id="loadtestreport">
Expand Down
2 changes: 1 addition & 1 deletion config/xsl/loadreport/util/agent-chart.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</div>
</div>

<div id="Memory-{$gid}" class="c-tab">
<div id="Memory-{$gid}" class="c-tab memory">
<div class="c-tab-content chart">
<img>
<xsl:attribute name="src">charts/placeholder.webp</xsl:attribute>
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.0.0-beta-2</version>
<version>7.0.0</version>
<packaging>jar</packaging>

<name>XLT</name>
Expand Down

0 comments on commit ef7a9bf

Please sign in to comment.