source: stylesheets/wget-list.xsl@ 01d06d7

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 7.9 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 01d06d7 was 35c837b, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Fixed wget-list.xsl to handle sourceforge downloads.

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

  • Property mode set to 100644
File size: 1.1 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2
3<!-- Create a list of upstream URLs for packages and patches to be used
4 with wget. -->
5
6<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7 version="1.0">
8
9 <xsl:output method="text"/>
10
11 <xsl:template match="/">
12 <xsl:apply-templates select="//ulink"/>
13 </xsl:template>
14
15 <xsl:template match="ulink">
16 <!-- If some package don't have the predefined strings in their
17 name, the next test must be fixed to match it also. Skip possible
18 duplicated URLs due that may be splitted for PDF output -->
19 <xsl:if test="(contains(@url, '.tar.') or contains(@url, '.tgz')
20 or contains(@url, '.patch')) and
21 not(ancestor-or-self::*/@condition = 'pdf')">
22 <xsl:choose>
23 <xsl:when test="contains(@url,'?download')">
24 <xsl:value-of select="substring-before(@url,'?download')"/>
25 </xsl:when>
26 <xsl:otherwise>
27 <xsl:value-of select="@url"/>
28 </xsl:otherwise>
29 </xsl:choose>
30 <xsl:text>&#x0a;</xsl:text>
31 </xsl:if>
32 </xsl:template>
33
34</xsl:stylesheet>
35
Note: See TracBrowser for help on using the repository browser.