(no commit message)
[utils] / crawler / kiss / src / main / resources / channels-favorites-graphic.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3   xmlns:xhtml="http://www.w3.org/1999/xhtml"
4   version="1.0">
5   
6   <xsl:output method="xml"/>
7   <xsl:strip-space elements="xhtml:a"/>
8   
9   <xsl:include href="utilities.xsl"/>
10   
11   <!-- =====================================================
12     Copying template.
13     ===================================================== -->
14   <xsl:template match="@*|node()" mode="copy">
15     <xsl:copy>
16       <xsl:apply-templates select="@*|node()" mode="copy"/>
17     </xsl:copy>
18   </xsl:template>
19   
20   <xsl:template match="/">
21     <xsl:element name="favorite-channels">
22       <xsl:apply-templates select="//xhtml:td[contains(@class, 'listCell') and position() = 2]"/>
23     </xsl:element>
24   </xsl:template>
25   
26   <xsl:template match="xhtml:td">
27     <action name="{.//xhtml:b}" type="channel-overview" 
28         reference="{xhtml:a/@href}"/>
29   </xsl:template>
30   
31 </xsl:stylesheet>