User: kimptoc Date: 01/05/26 03:41:37 Modified: src/build/stylesheets summary1.xsl summary2.xsl Log: added time of test run to reports - helps to see file is current Revision Changes Path 1.2 +7 -0 jbosstest/src/build/stylesheets/summary1.xsl Index: summary1.xsl =================================================================== RCS file: /cvsroot/jboss/jbosstest/src/build/stylesheets/summary1.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- summary1.xsl 2001/05/26 08:09:52 1.1 +++ summary1.xsl 2001/05/26 10:41:37 1.2 @@ -2,6 +2,8 @@ <xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> +<xsl:param name="thedate">undefined</xsl:param> + <xsl:output method='text'/> <xsl:template match='/'> @@ -26,6 +28,11 @@ Failures: <xsl:value-of select="$numberOfFailures"/> -------------------------------------------- + +[time of test: <xsl:value-of select="$thedate"/>] + +-------------------------------------------- + DETAILS OF ERRORS 1.2 +6 -0 jbosstest/src/build/stylesheets/summary2.xsl Index: summary2.xsl =================================================================== RCS file: /cvsroot/jboss/jbosstest/src/build/stylesheets/summary2.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- summary2.xsl 2001/05/26 08:09:52 1.1 +++ summary2.xsl 2001/05/26 10:41:37 1.2 @@ -1,7 +1,10 @@ <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> +<xsl:param name="thedate">undefined</xsl:param> + <xsl:output method='html' indent='yes' doctype-public='-//W3C//DTD HTML 3.2 FINAL//EN'/> + <xsl:template match="/"> <xsl:variable name="numberOfTests" select="sum(//@tests)"/> @@ -30,6 +33,8 @@ <i>The tests are run around 2:30am GMT each day on <a href="http://lubega.com">lubega.com</a> - so expect the files to be empty/half complete around that time</i> +<p/> +Date of last run: <xsl:value-of select="$thedate"/> <ul> <li><a href='#tests'>Test Results</a></li> <li><a href='#javadocs'>Javadocs of the JBoss modules</a></li> @@ -75,6 +80,7 @@ </tr> <xsl:for-each select="//testsuite"> + <xsl:sort select="@name"/> <tr> <td><a><xsl:attribute name='href'>TEST-<xsl:value-of select='@name'/>.xml</xsl:attribute> <xsl:value-of select='@name'/> _______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development
