Hi,
The following "
changeProgrammeTimeZone" rule will allow you to alter the time zone of programmes in a particular channel in your XMLTV data:
Code:
<rule type="changeProgrammeTimeZone" channelId="SevenHD" timeZone="+1000" />
<rule type="changeProgrammeTimeZone" channelId="TenHD" timeZone="+1000" />
If your XMLTV data does not have time zone information (or you don't want to change it), then you can just alter the start/stop times directly using the "
adjustProgrammeTime". The
adjustment attribute can be specified in +/- minutes:
Code:
<rule type="adjustProgrammeTime" channelId="SevenHD" adjustment="+60" />
<rule type="adjustProgrammeTime" channelId="TenHD" adjustment="+60" />
Thanks,