[jboss-svn-commits] JBL Code SVN: r33816 - labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/resources/xsl.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Jul 9 14:44:21 EDT 2010
Author: whitingjr
Date: 2010-07-09 14:44:21 -0400 (Fri, 09 Jul 2010)
New Revision: 33816
Added:
labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/resources/xsl/failed-run-problem-iteration-sorter.xsl
Log:
oeuoeu
Copied: labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/resources/xsl/failed-run-problem-iteration-sorter.xsl (from rev 33814, labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/resources/failed-run-problem-iteration-sorter.xsl)
===================================================================
--- labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/resources/xsl/failed-run-problem-iteration-sorter.xsl (rev 0)
+++ labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/resources/xsl/failed-run-problem-iteration-sorter.xsl 2010-07-09 18:44:21 UTC (rev 33816)
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+ <xsl:template match="/">
+ <xsl:apply-templates />
+ </xsl:template>
+
+ <xsl:template match="summary">
+ <xsl:copy>
+ <xsl:apply-templates />
+ </xsl:copy>
+ </xsl:template>
+
+ <xsl:template match="interaction">
+ <xsl:copy>
+ <xsl:for-each select="step">
+ <xsl:sort select="messagesIn/deliveryTime/@avg" order="descending"/>
+ <xsl:copy/>
+ </xsl:for-each>
+ </xsl:copy>
+ </xsl:template>
+</xsl:stylesheet>
+
+
More information about the jboss-svn-commits
mailing list