1 <?xml version='
1.0' encoding='ISO-
8859-
1'
?>
3 <!-- Create a list of upstream URLs for packages and patches to be used
6 <xsl:stylesheet xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform"
9 <xsl:output method=
"text"/>
11 <xsl:template match=
"/">
12 <xsl:apply-templates select=
"//ulink"/>
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
20 contains(@url, '.tgz') or
21 contains(@url, '.patch')) and
22 not(ancestor-or-self::*/@condition = 'pdf')">
24 <xsl:when test=
"contains(@url,'?download')">
25 <xsl:value-of select=
"substring-before(@url,'?download')"/>
28 <xsl:value-of select=
"@url"/>
31 <xsl:text>
</xsl:text>