Update location of POSIX Standard
[linux_from_scratch.git] / stylesheets / wget-list.xsl
blob0b9da993276913acbb88093081a25c05a35a18cd
1 <?xml version='1.0' encoding='ISO-8859-1'?>
3 <!-- Create a list of upstream URLs for packages and patches to be used
4 with wget. -->
6 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7 version="1.0">
9 <xsl:output method="text"/>
11 <xsl:template match="/">
12 <xsl:apply-templates select="//ulink"/>
13 </xsl:template>
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>
34 </xsl:stylesheet>