assets/index.xsl in fief-0.0.2 vs assets/index.xsl in fief-0.0.3

- old
+ new

@@ -140,10 +140,28 @@ </a> <xsl:text> on </xsl:text> <xsl:value-of select="fief/@time"/> <xsl:text>. </xsl:text> <br/> + <xsl:text>It took </xsl:text> + <xsl:variable name="sec" select="round(fief/@msec) div 1000"/> + <xsl:choose> + <xsl:when test="$sec &lt; 60"> + <xsl:value-of select="$sec"/> + <xsl:text>s</xsl:text> + </xsl:when> + <xsl:when test="$sec &lt; 3600"> + <xsl:value-of select="format-number($sec div 60, '#.##')"/> + <xsl:text>min</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="format-number($sec div 3600, '#.#')"/> + <xsl:text>h</xsl:text> + </xsl:otherwise> + </xsl:choose> + <xsl:text> to build the report.</xsl:text> + <br/> <xsl:text>The XML with the data </xsl:text> <a href="index.xml"> <xsl:text>is here</xsl:text> </a> <xsl:text>.</xsl:text> @@ -183,18 +201,19 @@ <xsl:apply-templates select="."/> </xsl:for-each> </tr> </xsl:template> <xsl:template match="m"> - <td class="num"> + <td> + <xsl:attribute name="class"> + <xsl:text>num</xsl:text> + <xsl:if test="@alert"> + <xsl:text> firebrick</xsl:text> + </xsl:if> + </xsl:attribute> <xsl:attribute name="data-sort-value"> <xsl:copy-of select="."/> </xsl:attribute> - <xsl:if test="@alert"> - <xsl:attribute name="class"> - <xsl:text>firebrick</xsl:text> - </xsl:attribute> - </xsl:if> <xsl:copy-of select="."/> </td> </xsl:template> <xsl:template match="node()|@*"> <xsl:copy>