--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:xhtml="http://www.w3.org/1999/xhtml"
+ version="1.0">
+
+ <xsl:output method="xml"/>
+ <xsl:strip-space elements="xhtml:a"/>
+
+ <xsl:include href="utilities.xsl"/>
+
+ <!-- =====================================================
+ Copying template.
+ ===================================================== -->
+ <xsl:template match="@*|node()" mode="copy">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()" mode="copy"/>
+ </xsl:copy>
+ </xsl:template>
+
+ <xsl:template match="/">
+ <xsl:element name="favorite-channels">
+ <xsl:apply-templates select="//xhtml:td[contains(@class, 'listCell') and position() = 2]"/>
+ </xsl:element>
+ </xsl:template>
+
+ <xsl:template match="xhtml:td">
+ <action name="{.//xhtml:b}" type="channel-overview"
+ reference="{xhtml:a/@href}"/>
+ </xsl:template>
+
+</xsl:stylesheet>