123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version='1.0' encoding='ISO-8859-1'?>
- <!-- This work against BLFS also -->
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0">
- <xsl:output method="text"/>
- <xsl:param name="links.directory">lfs/cvs/unstable/</xsl:param>
- <xsl:param name="deep.to.dowloads">../../../</xsl:param>
- <xsl:template match="/">
- <xsl:text>#! /bin/bash
- cd /home/httpd/www.linuxfromscratch.org/patches/</xsl:text>
- <xsl:value-of select="$links.directory"/>
- <xsl:text> &&

</xsl:text>
- <xsl:apply-templates/>
- <xsl:text>
 exit</xsl:text>
- </xsl:template>
- <xsl:template match="//text()">
- <xsl:text/>
- </xsl:template>
- <xsl:template match="//ulink">
- <xsl:if test="contains(@url, '.patch') and contains(@url, 'linuxfromscratch')">
- <xsl:text> ln -s </xsl:text>
- <xsl:value-of select="$deep.to.dowloads"/>
- <xsl:text>dowloads/</xsl:text>
- <xsl:value-of select="substring-before (substring-after(@url, $links.directory), '-')"/>
- <xsl:text>/</xsl:text>
- <xsl:value-of select="substring-after(@url, $links.directory)"/>
- <xsl:text> &&
</xsl:text>
- </xsl:if>
- </xsl:template>
- </xsl:stylesheet>
|