blob: 1e4312618414167c1121725d0d661d8b5151511c (
plain)
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
|
<?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="id('all_programs_tab1')//a">
<link>
<label><xsl:value-of select="normalize-space(string(.))"/></label>
<ref>wvt:///katsomo.fi/program.xsl?srcurl=<xsl:value-of select="str:encode-uri(@href, true())"/></ref>
</link>
</xsl:template>
<xsl:template match="/">
<wvmenu>
<title>MTV3 Katsomo</title>
<link>
<label>Haku</label>
<ref>wvt:///katsomo.fi/search.xsl</ref>
</link>
<xsl:apply-templates select="id('all_programs_tab1')//a"/>
</wvmenu>
</xsl:template>
</xsl:stylesheet>
|