diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-19 09:08:24 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-19 09:08:24 +0000 |
commit | 376201dc2ea648e36a2c4862237fbe659161e036 (patch) | |
tree | 9e115fed1903b55915521246292b2124a98f2012 | |
parent | Add redirects for old page locations (diff) | |
download | gentoobrowse-376201dc2ea648e36a2c4862237fbe659161e036.tar.bz2 gentoobrowse-376201dc2ea648e36a2c4862237fbe659161e036.tar.xz gentoobrowse-376201dc2ea648e36a2c4862237fbe659161e036.zip |
Add version number back to atom title
-rw-r--r-- | gentoobrowse/xslt/user-atom.xslt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gentoobrowse/xslt/user-atom.xslt b/gentoobrowse/xslt/user-atom.xslt index e1dcdf4..82d596a 100644 --- a/gentoobrowse/xslt/user-atom.xslt +++ b/gentoobrowse/xslt/user-atom.xslt @@ -26,7 +26,11 @@ <xsl:variable name="category" select="../../categories/category[categoryid = $package/categoryid]" /> <entry> <title> - <xsl:value-of select="$category/name" />/<xsl:value-of select="$package/name" /> + <xsl:value-of select="$category/name" /> + <xsl:text>/</xsl:text> + <xsl:value-of select="$package/name" /> + <xsl:text>-</xsl:text> + <xsl:value-of select="version" /> </title> <link rel="alternate" type="text/html"> <xsl:attribute name="href"> |