1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://exslt.org/strings"
exclude-result-prefixes="str">
<xsl:template match="div[contains(@class, 'item')]">
<xsl:variable name="title">
<xsl:choose>
<xsl:when test="normalize-space(div[@class='row3']/span)">
<xsl:value-of select="concat(normalize-space(div[@class='row2']/a), ': ', normalize-space(div[@class='row3']/span))"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat(normalize-space(div[@class='row2']/a), ': ', normalize-space(div[@class='row1']/span))"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<xsl:when test="div[@class='row1']/span[@class='live']">
<xsl:variable name="upcoming" select="concat(div[@class='row1']/span[@class='live'], ' ', div[@class='row1']/span[contains(@class, 'time')])"/>
<link>
<label><xsl:value-of select="concat($title, ' ', $upcoming)"/></label>
<ref>wvt:///katsomo.fi/description.xsl?srcurl=<xsl:value-of select="str:encode-uri(div[@class='row2']/a/@href, true())"/>&param=live,<xsl:value-of select="str:encode-uri($upcoming, true())"/></ref>
</link>
</xsl:when>
<xsl:otherwise>
<link>
<label><xsl:value-of select="$title"/></label>
<ref>wvt:///katsomo.fi/description.xsl?srcurl=<xsl:value-of select="str:encode-uri(div[@class='row2']/a/@href, true())"/></ref>
<stream>wvt:///katsomo.fi/video.xsl?param=videopage,<xsl:value-of select="div[@class='row2']/a/@href"/>&param=title,<xsl:value-of select="str:encode-uri($title, true())"/></stream>
</link>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="/">
<wvmenu>
<title><xsl:value-of select="/html/head/meta[@name='title']/@content"/></title>
<xsl:apply-templates select="//div[@class='content episode']/div[contains(@class, 'item') and not(contains(@class, 'not-free'))]"/>
</wvmenu>
</xsl:template>
</xsl:stylesheet>
|