source: stylesheets/patcheslist.xsl@ c059c37

6.0
Last change on this file since c059c37 was c059c37, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

patcheslist.xsl: skipped pdf truncated links.

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

  • Property mode set to 100644
File size: 2.5 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2<!DOCTYPE xsl:stylesheet [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6
7<!-- To work against BLFS some changes are needed -->
8
9<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10 version="1.0">
11
12 <xsl:output method="text"/>
13
14 <xsl:param name="links.directory">
15 <xsl:value-of select="substring-after('&patches-root;', 'patches/')"/>
16 </xsl:param>
17
18 <xsl:template match="/">
19 <xsl:text>#! /bin/bash&#x0a;</xsl:text>
20 <xsl:text>&#x0a; cd /home/httpd/</xsl:text>
21 <xsl:value-of select="substring-after('&patches-root;', 'http://')"/>
22 <xsl:text> &amp;&amp;&#x0a;&#x0a;</xsl:text>
23 <xsl:text> rm -f *.patch &amp;&amp;&#x0a;&#x0a;</xsl:text>
24 <xsl:apply-templates/>
25 <xsl:text>&#x0a; chgrp lfswww *.patch &amp;&amp;&#x0a;</xsl:text>
26 <xsl:text>&#x0a; exit&#x0a;</xsl:text>
27 </xsl:template>
28
29 <xsl:template match="//text()">
30 <xsl:text/>
31 </xsl:template>
32
33 <xsl:template match="//ulink">
34 <xsl:if test="contains(@url, '.patch') and contains(@url, '&patches-root;')">
35 <xsl:choose>
36 <xsl:when test="ancestor-or-self::*/@condition = 'pdf'"/>
37 <xsl:otherwise>
38 <xsl:text> cp </xsl:text>
39 <xsl:text>/home/httpd/</xsl:text>
40 <xsl:value-of select="substring-before (substring-after ('&patches-root;', 'http://'), $links.directory)"/>
41 <xsl:text>downloads/</xsl:text>
42 <xsl:if test="contains (@url, '-')">
43 <xsl:variable name="cut" select="translate (@url, '0123456789', '2222222222')"/>
44 <xsl:choose>
45 <xsl:when test="contains ($cut, ',')">
46 <xsl:value-of select="substring-before (substring-after($cut, $links.directory), ',2')"/>
47 </xsl:when>
48 <xsl:otherwise>
49 <xsl:choose>
50 <xsl:when test="contains ($cut, '-src-2')">
51 <xsl:value-of select="substring-before (substring-after($cut, $links.directory), '-src-2')"/>
52 </xsl:when>
53 <xsl:otherwise>
54 <xsl:value-of select="substring-before (substring-after($cut, $links.directory), '-2')"/>
55 </xsl:otherwise>
56 </xsl:choose>
57 </xsl:otherwise>
58 </xsl:choose>
59 </xsl:if>
60 <xsl:text>/</xsl:text>
61 <xsl:value-of select="substring-after(@url, $links.directory)"/>
62 <xsl:text> . &#x0a;</xsl:text>
63 </xsl:otherwise>
64 </xsl:choose>
65 </xsl:if>
66 </xsl:template>
67
68</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.