Revision: 909
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=909&view=rev
Author: dbrosius
Date: 2007-09-17 13:15:44 -0700 (Mon, 17 Sep 2007)
Log Message:
-----------
sort
Modified Paths:
--------------
trunk/fb-contrib/etc/bugdescriptions.xsl
Modified: trunk/fb-contrib/etc/bugdescriptions.xsl
===================================================================
--- trunk/fb-contrib/etc/bugdescriptions.xsl 2007-09-16 02:41:19 UTC (rev 908)
+++ trunk/fb-contrib/etc/bugdescriptions.xsl 2007-09-17 20:15:44 UTC (rev 909)
@@ -11,14 +11,17 @@
<h1>fb-contrib: Bug Descriptions</h1>
<table border="1" width="100%">
- <xsl:apply-templates select="BugCode"/>
+ <xsl:for-each select="BugCode">
+ <xsl:sort select="@abbrev"/>
+ <xsl:call-template name="BugCode"/>
+ </xsl:for-each>
</table>
</div>
</body>
</html>
</xsl:template>
- <xsl:template match="BugCode">
+ <xsl:template match="BugCode" name="BugCode">
<xsl:call-template name="Pattern">
<xsl:with-param name="abbrev"><xsl:value-of select="@abbrev"/></xsl:with-param>
</xsl:call-template>
@@ -27,6 +30,7 @@
<xsl:template name="Pattern">
<xsl:param name="abbrev"/>
<xsl:for-each select="//BugPattern[starts-with(@type,$abbrev)]">
+ <xsl:sort select="."/>
<tr><td><b><xsl:value-of select="@type"/></b></td></tr>
<xsl:variable name="desc1"><xsl:value-of select="normalize-space(Details/text())"/></xsl:variable>
<xsl:variable name="desc2"><xsl:value-of select="substring($desc1, 9)"/></xsl:variable>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|