I'm having a problem white following code:
When the grabber tryes to open a sublink it uses the following form:
Which is excatly the same as in the original <a href> tag:
The only problem is that it won't work unless the link is like this:
So the difference is that "&" should be "&".
How can I do this?
Code:
<?xml version="1.0" encoding="utf-8" ?>
<Grabber>
<Info language="lt" availableDays="3" timezone="E. Europe Standard Time" />
<Channels>
<Channel id="5kanalas.lt" siteId="" />
</Channels>
<Listing type="Html">
<Site url="http://www.5kanalas.lt/default.aspx?page=Programa&day=[DAY_OFFSET]" post="" external="false" encoding="" />
<Html>
<Template name="default" start="ProgramContainer" end="mainover1">
<SectionTemplate tags="T">
<TemplateText>
<tr><td><a><#START> <#TITLE></a></td></tr>
</TemplateText>
</SectionTemplate>
</Template>
<Template name="Details" start="<div style="FLOAT:right">" end="mainover1">
<SectionTemplate tags="S">
<TemplateText>
<span id="_ctl1_Long1_lblText">
<#SUBTITLE><br>
<#DESCRIPTION><br><br>
<br></span>
</TemplateText>
</SectionTemplate>
</Template>
<Sublinks>
<Sublink search="default.aspx" template="Details" />
</Sublinks>
</Html>
</Listing>
</Grabber>
When the grabber tryes to open a sublink it uses the following form:
Code:
WebEPG: SubLink Request http://www.5kanalas.lt/default.aspx?page=InfoBlock&cid=2798
Which is excatly the same as in the original <a href> tag:
Code:
href="default.aspx?page=InfoBlock&cid=2798"
The only problem is that it won't work unless the link is like this:
Code:
http://www.5kanalas.lt/default.aspx?page=InfoBlock&cid=2798
So the difference is that "&" should be "&".
How can I do this?