This commit was manufactured by cvs2svn to create tag 'v5_1_1'.
[linux_from_scratch.git] / BOOK / stylesheets / patcheslist.xsl
blob50456bc107bf0f74711ec60302bb4c15e6223723
1 <?xml version='1.0' encoding='ISO-8859-1'?>
3 <!-- Version 0.9pre1 - Manuel Canales Esparcia <macana@lfs-es.org>
4 Based on the original patcheslist.xsl posted by Matthew Burgess -->
6 <!-- This also work again BLFS -->
8 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
9 version="1.0">
11 <xsl:output method="text"/>
13 <xsl:template match="//text()">
14 <xsl:text/>
15 </xsl:template>
17 <xsl:template match="//ulink">
18 <xsl:if test="contains(@url, '.patch')">
19 <xsl:value-of select="@url"/>
20 <xsl:text>&#x0a;</xsl:text>
21 </xsl:if>
22 </xsl:template>
24 </xsl:stylesheet>