1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?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.downloads">../../../</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:text> rm -f *.patch &&

</xsl:text>
<xsl:apply-templates/>
<xsl:text>
 chgrp lfswww *.patch &&
</xsl:text>
<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> cp </xsl:text>
<xsl:value-of select="$deep.to.downloads"/>
<xsl:text>downloads/</xsl:text>
<xsl:if test="contains (@url, '-')">
<xsl:variable name="cut" select="translate (@url, '0123456789', '2222222222')"/>
<xsl:choose>
<xsl:when test="contains ($cut, ',')">
<xsl:value-of select="substring-before (substring-after($cut, $links.directory), ',2')"/>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test="contains ($cut, '-src-2')">
<xsl:value-of select="substring-before (substring-after($cut, $links.directory), '-src-2')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="substring-before (substring-after($cut, $links.directory), '-2')"/>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<xsl:text>/</xsl:text>
<xsl:value-of select="substring-after(@url, $links.directory)"/>
<xsl:text> . &&
</xsl:text>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
|