source: stylesheets/patcheslist.xsl@ 2ec64b3

v5_1_1
Last change on this file since 2ec64b3 was 2ec64b3, checked in by lfs-dev <lfs-dev@…>, 20 years ago

This commit was manufactured by cvs2svn to create tag 'v5_1_1'.

git-svn-id: http://svn.linuxfromscratch.org/LFS/tags/v5_1_1/BOOK@3757 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.