Reply to thread

I have the following grabber

[CODE]<?xml version="1.0" encoding="utf-8"?>

<Grabber>

    <Info availableDays="7" timezone="South Africa Standard Time" version="2.0"/>

    <Channels>

        <Channel id="mneteast@mnetafrica.com" siteId="229"/>

        <Channel id="mm1@mnet.co.za" siteId="225"/>

    </Channels>

    <Listing type="Html">

        <Site url="http://beta.mnetafrica.com/Schedule.aspx?channel=[ID]&amp;days=1" post="" external="false" encoding=""/>

        <Html>

            <Template name="default" start="&lt;table cellspacing=&quot;0&quot; border=&quot;0&quot; id=&quot;ctl00_body_ctl00_dg1&quot; style=&quot;border-collapse:collapse;&quot;&gt;" end="&lt;/table&gt;">

                <SectionTemplate tags="TS">

                    <TemplateText>

&lt;td class=&quot;txt_time&quot; style=&quot;width:60px;&quot;&gt;&lt;#START&gt;&lt;/td&gt;&lt;td class=&quot;txt_descrip&quot; valign=&quot;top&quot; style=&quot;height:40px;width:690px;&quot;&gt;&lt;span class=txt_showTitle&gt;&lt;#TITLE&gt;&lt;/span&gt;&lt;br/&gt;&lt;z(&gt;'S&lt;#SEASON&gt;/E&lt;#EPISODE&gt; - &lt;#SUBTITLE&gt;'. &lt;/z)?&gt;&lt;#DESCRIPTION&gt;&lt;/td&gt;&lt;td title=&quot;Age Restriction&quot; class=&quot;link_rating&quot; style=&quot;width:43px;&quot;&gt;&lt;a href=# onclick=OpenAgeRestriction(1);return false; class=link_rating&gt; PG/13                                            &lt;/a&gt;&lt;/td&gt;

          </TemplateText>

                </SectionTemplate>

            </Template>

        </Html>

    </Listing>

</Grabber>[/CODE]

The Z tag in the template does not work. The html for the description is sometimes preceeded by season/episode/subtitle information. I thought I could capture this information using a Z tag as this information is always in the same format and enclosed in single quotes, for example:


'S1/E1 - Part I'. description starts from here


But WebEPG is always including the season/episode/subtitle information in the description. What am I doing wrong?


Top Bottom