source: stylesheets/patcheslist.xsl@ 35c4fa3

Last change on this file since 35c4fa3 was 11b36cd, checked in by Matthew Burgess <matthew@…>, 20 years ago

Upgraded to lfs-xsl-0.9 (Manuel)

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/b5_1/BOOK@3518 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 602 bytes
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2
3<!-- Version 0.9pre1 - Manuel Canales Esparcia <macana@lfs-es.org>
4Based on the original patcheslist.xsl posted by Matthew Burgess -->
5
6<!-- This also work again BLFS -->
7
8<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
9 version="1.0">
10
11 <xsl:output method="text"/>
12
13 <xsl:template match="//text()">
14 <xsl:text/>
15 </xsl:template>
16
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>
23
24</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.