patcheslist.xsl 477 B

123456789101112131415161718192021
  1. <?xml version='1.0' encoding='ISO-8859-1'?>
  2. <!-- This also work again BLFS -->
  3. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. version="1.0">
  5. <xsl:output method="text"/>
  6. <xsl:template match="//text()">
  7. <xsl:text/>
  8. </xsl:template>
  9. <xsl:template match="//ulink">
  10. <xsl:if test="contains(@url, '.patch')">
  11. <xsl:value-of select="@url"/>
  12. <xsl:text>&#x0a;</xsl:text>
  13. </xsl:if>
  14. </xsl:template>
  15. </xsl:stylesheet>