You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by rf...@apache.org on 2008/09/05 17:21:45 UTC

svn commit: r692458 - /lenya/trunk/src/modules/profiling/xslt/profile2xhtml.xsl

Author: rfrovarp
Date: Fri Sep  5 08:21:45 2008
New Revision: 692458

URL: http://svn.apache.org/viewvc?rev=692458&view=rev
Log:
Sort by average time. I couldn't see any pattern for the sort via @time.

Modified:
    lenya/trunk/src/modules/profiling/xslt/profile2xhtml.xsl

Modified: lenya/trunk/src/modules/profiling/xslt/profile2xhtml.xsl
URL: http://svn.apache.org/viewvc/lenya/trunk/src/modules/profiling/xslt/profile2xhtml.xsl?rev=692458&r1=692457&r2=692458&view=diff
==============================================================================
--- lenya/trunk/src/modules/profiling/xslt/profile2xhtml.xsl (original)
+++ lenya/trunk/src/modules/profiling/xslt/profile2xhtml.xsl Fri Sep  5 08:21:45 2008
@@ -76,7 +76,7 @@
         </xsl:when>
         <xsl:when test="$sort = 'time'">
           <xsl:apply-templates select="profile:pipeline">
-            <xsl:sort select="@time" data-type="number"/>
+            <xsl:sort select="profile:average/@time" data-type="number"/>
           </xsl:apply-templates>
         </xsl:when>
         <xsl:when test="$sort = 'count'">



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org