blob: 5a5e88f5da451ed05f886310007e0f01e660aeff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="type_to_path">
<xsl:param name="type"/>
<xsl:choose>
<xsl:when test="$type = 'audio'">radio</xsl:when>
<xsl:otherwise>tv</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
|