2006-04-30 17:27:39 +02:00
|
|
|
<?xml version='1.0' encoding='ISO-8859-1'?>
|
|
|
|
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
version="1.0">
|
|
|
|
|
|
|
|
<xsl:output method="text"/>
|
|
|
|
|
2012-02-02 00:29:37 +01:00
|
|
|
<!-- Do we use a package manager? -->
|
2016-05-28 12:00:30 +02:00
|
|
|
<xsl:param name="pkgmngt" select="'n'"/>
|
|
|
|
|
|
|
|
<!-- The system for LFS: sysv of systemd -->
|
|
|
|
<xsl:param name="revision" select="'sysv'"/>
|
2012-02-02 00:29:37 +01:00
|
|
|
|
2006-04-30 17:27:39 +02:00
|
|
|
<xsl:template match="/">
|
2016-05-28 12:00:30 +02:00
|
|
|
<xsl:apply-templates select="//varlistentry[@revision=$revision
|
|
|
|
or not(@revision)]//ulink"/>
|
2012-02-02 00:29:37 +01:00
|
|
|
<xsl:if test="$pkgmngt='y'">
|
|
|
|
<xsl:apply-templates
|
|
|
|
select="document('packageManager.xml')//ulink"/>
|
|
|
|
</xsl:if>
|
2006-04-30 17:27:39 +02:00
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="ulink">
|
2012-02-02 00:29:37 +01:00
|
|
|
<!-- If some package doesn't have the predefined strings in their
|
2006-04-30 17:27:39 +02:00
|
|
|
name, the next test must be fixed to match it also. Skip possible
|
|
|
|
duplicated URLs due that may be splitted for PDF output -->
|
2022-02-28 13:30:53 +01:00
|
|
|
<xsl:if test="(contains(@url, '.bz2') or contains(@url, '.tar.gz') or
|
2011-10-27 09:11:12 +02:00
|
|
|
contains(@url, '.tgz') or contains(@url, '.patch') or
|
2013-09-14 12:48:45 +02:00
|
|
|
contains(@url, '.xz') or contains(@url, '.lzma')) and
|
2006-04-30 17:27:39 +02:00
|
|
|
not(ancestor-or-self::*/@condition = 'pdf')">
|
|
|
|
<!-- Extract the package name -->
|
|
|
|
<xsl:variable name="package">
|
|
|
|
<xsl:call-template name="package.name">
|
|
|
|
<xsl:with-param name="url" select="@url"/>
|
|
|
|
</xsl:call-template>
|
|
|
|
</xsl:variable>
|
2006-12-04 18:47:37 +01:00
|
|
|
<!-- Write the upstream URLs, fixing the redirected ones -->
|
2006-05-06 22:03:02 +02:00
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="contains(@url,'?')">
|
2006-12-04 18:47:37 +01:00
|
|
|
<xsl:value-of select="substring-before(@url,'?')"/>
|
2006-05-06 22:03:02 +02:00
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:value-of select="@url"/>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
<!-- Write MD5SUM value -->
|
|
|
|
<xsl:text> </xsl:text>
|
2014-12-21 12:25:47 +01:00
|
|
|
<xsl:value-of select="../following-sibling::para/literal"/>
|
2006-04-30 17:27:39 +02:00
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template name="package.name">
|
|
|
|
<xsl:param name="url"/>
|
|
|
|
<xsl:choose>
|
2014-05-07 17:30:33 +02:00
|
|
|
<xsl:when test="contains($url, '/') and not (substring-after($url,'/')='')">
|
2006-04-30 17:27:39 +02:00
|
|
|
<xsl:call-template name="package.name">
|
|
|
|
<xsl:with-param name="url" select="substring-after($url, '/')"/>
|
|
|
|
</xsl:call-template>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="contains($url, '?')">
|
|
|
|
<xsl:value-of select="substring-before($url, '?')"/>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:value-of select="$url"/>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|