source: stylesheets/wget-list.xsl@ 911e9d5

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 911e9d5 was 911e9d5, checked in by Jeremy Huntwork <jhuntwork@…>, 18 years ago

Don't need the secondary url.

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

  • Property mode set to 100644
File size: 2.4 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2
3<!-- $Id$ -->
4
5<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6 version="1.0">
7
8 <xsl:output method="text"/>
9
10 <!-- The libc model used for HLFS -->
11 <xsl:param name="model" select="glibc"/>
12
13 <xsl:template match="/">
14 <xsl:apply-templates select="//ulink"/>
15 </xsl:template>
16
17 <xsl:template match="ulink">
18 <!-- If some package don't have the predefined strings in their
19 name, the next test must be fixed to match it also. Skip possible
20 duplicated URLs due that may be splitted for PDF output -->
21 <xsl:if test="(ancestor::varlistentry[@condition=$model]
22 or not(ancestor::varlistentry[@condition])) and
23 (contains(@url, '.tar.') or contains(@url, '.tgz')
24 or contains(@url, '.patch')) and
25 not(ancestor-or-self::*/@condition = 'pdf')">
26 <!-- Extract the package name -->
27 <xsl:variable name="package">
28 <xsl:call-template name="package.name">
29 <xsl:with-param name="url" select="@url"/>
30 </xsl:call-template>
31 </xsl:variable>
32 <!-- Extract the directory for that package -->
33 <xsl:variable name="cut"
34 select="translate(substring-after($package, '-'),
35 '0123456789', '0000000000')"/>
36 <xsl:variable name="package2">
37 <xsl:value-of select="substring-before($package, '-')"/>
38 <xsl:text>-</xsl:text>
39 <xsl:value-of select="$cut"/>
40 </xsl:variable>
41 <xsl:variable name="dirname" select="substring-before($package2, '-0')"/>
42 <!-- Write the upstream URLs, except the redirected ones -->
43 <xsl:value-of select="@url"/>
44 <xsl:text> </xsl:text>
45 <xsl:text>&#x0a;</xsl:text>
46 </xsl:if>
47 </xsl:template>
48
49 <xsl:template name="package.name">
50 <xsl:param name="url"/>
51 <xsl:choose>
52 <xsl:when test="contains($url, '/')">
53 <xsl:call-template name="package.name">
54 <xsl:with-param name="url" select="substring-after($url, '/')"/>
55 </xsl:call-template>
56 </xsl:when>
57 <xsl:otherwise>
58 <xsl:choose>
59 <xsl:when test="contains($url, '?')">
60 <xsl:value-of select="substring-before($url, '?')"/>
61 </xsl:when>
62 <xsl:otherwise>
63 <xsl:value-of select="$url"/>
64 </xsl:otherwise>
65 </xsl:choose>
66 </xsl:otherwise>
67 </xsl:choose>
68 </xsl:template>
69
70</xsl:stylesheet>
71
Note: See TracBrowser for help on using the repository browser.