blob: 19eff190cb684ffdb43a148544e75db7c316c76c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:php="http://php.net/xsl" version="1.0">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="@*|node()">
<xsl:copy><xsl:apply-templates select="@*|node()" /></xsl:copy>
</xsl:template>
<xsl:template match="/">
<xsl:copy>
<xsl:apply-templates select="//tr">
<!-- The first cell in a row contains the Bundle-SymblicName -->
<xsl:sort select="td[1]/a/text()"/>
<!-- The third cell in a row contains the Bundle-Version -->
<xsl:sort select="td[3]/text()"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>