[jboss-svn-commits] JBL Code SVN: r33814 - in labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main: resources and 1 other directory.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Jul 9 14:42:43 EDT 2010
Author: whitingjr
Date: 2010-07-09 14:42:42 -0400 (Fri, 09 Jul 2010)
New Revision: 33814
Added:
labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/resources/
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/
Log:
Copied: labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/resources (from rev 33684, labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/conf)
Added: 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/failed-run-problem-iteration-sorter.xsl (rev 0)
+++ labs/jbosstm/workspace/whitingjr/sandbox/batch-execution-SPEC-jms2007/src/main/resources/failed-run-problem-iteration-sorter.xsl 2010-07-09 18:42:42 UTC (rev 33814)
@@ -0,0 +1,22 @@
+<?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