From 94191c3f6bfa29d75c519803da8de08bc9e7cc7d Mon Sep 17 00:00:00 2001
From: andrug <andrug@localhost>
Date: Fri, 04 Apr 2008 14:52:15 +0000
Subject: [PATCH] add client tag management for the reports
---
opends/tests/system-tests/report/result.xsl | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/opends/tests/system-tests/report/result.xsl b/opends/tests/system-tests/report/result.xsl
index 1a348ba..5d0941f 100755
--- a/opends/tests/system-tests/report/result.xsl
+++ b/opends/tests/system-tests/report/result.xsl
@@ -500,6 +500,23 @@
</li><br/><br/>
</xsl:when>
+ <!--== client node ==-->
+ <xsl:when test="$nodeName = 'client'">
+ <xsl:variable name="clientName" select="normalize-space(@name)"/>
+ <xsl:variable name="clientHost" select="normalize-space(@host)"/>
+ <xsl:variable name="clientId" select="normalize-space(@id)"/>
+ <li>
+ <b>
+ <xsl:value-of select="$phaseName"/> for client
+ <font color="blue"><xsl:value-of select="$clientName"/></font>
+ (id <xsl:value-of select="$clientId"/>)
+ on <xsl:value-of select="$clientHost"/>
+ </b><br/>
+
+ <xsl:call-template name="parseChildPhase" />
+
+ </li><br/><br/>
+ </xsl:when>
<!--== phaseResult node ==-->
<xsl:when test="$nodeName = 'phaseResult'">
</xsl:when>
--
Gitblit v1.10.0