handling of cross references to libempathy and libempathy-gtk

(GNOME #581635)
This commit is contained in:
Frederic Peters 2009-05-06 21:16:02 +02:00
parent 3bb8af1591
commit 90149e979e
1 changed files with 18 additions and 0 deletions

View File

@ -146,6 +146,24 @@ along with libgo; if not, write to the Free Software Foundation, Inc.,
<xsl:when test="contains(., '/gio/')">
<xsl:value-of select="concat('../../gio/stable/', substring-after(., '/gio/'))"/>
</xsl:when>
<xsl:when test="contains(., '/libempathy/stable/')">
<xsl:value-of select="concat('../../libempathy/stable/', substring-after(., '/libempathy/stable/'))"/>
</xsl:when>
<xsl:when test="contains(., '/libempathy/unstable/')">
<xsl:value-of select="concat('../../libempathy/unstable/', substring-after(., '/libempathy/unstable/'))"/>
</xsl:when>
<xsl:when test="contains(., '/libempathy/')">
<xsl:value-of select="concat('../../libempathy/stable/', substring-after(., '/libempathy/'))"/>
</xsl:when>
<xsl:when test="contains(., '/libempathy-gtk/stable/')">
<xsl:value-of select="concat('../../libempathy-gtk/stable/', substring-after(., '/libempathy-gtk/stable/'))"/>
</xsl:when>
<xsl:when test="contains(., '/libempathy-gtk/unstable/')">
<xsl:value-of select="concat('../../libempathy-gtk/unstable/', substring-after(., '/libempathy-gtk/unstable/'))"/>
</xsl:when>
<xsl:when test="contains(., '/libempathy-gtk/')">
<xsl:value-of select="concat('../../libempathy-gtk/stable/', substring-after(., '/libempathy-gtk/'))"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>