mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
33 lines
947 B
XML
33 lines
947 B
XML
|
<?xml version='1.0'?>
|
||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||
|
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||
|
version='1.0'>
|
||
|
|
||
|
<!-- This alters the rendering of URLs. Let's follow RFC 2396 -->
|
||
|
<!-- guidelines. -->
|
||
|
<xsl:template match="ulink">
|
||
|
<fo:basic-link external-destination="{@url}"
|
||
|
xsl:use-attribute-sets="xref.properties">
|
||
|
<xsl:choose>
|
||
|
<xsl:when test="count(child::node())=0">
|
||
|
<xsl:text><</xsl:text>
|
||
|
<xsl:value-of select="@url"/>
|
||
|
<xsl:text>></xsl:text>
|
||
|
</xsl:when>
|
||
|
<xsl:otherwise>
|
||
|
<xsl:apply-templates/>
|
||
|
</xsl:otherwise>
|
||
|
</xsl:choose>
|
||
|
</fo:basic-link>
|
||
|
<xsl:if test="count(child::node()) != 0">
|
||
|
<fo:inline hyphenate="false">
|
||
|
<xsl:text> at <</xsl:text>
|
||
|
<xsl:value-of select="@url"/>
|
||
|
<xsl:text>></xsl:text>
|
||
|
</fo:inline>
|
||
|
</xsl:if>
|
||
|
</xsl:template>
|
||
|
|
||
|
</xsl:stylesheet>
|
||
|
|