[ebf8265] | 1 | <?xml version='1.0' encoding='ISO-8859-1'?>
|
---|
| 2 |
|
---|
| 3 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
| 4 | version="1.0">
|
---|
| 5 |
|
---|
| 6 | <xsl:output method="text"/>
|
---|
| 7 |
|
---|
[7072e1f] | 8 | <!-- Do we use a package manager? -->
|
---|
[c9598f2] | 9 | <xsl:param name="pkgmngt" select="'n'"/>
|
---|
| 10 |
|
---|
| 11 | <!-- The system for LFS: sysv of systemd -->
|
---|
| 12 | <xsl:param name="revision" select="'sysv'"/>
|
---|
[7072e1f] | 13 |
|
---|
[ebf8265] | 14 | <xsl:template match="/">
|
---|
[c9598f2] | 15 | <xsl:apply-templates select="//varlistentry[@revision=$revision
|
---|
| 16 | or not(@revision)]//ulink"/>
|
---|
[7072e1f] | 17 | <xsl:if test="$pkgmngt='y'">
|
---|
| 18 | <xsl:apply-templates
|
---|
| 19 | select="document('packageManager.xml')//ulink"/>
|
---|
| 20 | </xsl:if>
|
---|
[ebf8265] | 21 | </xsl:template>
|
---|
| 22 |
|
---|
| 23 | <xsl:template match="ulink">
|
---|
[7072e1f] | 24 | <!-- If some package doesn't have the predefined strings in their
|
---|
[ebf8265] | 25 | name, the next test must be fixed to match it also. Skip possible
|
---|
| 26 | duplicated URLs due that may be splitted for PDF output -->
|
---|
[978286a] | 27 | <xsl:if test="(contains(@url, '.bz2') or contains(@url, '.tar.gz') or
|
---|
[a7e1348] | 28 | contains(@url, '.tgz') or contains(@url, '.patch') or
|
---|
[038678f] | 29 | contains(@url, '.xz') or contains(@url, '.lzma')) and
|
---|
[ebf8265] | 30 | not(ancestor-or-self::*/@condition = 'pdf')">
|
---|
| 31 | <!-- Extract the package name -->
|
---|
| 32 | <xsl:variable name="package">
|
---|
| 33 | <xsl:call-template name="package.name">
|
---|
| 34 | <xsl:with-param name="url" select="@url"/>
|
---|
| 35 | </xsl:call-template>
|
---|
| 36 | </xsl:variable>
|
---|
[f221c2c] | 37 | <!-- Write the upstream URLs, fixing the redirected ones -->
|
---|
[26053c4] | 38 | <xsl:choose>
|
---|
| 39 | <xsl:when test="contains(@url,'?')">
|
---|
[f221c2c] | 40 | <xsl:value-of select="substring-before(@url,'?')"/>
|
---|
[26053c4] | 41 | </xsl:when>
|
---|
| 42 | <xsl:otherwise>
|
---|
| 43 | <xsl:value-of select="@url"/>
|
---|
| 44 | </xsl:otherwise>
|
---|
| 45 | </xsl:choose>
|
---|
| 46 | <!-- Write MD5SUM value -->
|
---|
| 47 | <xsl:text> </xsl:text>
|
---|
[56d8426] | 48 | <xsl:value-of select="../following-sibling::para/literal"/>
|
---|
[ebf8265] | 49 | <xsl:text>
</xsl:text>
|
---|
| 50 | </xsl:if>
|
---|
| 51 | </xsl:template>
|
---|
| 52 |
|
---|
| 53 | <xsl:template name="package.name">
|
---|
| 54 | <xsl:param name="url"/>
|
---|
| 55 | <xsl:choose>
|
---|
[719d0fc] | 56 | <xsl:when test="contains($url, '/') and not (substring-after($url,'/')='')">
|
---|
[ebf8265] | 57 | <xsl:call-template name="package.name">
|
---|
| 58 | <xsl:with-param name="url" select="substring-after($url, '/')"/>
|
---|
| 59 | </xsl:call-template>
|
---|
| 60 | </xsl:when>
|
---|
| 61 | <xsl:otherwise>
|
---|
| 62 | <xsl:choose>
|
---|
| 63 | <xsl:when test="contains($url, '?')">
|
---|
| 64 | <xsl:value-of select="substring-before($url, '?')"/>
|
---|
| 65 | </xsl:when>
|
---|
| 66 | <xsl:otherwise>
|
---|
| 67 | <xsl:value-of select="$url"/>
|
---|
| 68 | </xsl:otherwise>
|
---|
| 69 | </xsl:choose>
|
---|
| 70 | </xsl:otherwise>
|
---|
| 71 | </xsl:choose>
|
---|
| 72 | </xsl:template>
|
---|
| 73 |
|
---|
| 74 | </xsl:stylesheet>
|
---|