Moved crawler to
[utils] / crawler / kiss / src / main / resources / channels-favorites-graphic.xsl
diff --git a/crawler/kiss/src/main/resources/channels-favorites-graphic.xsl b/crawler/kiss/src/main/resources/channels-favorites-graphic.xsl
deleted file mode 100644 (file)
index 7586502..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?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>