From e10d29fcf1c30305c23dbb8fe4170fd98c50451f Mon Sep 17 00:00:00 2001
From: andrug <andrug@localhost>
Date: Mon, 07 Jul 2008 13:49:15 +0000
Subject: [PATCH] QA : system test: change order for message tag

---
 opends/tests/system-tests/report/clientDetails.xsl |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opends/tests/system-tests/report/clientDetails.xsl b/opends/tests/system-tests/report/clientDetails.xsl
index 624609e..ea9ce83 100644
--- a/opends/tests/system-tests/report/clientDetails.xsl
+++ b/opends/tests/system-tests/report/clientDetails.xsl
@@ -17,9 +17,9 @@
       ( id <xsl:value-of select="@id" /> )
     </h1>
     <p>
+      <xsl:apply-templates select="message"/>
       <xsl:apply-templates select="instance"/>
       <xsl:apply-templates select="operation"/>
-      <xsl:apply-templates select="message"/>
       <xsl:apply-templates select="operationResult"/>
     </p>
     </body>
@@ -29,12 +29,12 @@
   <!-- ============= instance node =============== -->
   <xsl:template match="instance">
     <xsl:variable name="iName" select="normalize-space(@name)"/>
+    <xsl:apply-templates select="message"/>
     <ul><li>
       Instance <font color="blue"><b><xsl:value-of select="$iName"/></b></font>
       <xsl:apply-templates select="step"/>
       <xsl:apply-templates select="operation"/>
     </li></ul>
-    <xsl:apply-templates select="message"/>
   </xsl:template>
 
   <!-- ============= step node =============== -->

--
Gitblit v1.10.0