mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 15:12:11 +08:00
5cd0959daa
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2592 af4574ff-66df-0310-9fd7-8a98e5e911e0
26 lines
680 B
XML
26 lines
680 B
XML
<?xml version='1.0' encoding='ISO-8859-1'?>
|
|
|
|
<!-- Get list of patch files from the BLFS Book -->
|
|
<!-- $LastChangedBy$ -->
|
|
<!-- $Date$ -->
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<xsl:output method="text"/>
|
|
|
|
<!-- No text needed -->
|
|
<xsl:template match="//text()">
|
|
<xsl:text/>
|
|
</xsl:template>
|
|
|
|
<!-- Just grab the url from the ulink tags that have .patch in the name -->
|
|
<xsl:template match="//ulink">
|
|
<xsl:if test="contains(@url, '.patch') and contains(@url, 'linuxfromscratch')">
|
|
<xsl:value-of select="@url"/>
|
|
<xsl:text>
</xsl:text>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|