xmltv/grab/uk_atlas tv_grab_uk_atlas.map.channels.conf, NONE, 1.1 tv_grab_uk_atlas.map.genres.conf, NONE, 1.1 tv_grab_uk_atlas.pa.genres.conf, NONE, 1.1 tv_grab_uk_atlas.user.map.conf, NONE, 1.1 CHANGELOG, 1.5, 1.6 FAQ, 1.2, 1.3 INSTALL, 1.2, 1.3 tv_grab_uk_atlas, 1.9, 1.10 all_atlas_channels.txt, 1.1, NONE tv_grab_uk_atlas.map.SAMPLE.conf, 1.2, NONE tv_grab_uk_atlas.map.conf, 1.2, NONE tv_grab_uk_atlas.map.genre.conf, 1.1, NONE
Geoff <[email protected]>
| Newsgroups | gmane.comp.tv.xmltv.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/xmltv/xmltv/grab/uk_atlas
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23528/grab/uk_atlas
Modified Files:
CHANGELOG FAQ INSTALL tv_grab_uk_atlas
Added Files:
tv_grab_uk_atlas.map.channels.conf
tv_grab_uk_atlas.map.genres.conf
tv_grab_uk_atlas.pa.genres.conf tv_grab_uk_atlas.user.map.conf
Removed Files:
all_atlas_channels.txt tv_grab_uk_atlas.map.SAMPLE.conf
tv_grab_uk_atlas.map.conf tv_grab_uk_atlas.map.genre.conf
Log Message:
(Major) Changed handling of map files to use Supplement server
--- tv_grab_uk_atlas.map.conf DELETED ---
--- NEW FILE: tv_grab_uk_atlas.map.genres.conf ---
#
# Translate programme genres
#
cat==General Movie==
cat==Advertisement==Shopping
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/xmltv/xmltv/grab/uk_atlas/CHANGELOG,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** CHANGELOG 5 Dec 2013 10:36:19 -0000 1.5
--- CHANGELOG 5 Dec 2013 15:21:29 -0000 1.6
***************
*** 1,2 ****
--- 1,3 ----
+ 1.10 5-Dec-2013 Changed handling of map files
1.9 5-Dec-2013 Move apikey from separate file to --configure stage
1.8 4-Dec-2013 Improve error message when API Key missing
Index: tv_grab_uk_atlas
===================================================================
RCS file: /cvsroot/xmltv/xmltv/grab/uk_atlas/tv_grab_uk_atlas,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** tv_grab_uk_atlas 5 Dec 2013 10:36:19 -0000 1.9
--- tv_grab_uk_atlas 5 Dec 2013 15:21:29 -0000 1.10
***************
*** 20,23 ****
--- 20,24 ----
use XMLTV::ProgressBar;
use XMLTV::Options qw/ParseOptions/;
+ use XMLTV::Supplement qw/GetSupplement SetSupplementRoot/;
use XMLTV::Configure::Writer;
use XMLTV::Ask;
***************
*** 227,235 ****
$from = DateTime->now->add( hours => $opt->{offset} )->set_time_zone('UTC')->epoch();
$to = $from + ($opt->{hours} * 3600); # todo: adjust for DST?
!
} elsif ($opt->{days}) {
$from = DateTime->today->add( days => $opt->{offset} )->set_time_zone('UTC')->epoch();
$to = $from + ($opt->{days} * 86400);
!
# we need to fetch a 'calendar' day so we must adjust the times for DST
$from -= 3600 if ((localtime($from))[8] == 1);
--- 228,236 ----
$from = DateTime->now->add( hours => $opt->{offset} )->set_time_zone('UTC')->epoch();
$to = $from + ($opt->{hours} * 3600); # todo: adjust for DST?
!
} elsif ($opt->{days}) {
$from = DateTime->today->add( days => $opt->{offset} )->set_time_zone('UTC')->epoch();
$to = $from + ($opt->{days} * 86400);
!
# we need to fetch a 'calendar' day so we must adjust the times for DST
$from -= 3600 if ((localtime($from))[8] == 1);
***************
*** 702,708 ****
sub loadmapconf {
! # Load the conf file containing mapped channels and categories information
#
! # This file contains 2 record types:
# lines starting with "map" are used to 'translate' the Atlas channel id to those required by your PVR
# e.g. map==cbjc==DAVE will output "DAVE" in your XML file instead of "cbjc"
--- 703,716 ----
sub loadmapconf {
! # Load the files containing mappings for channels and genres (categories)
! #
! # There are 3 files:
! # grabber specified channel mappings
! # grabber specified genre mappings
! # user specified channel & genre mappings (optional file)
! #
! # Any user specified mappings will override the corresponding grabber specified mapping.
#
! # There are 2 record types:
# lines starting with "map" are used to 'translate' the Atlas channel id to those required by your PVR
# e.g. map==cbjc==DAVE will output "DAVE" in your XML file instead of "cbjc"
***************
*** 714,724 ****
my $mapcategories = \%mapcategoryhash;
#
! my $fn = get_supplement_dir() . '/'. $GRABBER_NAME . '.map.conf';
my $fhok = open my $fh, '<', $fn or warning("Cannot open conf file $fn");
if ($fhok) {
while (my $line = <$fh>) {
! chomp $line;
! chop($line) if ($line =~ m/\r$/);
next if $line =~ /^#/ || $line eq '';
my ($type, $mapfrom, $mapto, $trash) = $line =~ /^(.*)==(.*)==(.*?)([\s\t]*#.*)?$/;
SWITCH: {
--- 722,755 ----
my $mapcategories = \%mapcategoryhash;
#
! foreach ( qw/channels genres/ ) {
!
! # Retrieve grabber map file via XMLTV::Supplement
! my $supplement = GetSupplement($GRABBER_NAME, 'tv_grab_uk_atlas.map.'.$_.'.conf');
! die "Error: XMLTV $_ map data is missing, exiting"
! if (! defined $supplement || $supplement eq '');
! my @lines = split /[\r\n]+/, $supplement;
! foreach my $line (@lines) {
! chomp $line; chop($line) if ($line =~ m/\r$/); trim($line);
! next if $line =~ /^#/ || $line eq '';
!
! my ($type, $mapfrom, $mapto, $trash) = $line =~ /^(.*)==(.*)==(.*?)([\s\t]*#.*)?$/;
! SWITCH: {
! lc($type) eq 'map' && do { $mapchannels->{$mapfrom} = $mapto; last SWITCH; };
! lc($type) eq 'cat' && do { $mapcategories->{$mapfrom} = $mapto; last SWITCH; };
! warning("Unknown type in map file: \n $line");
! }
! }
!
! }
!
! # Retrieve user map file from 'supplement' dir (*not* using XMLTV::Supplement)
! # and overwrite any corresponding grabber mappings
! my $fn = get_supplement_dir() . '/'. $GRABBER_NAME . '.user.map.conf';
my $fhok = open my $fh, '<', $fn or warning("Cannot open conf file $fn");
if ($fhok) {
while (my $line = <$fh>) {
! chomp $line; chop($line) if ($line =~ m/\r$/); trim($line);
next if $line =~ /^#/ || $line eq '';
+
my ($type, $mapfrom, $mapto, $trash) = $line =~ /^(.*)==(.*)==(.*?)([\s\t]*#.*)?$/;
SWITCH: {
***************
*** 743,759 ****
my $mapgenrehash = \%mapgenrehash;
#
! my $fn = get_supplement_dir() . '/'. $GRABBER_NAME . '.map.genre.conf';
! my $fhok = open my $fh, '<', $fn or warning("Cannot open genre file $fn");
! if ($fhok) {
! while (my $line = <$fh>) {
! chomp $line;
! chop($line) if ($line =~ m/\r$/);
! next if $line =~ /^#/ || $line eq '';
! my ($mapfrom, $mapto, $trash) = $line =~ /^(.*)==(.*?)([\s\t]*#.*)?$/;
! $mapgenrehash->{$mapfrom} = $mapto;
! }
! close $fh;
}
! # print Dumper ($mapgenrehash);
}
--- 774,790 ----
my $mapgenrehash = \%mapgenrehash;
#
! # Retrieve PA genres file via XMLTV::Supplement
! my $supplement = GetSupplement($GRABBER_NAME, 'tv_grab_uk_atlas.pa.genres.conf');
! die "Error: XMLTV PA genres data is missing, exiting"
! if (! defined $supplement || $supplement eq '');
! my @lines = split /[\r\n]+/, $supplement;
! foreach my $line (@lines) {
! chomp $line; chop($line) if ($line =~ m/\r$/); trim($line);
! next if $line =~ /^#/ || $line eq '';
!
! my ($mapfrom, $mapto, $trash) = $line =~ /^(.*)==(.*?)([\s\t]*#.*)?$/;
! $mapgenrehash->{$mapfrom} = $mapto;
}
! #print Dumper ($mapgenrehash);
}
***************
*** 1060,1066 ****
my %platform = %$p;
next unless $platform{'id'} eq $conf->{'platform'}[0];
!
# may not be a regionalised platform (e.g. Saorview)
! if ( (!defined $platform{'regions'}) || (scalar @{$platform{'regions'}} == 0) ) {
$writer->write_option( {
--- 1091,1097 ----
my %platform = %$p;
next unless $platform{'id'} eq $conf->{'platform'}[0];
!
# may not be a regionalised platform (e.g. Saorview)
! if ( (!defined $platform{'regions'}) || (scalar @{$platform{'regions'}} == 0) ) {
$writer->write_option( {
***************
*** 1202,1205 ****
--- 1233,1241 ----
}
+ sub trim {
+ # Remove leading & trailing spaces
+ $_[0] =~ s/^\s+|\s+$//g;
+ }
+
sub t {
my( $message ) = @_;
***************
*** 1237,1240 ****
--- 1273,1277 ----
tv_grab_uk_atlas
[--days N] [--offset N] [--dst]
+ [--channel S]
[--config-file FILE]
[--output FILE] [--quiet] [--debug]
***************
*** 1242,1245 ****
--- 1279,1283 ----
tv_grab_uk_atlas
[--hours N] [--offset N]
+ [--channel S]
[--config-file FILE]
[--output FILE] [--quiet] [--debug]
***************
*** 1247,1250 ****
--- 1285,1289 ----
tv_grab_uk_atlas
[--date DATE] [--dst]
+ [--channel S]
[--config-file FILE]
[--output FILE] [--quiet] [--debug]
***************
*** 1294,1298 ****
of the day schedule. This adds an extra hour to the schedule fetched.
! B<--channel S> Grab just this channel (ignore the channels in the config file).
B<--quiet> Suppress the progress-bar normally shown on standard error.
--- 1333,1339 ----
of the day schedule. This adds an extra hour to the schedule fetched.
! B<--channel S> Grab just this channel (ignore the channels in the config file).
! Can be specified either as Atlas channel id (e.g. "cbbw") or mapped
! channel name (e.g. "south.bbc1.bbc.co.uk").
B<--quiet> Suppress the progress-bar normally shown on standard error.
***************
*** 1328,1332 ****
=head1 SUPPORTED CHANNELS
! For information on supported channels, see ???
=head1 AUTHOR
--- 1369,1373 ----
=head1 SUPPORTED CHANNELS
! For information on supported channels, see $HOME/.xmltv/supplement/tv_grab_uk_atlas/tv_grab_uk_atlas.map.channels.conf
=head1 AUTHOR
Index: FAQ
===================================================================
RCS file: /cvsroot/xmltv/xmltv/grab/uk_atlas/FAQ,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** FAQ 5 Dec 2013 10:36:19 -0000 1.2
--- FAQ 5 Dec 2013 15:21:29 -0000 1.3
***************
*** 10,13 ****
--- 10,14 ----
Typically this is because you haven't entered your API key during the --configure stage.
+ Or if you requested a particular channel with the --channel option but the channel cannot be found.
--- NEW FILE: tv_grab_uk_atlas.pa.genres.conf ---
# PressAssociation genre codes
#
1000==Drama
1F00==Mystery
1F01==Animated
1F05==Biopic
1F06==Family
1F07==Medical Drama
1F08==Literary Adaptation
1F09==Storytelling/Reading
1100==Detective/Thriller
1F0A==Thriller
1F0B==Espionage
1F0C==Gangster
1F0D==Police/Crime Drama
1F0E==Prison Drama
1F04==Western
1200==Adventure/War
1F0F==Adventure
1F10==War
1F11==Disaster Movie
1300==Sci-Fi
1F02==Fantasy
1F03==Horror
1400==Comedy
1F12==Sitcom
1F13==Spoof
1F14==Sketches
1500==Soap
1600==Romance
1F15==Tearjerker
1700==Serious/Classical/Religious/Historical
1F17==Historical/Period Drama
1F16==Epic
1800==Adult
2000==News
2F02==News
2F03==Weather
2F04==National News
2F05==International News
2F06==Regional News
2200==News Magazine/Current Affairs
2300==Documentary
2F07==Discussion/Debate
2F08==Interview
3000==Entertainment
3F00==Family
3F01==Award Ceremonies
3F02==Magazine Show
3100==Game Show/Quiz
3F03==Challenge/Reality Show
3200==Variety Show
3300==Talk Show
4000==Sport
4100==Special Events
4200==Sports Magazines
4300==Football
4400==Tennis
4500==Team Sports
4600==Athletics
4700==Motor Sport
4800==Water Sport
4900==Winter Sports
4A00==Equestrian
4B00==Martial Sports
4C00==reserved
4F00==American Football
4F01==Archery
4F02==Australian Rules Football
4F03==Badminton
4F04==Baseball
4F05==Basketball
4F06==Billiards
4F07==Bowls
4F08==Boxing
4F09==Canoeing
4F0A==Combat Sports
4F0B==Competitive Dancing
4F0C==Domestic Cricket
4F0D==International Cricket
4F0E==Cycling
4F0F==Darts
4F10==Disabled
4F11==Extreme/Minority Sports
4F12==Fencing
4F13==Figure Skating
4F14==Fishing
4F15==Club Football
4F16==International Football
4F17==Formula One
4F19==Golf
4F1A==Greyhound Racing
4F1B==Gymnastics
4F1C==Hockey
4F1D==Horse racing
4F1E==Ice Hockey
4F1F==Ice Skating
4F20==Modern Pentathlon
4F21==Motorcycling
4F22==Mountainbiking
4F23==Netball
4F24==Olympics
4F25==Other
4F26==Physical Fitness
4F27==Polo
4F28==Pool
4F29==Powerboating
4F2A==Racquet/Bat Sports
4F2B==Rallying
4F2C==Rowing
4F2D==Domestic Rugby League
4F2E==International Rugby League
4F2F==Domestic Rugby Union
4F30==International Rugby Union
4F31==Sailing
4F32==Shooting
4F33==Skiing
4F34==Snooker
4F35==Squash
4F36==Strongman Contests
4F37==Sumo
4F39==Table Tennis
4F3A==Ten-Pin Bowling
4F3B==Triathlon
4F3C==Volleyball
4F3D==Weightlifting
4F3E==World Cup
4F3F==Wrestling
4F40==Aerobics
4F41==Bodybuilding
4F42==Curling
4F43==Beach Volleyball
4F44==Handball
4F45==Gaelic Football
4F46==Gaelic Games
4F47==Hurling
4F48==Swimming
4F49==Diving
4F4A==Poker
4F4B==Judo
4F4C==Taekwondo
4F4D==Synchronised Swimming
4F4E==Water Polo
4F4F==Paralympics
4F50==Boccia
4F51==Five-a-side Football
4F52==Seven-a-side Football
4F53==Goalball
4F54==Powerlifting
4F55==Wheelchair Basketball
4F56==Wheelchair Fencing
4F57==Wheelchair Rugby
4F58==Wheelchair Tennis
5000==Childrens
5100==Pre-school
5200==Entertainment (age 6-14)
5300==Entertainment (age 10-16)
5400==Schools Programmes
5500==Cartoon/Puppets
6000==Music
6F01==Easy Listening
6F02==World Music
6F03==Country & Western
6F06==Rock
6F07==Pop
6F08==Dance/Urban Music
6200==Classical
6300==Folk/Traditional
6400==Jazz
6F09==Musical
6F0A==Opera
6600==Ballet
6F05==Modern Dance
7000==Arts
7100==Performing Arts
7200==Fine Arts
7400==Pop Culture/TV
7500==Literature
7600==Film/Cinema
7700==Experimental Film
7800==Broadcasting/Press
7900==New Media
7A00==Arts magazine
7B00==Fashion
8000==Factual
8200==Economics
9000==Lifestyle
9F01==Docu-soap
9F02==Factual Crime
9F03==Agony Advice
9F04==Archaeology
9F05==History
9F06==Unexplained/Mysteries
9100==Nature/Animals/Environment
9F07==Wildlife
9F08==Environment
9F09==Rural/Agricultural
9F0A==Vets/Pets
9200==Technology
9300==Medical/Health
9400==Foreign Countries/Expeditions
9500==Spritual/Religious
9F00==Education
9700==Languages
A000==Lifestyle
AF01==Antiques/Collectibles
AF02==Computers/Internet/Gaming
A100==Travel/Tourism
A200==Handicraft
A300==Motoring
A400==Fitness and Health
A500==Cooking
A600==Advertisement/Shopping/Consumer
A700==Gardening
AF00==DIY
AF03==Property
B300==Live
BE00==reserved
BF00==Off-Air
BF01==Film
--- tv_grab_uk_atlas.map.SAMPLE.conf DELETED ---
--- tv_grab_uk_atlas.map.genre.conf DELETED ---
--- NEW FILE: tv_grab_uk_atlas.map.channels.conf ---
# CHANNELS for all Atlas channels mapped to an RFC2838 compliant channel id
# Cross-references the RadioTimes channel id (where one exists)
# 'map' == atlas_channel_id == rt_channel name # rt_channel id -- channel title
#
map==999==f1.sports.sky.com # (2700) -- Sky Sports F1
map==cbB2==4seven.channel4.com # (2701) -- 4seven
map==cbB5==gold.rte.ie # (????) -- RTÉ Gold
map==cbB7==plus-1.movies.sonytv.com # (2706) -- Sony Movie Channel +1
map==cbBB==ucbmedia.com # (????) -- UCB
map==cbBT==wrnbroadcast.com # (????) -- World Radio Network
map==cbBm==thehits-tv.co.uk # (????) -- The Hits
map==cbBz==u105.com # (????) -- U105
map==cbCF==junior.rte.ie # (????) -- RTÉ Junior
map==cbCQ==dab.talksport.co.uk # (????) -- talkSPORT DAB
map==cbCR==plus-1.tinypop.com # (????) -- Tiny Pop +1
map==cbCZ==hd.meridian.itv1.itv.com # (????) -- ITVHD Meridian
map==cbCc==sonytv.com # (2702) -- Sony Entertainment Television
map==cbCn==hd.news.sports.sky.com # (????) -- Sky Sports News HD
map==cbCp==hd.granada.itv1.itv.com # (????) -- ITVHD Granada
map==cbCw==hd.dave.uktv.co.uk # (????) -- Dave HD
map==cbD6==movies.sonytv.com # (2705) -- Sony Movie Channel
map==cbDG==hd.central.itv1.itv.com # (????) -- ITVHD Central
map==cbDH==popgirlworld.com # (????) -- PopGirl
map==cbDK==plus-1.reality.cbs.com # (????) -- CBS Reality +1
map==cbDN==hd.animalplanet.discoveryeurope.com # (????) -- Animal Planet HD
map==cbDP==plus-1.sonytv.com # (2703) -- Sony Entertainment Television +1
map==cbDQ==lfctv.liverpoolfc.com # (????) -- LFC TV
map==cbDY==hd.uk.cartoonnetwork.com # (????) -- Cartoon Network HD
map==cbDh==hd.disneychannel.disney.co.uk # (????) -- Disney Channel HD
map==cbDj==zeecinema.com # (????) -- Zee Cinema
map==cbDk==asian.bbc.co.uk # (????) -- BBC Asian Network
map==cbDn==northern-ireland.1.radio.bbc.co.uk # (????) -- BBC Radio 1 Northern Ireland
map==cbDs==hd.goodfood.uktv.co.uk # (????) -- Good Food HD
map==cbDt==scotland.1.radio.bbc.co.uk # (????) -- BBC Radio 1 Scotland
map==cbDw==vintage.tv # (????) -- Vintage TV
map==cbDz==wales.1.radio.bbc.co.uk # (????) -- BBC Radio 1 Wales
map==cbFr==hd.rte2.rte.ie # (????) -- RTÉ Two HD
map==cbFv==hd.watch.uktv.co.uk # (????) -- Watch HD
map==cbGK==tv.heatworld.com # (????) -- Heat TV
map==cbS7==fv.communitychannel.org # (????) -- Community Channel Freeview
map==cbT2==playboy.tv # (????) -- Playboy TV
map==cbT7==hd.tcmuk.tv # (????) -- TCM HD
map==cbTF==trace.tv # (????) -- TRACE Sport Stars
map==cbTG==hd.f1.sports.sky.com # (????) -- Sky Sports F1 HD
map==cbTH==morethan.movies4men.co.uk # (????) -- more>movies
map==cbTK==plus-1.central.stv.tv # (????) -- STV Central+1
map==cbTN==plus-1.showcase.information.tv # (????) -- Showcase +1
map==cbTQ==topup.gold.uktv.co.uk # (????) -- GOLD Top Up TV
map==cbTR==amateur.redhottv.co.uk # (????) -- Red Hot Amateur
map==cbTV==hd.nickelodeon.co.uk # (????) -- Nickelodeon HD
map==cbTZ==idealworld.tv # (????) -- Ideal World
map==cbTb==news.rte.ie # (????) -- RTÉ News Now
map==cbTg==oxfordshire.bbc1.bbc.co.uk # (????) -- BBC One Oxfordshire
map==cbTh==ci.bbc1.bbc.co.uk # (????) -- BBC One Channel Islands
map==cbTj==cambridgeshire.bbc1.bbc.co.uk # (????) -- BBC One Cambridgeshire
map==cbTm==stargold.in # (????) -- Star GOLD
map==cbTn==rt.com # (????) -- RT
map==cbTp==premiersports.tv # (????) -- Premier Sports
map==cbTq==tvmychannel.com # (????) -- My Channel TV
map==cbTs==jr.rte.ie # (????) -- RTÉ Jr
map==cbTt==hd.world.nhk.or.jp # (????) -- NHK World HD
map==cbTv==plus-1.rte1.rte.ie # (????) -- RTÉ One +1
map==cbTy==adultchannel.co.uk # (????) -- The Adult Channel
map==cbV2==extra.radio1.rte.ie # (????) -- RTÉ Radio 1 Extra
map==cbV4==plus-1.sky-one.sky.com # (????) -- Sky1 +1
map==cbV6==showcase.information.tv # (????) -- Showcase
map==cbV7==plus-1.morethan.movies4men.co.uk # (????) -- more>movies +1
map==cbV8==hd.starplus.in # (????) -- Star Plus HD
map==cbV9==hd.2.eurosport.com # (????) -- Eurosport 2 HD
map==cbVB==hd.wales.bbc1.bbc.co.uk # (????) -- BBC One Wales HD
map==cbVC==moviemix.movies4men.co.uk # (????) -- Movie Mix
map==cbVD==hd.scotland.bbc1.bbc.co.uk # (????) -- BBC One Scotland HD
map==cbVF==hd.rt.com # (????) -- RT HD
map==cbVG==hd.northern-ireland.bbc1.bbc.co.uk # (????) -- BBC One Northern Ireland HD
map==cbVP==hd.more4.channel4.com # (????) -- More4 HD
map==cbVZ==18s.redhottv.co.uk # (????) -- Red Hot 18s
map==cbVb==plus-1.atlantic.sky.com # (????) -- Sky Atlantic +1
map==cbVm==createandcraft.idealworld.tv # (????) -- Create and Craft
map==cbVn==plus-1.anglia.itv1.itv.com # (????) -- ITV Anglia+1
map==cbVp==plus-1.tynetees.itv1.itv.com # (????) -- ITV Tyne Tees+1
map==cbVq==plus-1.westcountry.itv1.itv.com # (????) -- ITV Westcountry+1
map==cbVr==plus-1.wales.itv1.itv.com # (????) -- ITV Wales+1
map==cbVs==babytv.com # (????) -- Baby TV
map==cbVt==hd.live.mtv.co.uk # (????) -- MTV Live HD
map==cbVv==plus-1.jr.nickelodeon.co.uk # (????) -- Nick Jr. +1
map==cbVw==hd.eentertainment.com # (????) -- E! Entertainment HD
map==cbVx==createandcraft.idealworld.tv # (????) -- Create and Craft
map==cbVy==france24.com # (????) -- FRANCE 24 English
map==cbW2==starjalsha.com # (????) -- Star Jalsha
map==cbW6==hd.2.sport.bt.com # (????) -- BT Sport 2 HD
map==cbW7==2.sport.bt.com # (????) -- BT Sport 2
map==cbW8==1.sport.bt.com # (????) -- BT Sport 1
map==cbW9==hd.1.sport.bt.com # (????) -- BT Sport 1HD
map==cbWD==zingtv.in # (????) -- Zing
map==cbWJ==tlc.com # (????) -- TLC
map==cbWK==plus-1.tlc.com # (????) -- TLC+1
map==cbWM==rishteytv.com # (????) -- Rishtey
map==cbWP==hd.junior.disney.co.uk # (????) -- Disney Junior HD
map==cbWQ==hd.tlc.com # (????) -- TLC HD
map==cbWS==plus-1.investigation.discoveryeurope.com # (????) -- Investigation Discovery +1
map==cbWV==drama.truemovies.tv # (????) -- True Drama
map==cbWW==drama.uktv.co.uk # (????) -- Drama
map==cbWX==3.interactive.bbc.co.uk # (????) -- BBC Red Button 3
map==cbWY==hd.interactive.bbc.co.uk # (????) -- BBC Red Button HD
map==cbWZ==2.interactive.bbc.co.uk # (????) -- BBC Red Button 2
map==cbWb==fv.idealworld.tv # (????) -- Ideal World Freeview
map==cbWc==plus-1.biography-channel.biography.com # (????) -- Bio +1
map==cbWd==hd.alibi.uktv.co.uk # (????) -- Alibi HD
map==cbWf==cnbc.com # (????) -- CNBC UK
map==cbWr==pulse.digitalradio.rte.ie # (????) -- RTÉ Pulse
map==cbWs==2xm.digitalradio.rte.ie # (????) -- RTÉ 2XM
map==cbWt==choice.digitalradio.rte.ie # (????) -- RTÉ Choice
map==cbWw==hd.bbc2.bbc.co.uk # (????) -- BBC Two HD
map==cbWy==disney.movies.sky.com # (????) -- Sky Movies Disney
map==cbWz==hd.disney.movies.sky.com # (????) -- Sky Movies Disney HD
map==cbX2==hd.mylifetime.com # (????) -- Lifetime HD
map==cbXT==lamhe.zeeuk.com # (????) -- Lamhe
map==cbXV==plus-2.tlc.com # (????) -- TLC+2
map==cbXY==mylifetime.com # (????) -- Lifetime
map==cbXb==lifeok.com # (????) -- Star Life OK
map==cbXc==plus-1.north.stv.tv # (????) -- STV North+1
map==cbXf==sabtv.com # (????) -- Sony SAB
map==cbXg==arv.msnlatino.telemundo.com # (????) -- ARY News
map==cbXs==colors.in.com # (????) -- Colors
map==cbXt==kixtv.com # (????) -- Kix Power
map==cbXv==buzmuzik.cscmediagroup.com # (????) -- BuzMuzik
map==cbXz==plus-1.tcmuk.tv # (????) -- TCM+1
map==cbbB==west.bbc1.bbc.co.uk # (104) -- BBC One West
map==cbbC==westmidlands.bbc1.bbc.co.uk # (????) -- BBC One West Midlands
map==cbbD==lincolnshire.bbc1.bbc.co.uk # (????) -- BBC One Yorkshire & Lincolnshire
map==cbbF==yorkshire.bbc1.bbc.co.uk # (????) -- BBC One Yorkshire
map==cbbG==england.bbc2.bbc.co.uk # (2241) -- BBC Two England
map==cbbH==northern-ireland.bbc2.bbc.co.uk # (112) -- BBC Two Northern Ireland
map==cbbK==scotland.bbc2.bbc.co.uk # (113) -- BBC Two Scotland
map==cbbM==wales.bbc2.bbc.co.uk # (114) -- BBC Two Wales
map==cbbP==bbcthree.bbc.co.uk # (45) -- BBC Three
map==cbbQ==bbcfour.bbc.co.uk # (47) -- BBC Four
map==cbbR==news.bbc.co.uk # (48) -- BBC News Channel
map==cbbT==parliament.bbc.co.uk # (49) -- BBC Parliament
map==cbbW==cbbc.bbc.co.uk # (482) -- CBBC
map==cbbX==cbeebies.bbc.co.uk # (483) -- CBeebies
map==cbbZ==london.radio.bbc.co.uk # (????) -- BBC London 94.9
map==cbbh==london.bbc1.bbc.co.uk # (94) -- BBC One London
map==cbbj==northern-ireland.bbc1.bbc.co.uk # (99) -- BBC One Northern Ireland
map==cbbn==east.bbc1.bbc.co.uk # (93) -- BBC One East
map==cbbp==eastmidlands.bbc1.bbc.co.uk # (95) -- BBC One East Midlands
map==cbbq==hd.bbc1.bbc.co.uk # (2667) -- BBC One HD
map==cbbr==north-east.bbc1.bbc.co.uk # (97) -- BBC One North East & Cumbria
map==cbbs==north-west.bbc1.bbc.co.uk # (98) -- BBC One North West
map==cbbv==scotland.bbc1.bbc.co.uk # (101) -- BBC One Scotland
map==cbbw==south.bbc1.bbc.co.uk # (102) -- BBC One South
map==cbbx==south-east.bbc1.bbc.co.uk # (1869) -- BBC One South East
map==cbby==wales.bbc1.bbc.co.uk # (100) -- BBC One Wales
map==cbbz==south-west.bbc1.bbc.co.uk # (103) -- BBC One South West
map==cbc4==radio2.bbc.co.uk # (????) -- BBC World Service
map==cbc5==scotland.radio.bbc.co.uk # (????) -- BBC Radio Scotland FM
map==cbc7==nangaidheal.radio.bbc.co.uk # (????) -- BBC Radio Nan Gaidheal
map==cbc8==ulster.radio.bbc.co.uk # (????) -- BBC Radio Ulster
map==cbc9==foyle.radio.bbc.co.uk # (????) -- BBC Radio Foyle
map==cbcQ==england.1.radio.bbc.co.uk # (????) -- BBC Radio 1 England
map==cbcR==xtra.1.radio.bbc.co.uk # (????) -- BBC Radio 1Xtra
map==cbcS==2.radio.bbc.co.uk # (????) -- BBC Radio 2
map==cbcT==3.radio.bbc.co.uk # (????) -- BBC Radio 3
map==cbcV==4fm.radio.bbc.co.uk # (????) -- BBC Radio 4 FM
map==cbcW==5live.radio.bbc.co.uk # (????) -- BBC Radio 5 live
map==cbcX==extra.5live.radio.bbc.co.uk # (????) -- BBC Radio 5 live sports extra
map==cbcZ==6music.radio.bbc.co.uk # (????) -- BBC Radio 6 Music
map==cbd2==itv3.itv.com # (1859) -- ITV3
map==cbd4==hd.itv3.itv.com # (????) -- ITV3HD
map==cbd5==itv4.itv.com # (1961) -- ITV4
map==cbd6==hd.itv4.itv.com # (????) -- ITV4HD
map==cbd7==yorkshire.itv1.itv.com # (32) -- ITV Yorkshire
map==cbd8==u.tv # (38) -- UTV
map==cbd9==hd.u.tv # (????) -- UTV HD
map==cbdB==meridian.itv1.itv.com # (30) -- ITV Meridian
map==cbdC==anglia.itv1.itv.com # (24) -- ITV Anglia
map==cbdD==channel.itv1.itv.com # (28) -- ITV Channel Television
map==cbdF==wales.itv1.itv.com # (35) -- ITV Wales
map==cbdG==west.itv1.itv.com # (36) -- ITV West
map==cbdH==central.itv1.itv.com # (27) -- ITV Central
map==cbdJ==westcountry.itv1.itv.com # (33) -- ITV Westcountry
map==cbdP==hd.london.itv1.itv.com # (2118) -- ITVHD London
map==cbdQ==plus-1.central.itv1.itv.com # (2678) -- ITV Central+1
map==cbdR==plus-1.granada.itv1.itv.com # (2676) -- ITV Granada+1
map==cbdS==plus-1.london.itv1.itv.com # (2682) -- ITV London+1
map==cbdT==plus-1.meridian.itv1.itv.com # (2680) -- ITV Meridian+1
map==cbdV==plus-1.u.tv # (2677) -- UTV+1
map==cbdW==plus-1.west.itv1.itv.com # (2679) -- ITV West+1
map==cbdX==plus-1.yorkshire.itv1.itv.com # (2683) -- ITV Yorkshire+1
map==cbdY==hd.itv2.itv.com # (2661) -- ITV2HD
map==cbdZ==itv2.itv.com # (185) -- ITV2
map==cbdb==wales.radio.bbc.co.uk # (????) -- BBC Radio Wales
map==cbdf==cymru.radio.bbc.co.uk # (????) -- BBC Radio Cymru
map==cbdg==4lw.radio.bbc.co.uk # (????) -- BBC Radio 4 LW
map==cbdh==extra.4.radio.bbc.co.uk # (????) -- BBC Radio 4 Extra
map==cbdj==channel4.com # (132) -- Channel 4
map==cbdk==more4.channel4.com # (1959) -- More4
map==cbdm==filmfour.channel4.com # (160) -- Film4
map==cbdn==e4.channel4.com # (158) -- E4
map==cbdp==4music.channel4.com # (1544) -- 4Music
map==cbdq==channel5.com # (134) -- Channel 5
map==cbdr==plus-1.channel5.com # (2699) -- Channel 5 +1
map==cbds==hd.channel5.com # (2615) -- Channel 5 HD
map==cbdt==fivestar.channel5.com # (2062) -- 5*
map==cbdv==fiveusa.channel5.com # (2008) -- 5USA
map==cbdw==london.itv1.itv.com # (26) -- ITV London
map==cbdx==granada.itv1.itv.com # (29) -- ITV Granada
map==cbdy==tynetees.itv1.itv.com # (31) -- ITV Tyne Tees
map==cbdz==border.itv1.itv.com # (25) -- ITV Border
map==cbf2==uk.cartoonnetwork.com # (128) -- Cartoon Network
map==cbf4==god.tv # (137) -- God TV
map==cbf6==animalplanet.discoveryeurope.com # (39) -- Animal Planet
map==cbf7==plus-1.animalplanet.discoveryeurope.com # (1761) -- Animal Planet +1
map==cbf8==news.sky.com # (256) -- Sky News
map==cbf9==hd.news.sky.com # (2217) -- Sky News HD
map==cbfB==plus-1.fivestar.channel5.com # (2578) -- 5* +1
map==cbfF==hits.mtv.co.uk # (204) -- MTV Hits
map==cbfG==base.mtv.co.uk # (203) -- MTV Base
map==cbfH==mtv.co.uk # (202) -- MTV
map==cbfJ==plus-1.mtv.co.uk # (2547) -- MTV +1
map==cbfK==travelchannel.co.uk # (1462) -- Travel Channel
map==cbfM==plus-1.travelchannel.co.uk # (1855) -- Travel Channel +1
map==cbfN==tv5.org # (276) -- TV5
map==cbfP==zeeuk.com # (581) -- Zee TV
map==cbfQ==phoenixcne.com # (2246) -- Phoenix CNE Channel
map==cbfR==challengetv.co.uk # (131) -- Challenge
map==cbfS==plus-1.challengetv.co.uk # (1872) -- Challenge +1
map==cbfT==home.uktv.co.uk # (2134) -- Home
map==cbfV==plus-1.home.uktv.co.uk # (2135) -- Home +1
map==cbfW==boxoffice.sky.com # (1261) -- Sky Box Office
map==cbfX==bloomberg.com # (120) -- Bloomberg TV
map==cbfY==europe.cnn.com # (126) -- CNN
map==cbfZ==thebox.co.uk # (281) -- The Box
map==cbfb==central.stv.tv # (37) -- STV Central
map==cbfc==hd.stv.tv # (2219) -- STV HD
map==cbfd==north.stv.tv # (2203) -- STV North
map==cbff==plus-1.channel4.com # (2047) -- Channel 4 +1
map==cbfg==hd.channel4.com # (2056) -- Channel 4 HD
map==cbfh==s4c.co.uk # (721) -- S4C
map==cbfk==one.rte.ie # (231) -- RTÉ One
map==cbfm==two.rte.ie # (1870) -- RTÉ Two
map==cbfn==tg4.ie # (273) -- TG4
map==cbfp==tv3.ie # (2642) -- TV3
map==cbfr==plus-1.itv2.itv.com # (1990) -- ITV2+1
map==cbfs==plus-1.e4.channel4.com # (1161) -- E4 +1
map==cbft==hd.e4.channel4.com # (2195) -- E4 HD
map==cbfv==plus-1.itv3.itv.com # (2511) -- ITV3+1
map==cbfw==plus-1.more4.channel4.com # (1972) -- More4 +1
map==cbfy==plus-1.itv4.itv.com # (2568) -- ITV4+1
map==cbfz==citv.itv.com # (1981) -- CITV
map==cbg2==plus-1.nickelodeon.co.uk # (216) -- Nickelodeon +1
map==cbg5==jr.nickelodeon.co.uk # (215) -- Nick Jr.
map==cbg6==boomerang.cartoonnetwork.com # (1661) -- Boomerang
map==cbg7==plus-1.boomerang.cartoonnetwork.com # (129) -- Boomerang +1
map==cbg8==qvcuk.com # (228) -- QVC
map==cbgB==televisionx.co.uk # (????) -- Television X
map==cbgC==vh1.co.uk # (293) -- VH1
map==cbgD==classic.mtv.co.uk # (294) -- MTV Classic
map==cbgF==discoveryeurope.com # (147) -- Discovery Channel
map==cbgG==plus-1.discoveryeurope.com # (152) -- Discovery Channel +1
map==cbgJ==turbo.discoveryeurope.com # (155) -- Discovery Turbo
map==cbgK==alibi.uktv.co.uk # (292) -- Alibi
map==cbgM==plus-1.alibi.uktv.co.uk # (1993) -- Alibi +1
map==cbgN==universalchannel.co.uk # (180) -- Universal Channel
map==cbgP==hd.universalchannel.co.uk # (????) -- Universal Channel HD
map==cbgQ==plus-1.universalchannel.co.uk # (2591) -- Universal Channel +1
map==cbgR==uk.syfy.com # (2212) -- Syfy
map==cbgS==plus-1.uk.syfy.com # (2213) -- Syfy +1
map==cbgT==hd.uk.syfy.com # (2214) -- Syfy HD
map==cbgV==comedycentral.com # (1061) -- Comedy Central
map==cbgW==plus-1.comedycentral.com # (2013) -- Comedy Central +1
map==cbgX==setasia.tv # (267) -- Sony Entertainment TV Asia
map==cbgY==nickelodeon.co.uk # (217) -- Nickelodeon
map==cbgZ==tcmuk.tv # (271) -- TCM
map==cbgb==rocks.mtv.co.uk # (205) -- MTV Rocks
map==cbgd==plus-1.living.sky.com # (841) -- Sky Living +1
map==cbgf==hd.living.sky.com # (2585) -- Sky Living HD
map==cbgj==history.discoveryeurope.com # (2668) -- Discovery History
map==cbgk==plus-1.history.discoveryeurope.com # (2672) -- Discovery History +1
map==cbgm==science.discoveryeurope.com # (153) -- Discovery Science
map==cbgn==plus-1.science.discoveryeurope.com # (2600) -- Discovery Science +1
map==cbgr==history.com # (182) -- History
map==cbgs==plus-1.history.com # (183) -- History +1
map==cbgt==nationalgeographic.co.uk # (213) -- National Geographic Channel
map==cbgv==plus-1.nationalgeographic.co.uk # (214) -- National Geographic Channel +1
map==cbgw==gold.uktv.co.uk # (288) -- GOLD
map==cbgx==plus-1.gold.uktv.co.uk # (665) -- GOLD +1
map==cbgy==disneychannel.disney.co.uk # (156) -- Disney Channel
map==cbgz==plus-1.disneychannel.disney.co.uk # (157) -- Disney Channel +1
map==cbh2==sky-two.sky.com # (922) -- Sky2
map==cbh4==eentertainment.com # (1421) -- E! Entertainment
map==cbh5==mydancenation.com # (2457) -- Chart Show Dance
map==cbh6==scuzz.tv # (1143) -- Scuzz
map==cbh7==bliss.co.uk # (1144) -- Bliss
map==cbhB==euronews.com # (159) -- EuroNews
map==cbhC==b4utv.com # (43) -- B4U Movies
map==cbhF==extreme.com # (582) -- Extreme Sports Channel
map==cbhG==dance.mtv.co.uk # (610) -- MTV Dance
map==cbhH==star-plus.startv.com # (591) -- Star Plus
map==cbhM==goodfood.uktv.co.uk # (2136) -- Good Food
map==cbhN==plus-1.goodfood.uktv.co.uk # (2137) -- Good Food +1
map==cbhP==attheraces.co.uk # (661) -- At The Races
map==cbhQ==toons.nickelodeon.co.uk # (664) -- Nicktoons
map==cbhS==chartshow.com # (2439) -- Chart Show TV
map==cbhT==yesterday.uktv.co.uk # (801) -- Yesterday
map==cbhV==plus-1.yesterday.uktv.co.uk # (1521) -- Yesterday +1
map==cbhW==magictv.co.uk # (588) -- Magic
map==cbhX==smashhits.net # (592) -- Smash Hits!
map==cbhY==communitychannel.org # (1542) -- Community Channel
map==cbhZ==kerrang.com # (191) -- Kerrang! TV
map==cbhc==hd.filmfour.channel4.com # (2617) -- Film4 HD
map==cbhd==plus-1.filmfour.channel4.com # (2021) -- Film4 +1
map==cbhf==sky-one.sky.com # (248) -- Sky1
map==cbhg==health.discovery.com # (149) -- Discovery Home & Health
map==cbhh==plus-1.health.discovery.com # (1953) -- Discovery Home & Health +1
map==cbhj==mutv.manutd.com # (206) -- MUTV
map==cbhk==news.sports.sky.com # (300) -- Sky Sports News
map==cbhm==british.eurosport.com # (123) -- British Eurosport
map==cbhn==hd.british.eurosport.com # (2148) -- British Eurosport HD
map==cbhp==totalkiss.com # (609) -- Kiss TV
map==cbhq==junior.disney.co.uk # (421) -- Disney Junior
map==cbhr==plus.junior.disney.co.uk # (2542) -- Disney Junior +
map==cbhs==1.sports.sky.com # (262) -- Sky Sports 1
map==cbht==2.sports.sky.com # (264) -- Sky Sports 2
map==cbhv==3.sports.sky.com # (265) -- Sky Sports 3
map==cbhw==4.sports.sky.com # (2200) -- Sky Sports 4
map==cbhx==biography-channel.biography.com # (119) -- Bio
map==cbhy==bid.tv # (594) -- Bid
map==cbhz==1.arts.sky.com # (40) -- Sky Arts 1
map==cbj4==hd.discoveryeurope.com # (2145) -- Discovery Channel HD
map==cbj5==hd.nationalgeographic.co.uk # (2151) -- National Geographic Channel HD
map==cbj6==hd.boxoffice.sky.com # (????) -- Sky Box Office HD
map==cbj8==hd.1.sports.sky.com # (2174) -- Sky Sports 1 HD
map==cbj9==hd.2.sports.sky.com # (2175) -- Sky Sports 2 HD
map==cbjB==extra.comedycentral.com # (1201) -- Comedy Central Extra
map==cbjC==plus-1.extra.comedycentral.com # (2596) -- Comedy Central Extra +1
map==cbjD==hd.comedycentral.com # (2646) -- Comedy Central HD
map==cbjK==motors.tv # (1958) -- Motors TV
map==cbjM==shed.discoveryeurope.com # (2057) -- Discovery Shed
map==cbjN==1.truemovies.tv # (2059) -- True Movies
map==cbjP==pick.sky.com # (1963) -- Pick
map==cbjQ==plus-1.pick.sky.com # (2647) -- Pick +1
map==cbjW==3e.tv3.ie # (2502) -- 3e
map==cbjc==dave.uktv.co.uk # (2050) -- Dave
map==cbjd==plus-1.dave.uktv.co.uk # (2052) -- Dave ja vu
map==cbjf==price-drop.tv # (2640) -- Price Drop
map==cbjg==fxuk.tv # (1461) -- FOX
map==cbjh==eden.uktv.co.uk # (1601) -- Eden
map==cbjj==plus-1.eden.uktv.co.uk # (625) -- Eden +1
map==cbjk==hd.eden.uktv.co.uk # (2662) -- Eden HD
map==cbjn==horror.cbs.com # (2476) -- Horror Channel
map==cbjp==plus-1.horror.cbs.com # (2561) -- Horror Channel +1
map==cbjq==racinguk.tv # (1949) -- Racing UK
map==cbjr==chelseafc.com # (1741) -- Chelsea TV
map==cbjt==setantasport.ie # (2479) -- Setanta Sports Ireland
map==cbjw==plus-1.livingit.sky.com # (2190) -- Sky Livingit +1
map==cbjx==2.british.eurosport.com # (1876) -- British Eurosport 2
map==cbjy==really.uktv.co.uk # (1882) -- Really
map==cbk2==1.setantasport.ie # (2533) -- Setanta Sports 1
map==cbk8==too.cartoonnetwork.com # (742) -- CN Too
map==cbk9==popfun.co.uk # (2544) -- Pop
map==cbkB==hd.drama.movies.sky.com # (2209) -- Sky Movies Drama & Romance HD
map==cbkC==scifi.movies.sky.com # (2168) -- Sky Movies Sci-fi/Horror
map==cbkD==hd.scifi.movies.sky.com # (2161) -- Sky Movies Sci-fi/Horror HD
map==cbkH==greats.movies.sky.com # (260) -- Sky Movies Greats
map==cbkJ==hd.greats.movies.sky.com # (2160) -- Sky Movies Greats HD
map==cbkK==select.movies.sky.com # (253) -- Sky Movies Select
map==cbkM==hd.select.movies.sky.com # (2587) -- Sky Movies Select HD
map==cbkN==aljazeera.net # (2055) -- Al Jazeera English
map==cbkP==hd.thehistorychannel.co.uk # (2526) -- History HD
map==cbkQ==hd.sky-one.sky.com # (2139) -- Sky1 HD
map==cbkR==hd.1.arts.sky.com # (2154) -- Sky Arts 1 HD
map==cbkS==cartoonito.cartoonnetwork.com # (1983) -- Cartoonito
map==cbkT==bestdirect.tv # (2527) -- Best Direct
map==cbkX==gemstv.co.uk # (2528) -- Gems TV
map==cbkY==chsuk.tv # (????) -- Channel S
map==cbkc==wild.nationalgeographic.co.uk # (22) -- Nat Geo Wild
map==cbkd==crimeandinvestigation.co.uk # (2165) -- Crime & Investigation Network
map==cbkf==plus-1.crimeandinvestigation.co.uk # (2583) -- Crime & Investigation Network +1
map==cbkm==crime.movies.sky.com # (2206) -- Sky Movies Crime & Thriller
map==cbkn==hd.crime.movies.sky.com # (2207) -- Sky Movies Crime & Thriller HD
map==cbkp==premiere.movies.sky.com # (249) -- Sky Movies Premiere
map==cbkq==plus-1.premiere.movies.sky.com # (250) -- Sky Movies Premiere +1
map==cbkr==hd.premiere.movies.sky.com # (2552) -- Sky Movies Premiere HD
map==cbks==comedy.movies.sky.com # (257) -- Sky Movies Comedy
map==cbkt==hd.comedy.movies.sky.com # (2157) -- Sky Movies Comedy HD
map==cbkv==action.movies.sky.com # (2204) -- Sky Movies Action & Adventure
map==cbkw==hd.action.movies.sky.com # (2205) -- Sky Movies Action & Adventure HD
map==cbkx==family.movies.sky.com # (258) -- Sky Movies Family
map==cbky==hd.family.movies.sky.com # (2159) -- Sky Movies Family HD
map==cbkz==drama.movies.sky.com # (2208) -- Sky Movies Drama & Romance
map==cbm2==drama.cbs.com # (2177) -- CBS Drama
map==cbm4==action.cbs.com # (2178) -- CBS Action
map==cbm5==uk.viva.tv # (2184) -- Viva
map==cbm6==foodnetwork.com # (2185) -- Food Network
map==cbm7==plus-1.foodnetwork.com # (2186) -- Food Network +1
map==cbm8==hd.mgm.com # (2645) -- MGM HD
map==cbmB==weddingtv.com # (2566) -- wedding tv
map==cbmC==propellertv.co.uk # (2014) -- Propeller TV
map==cbmD==live.mtv.co.uk # (2150) -- MTV Live
map==cbmF==investigation.discoveryeurope.com # (2570) -- Investigation Discovery
map==cbmG==aittv.co.uk # (????) -- AIT International
map==cbmJ==hd.2.arts.sky.com # (2155) -- Sky Arts 2 HD
map==cbmM==hd.crimeandinvestigation.co.uk # (2144) -- Crime & Investigation Network HD
map==cbmN==hd.wild.nationalgeographic.co.uk # (2152) -- Nat Geo Wild HD
map==cbmP==quest.discoveryeurope.com # (2179) -- Quest
map==cbmQ==plus-1.quest.discoveryeurope.com # (2588) -- Quest +1
map==cbmS==uk.espn.com # (2142) -- ESPN
map==cbmT==hd.uk.espn.com # (2147) -- ESPN HD
map==cbmV==xd.disney.co.uk # (165) -- Disney XD
map==cbmW==plus-1.xd.disney.co.uk # (166) -- Disney XD +1
map==cbmX==hd.xd.disney.co.uk # (????) -- Disney XD HD
map==cbmZ==reality.cbs.com # (2586) -- CBS Reality
map==cbmb==tinypop.com # (2543) -- Tiny Pop
map==cbmc==dmax.discoveryeurope.com # (2545) -- DMAX
map==cbmd==plus-1.dmax.discoveryeurope.com # (2595) -- DMAX +1
map==cbmg==horseandcountry.tv # (2549) -- Horse & Country TV
map==cbmj==hd.3.sports.sky.com # (2176) -- Sky Sports 3 HD
map==cbmk==essentialflava.com # (2551) -- Flava
map==cbmm==hd.fxuk.tv # (2149) -- FOX HD
map==cbmp==1.movies4men.co.uk # (2058) -- Movies4Men
map==cbmq==plus-1.1.movies4men.co.uk # (2598) -- Movies4Men +1
map==cbmr==2.truemovies.tv # (2192) -- True Movies 2
map==cbmv==h2.history.com # (2559) -- H2
map==cbmw==mystyle.com # (2563) -- Style.
map==cbmx==watch.uktv.co.uk # (2115) -- Watch
map==cbmy==plus-1.watch.uktv.co.uk # (2116) -- Watch +1
map==cbmz==2.arts.sky.com # (2122) -- Sky Arts 2
map==cbn4==absoluteclassicrock.co.uk # (????) -- Absolute Classic Rock
map==cbn6==kissfmuk.com # (????) -- Kiss 100
map==cbn8==classicfm.com # (????) -- Classic FM
map==cbn9==talksport.co.uk # (????) -- talkSPORT
map==cbnC==plus-1.fxuk.tv # (1971) -- FOX+
map==cbnD==alba.bbc.co.uk # (2098) -- BBC Alba
map==cbnF==livingit.sky.com # (2189) -- Sky Livingit
map==cbnH==plus-1.fiveusa.channel5.co.uk # (2577) -- 5USA +1
map==cbnJ==mtvmusic.com # (????) -- MTV Music
map==cbnM==supercasino.com # (2569) -- Super Casino
map==cbnQ==tvmovies24.com # (2704) -- Movies 24
map==cbnR==plus.tvmovies24.com # (????) -- Movies 24 +
map==cbnS==plus-1.international.bet.com # (2597) -- BET:BlackEntTV +1
map==cbnT==international.bet.com # (2244) -- BET:BlackEntTV
map==cbnV==pbs.co.uk # (2698) -- PBS America
map==cbnW==xfm.co.uk # (????) -- Xfm
map==cbnX==absoluteradio.co.uk # (????) -- Absolute Radio
map==cbnb==2.jr.nickelodeon.co.uk # (2593) -- Nick Jr. Peppa
map==cbnc==world.nhk.or.jp # (2594) -- NHK World
map==cbnd==entertainment.truemovies.tv # (2603) -- True Entertainment
map==cbng==theactivechannel.com # (2605) -- The Active Channel
map==cbnh==fitness.tv # (2638) -- Fitness TV
map==cbnp==1.interactive.bbc.co.uk # (2040) -- BBC Red Button 1
map==cbnq==3d.sky.com # (2606) -- Sky 3D
map==cbnr==hd.4.sports.sky.com # (2607) -- Sky Sports 4 HD
map==cbns==atlantic.sky.com # (2685) -- Sky Atlantic
map==cbnt==hd.atlantic.sky.com # (2684) -- Sky Atlantic HD
map==cbnv==showcase.movies.sky.com # (????) -- Sky Movies Showcase
map==cbnw==hd.showcase.movies.sky.com # (????) -- Sky Movies Showcase HD
map==cbny==living.sky.com # (197) -- Sky Living
map==cbpb==smashhits.net # (????) -- Smash Hits
map==cbpc==kerrangradio.co.uk # (????) -- Kerrang!
map==cbpd==heatradio.co.uk # (????) -- Heat
map==cbpf==london.capitalfm.com # (????) -- 95.8 Capital FM
map==cbpg==heartlondon.co.uk # (????) -- Heart London
map==cbq5==hd.mtv.co.uk # (????) -- MTV HD
map==cbvD==capitalfm.com # (????) -- 96-106 Capital FM
map==cbvP==absolute80s.com # (????) -- Absolute 80s
map==cbvk==smmothradio.com # (????) -- 102.2 Smooth Radio
map==cbvz==2fm.rte.ie # (????) -- RTÉ 2FM
map==cbw4==mygoldmusic.co.uk # (????) -- Gold
map==cbwj==capitalxtra.com # (????) -- Capital XTRA
map==cbxQ==jazzfm.com # (????) -- Jazz FM
map==cbyN==newstalk.ie # (????) -- Newstalk 106-108 FM
map==cbyX==planetrock.com # (????) -- Planet Rock
map==cbyZ==premier.org.uk # (????) -- Premier Christian Radio
map==cbyc==lbc.co.uk # (????) -- LBC 97.3
map==cbyd==news.lbc.co.uk # (????) -- LBC News 1152
map==cbyn==magic.co.uk # (????) -- Magic 105.4
map==cbzF==lyricfm.rte.ie # (????) -- RTÉ lyric fm
map==cbzG==radio1.rte.ie # (????) -- RTÉ Radio 1 FM
map==cbzJ==rnag.rte.ie # (????) -- RTÉ Raidió na Gaeltachta
map==cbzV==spectrumradio.net # (????) -- Spectrum Radio FM
map==cbzw==realradiowales.com # (????) -- Real Radio Wales
Index: INSTALL
===================================================================
RCS file: /cvsroot/xmltv/xmltv/grab/uk_atlas/INSTALL,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** INSTALL 5 Dec 2013 10:36:19 -0000 1.2
--- INSTALL 5 Dec 2013 15:21:29 -0000 1.3
***************
*** 15,26 ****
tv_grab_uk_atlas (make sure it has execute permission)
- $HOME/.xmltv
- ------------
- tv_grab_uk_atlas.conf
-
$HOME/.xmltv/supplement/tv_grab_uk_atlas
----------------------------------------
! tv_grab_uk_atlas.map.conf
! tv_grab_uk_atlas.map.genre.conf
--- 15,24 ----
tv_grab_uk_atlas (make sure it has execute permission)
$HOME/.xmltv/supplement/tv_grab_uk_atlas
----------------------------------------
! tv_grab_uk_atlas.map.channels.conf
! tv_grab_uk_atlas.map.genres.conf
! tv_grab_uk_atlas.pa.genres.conf
! tv_grab_uk_atlas.user.map.conf
***************
*** 47,51 ****
3.
! The file 'tv_grab_uk_atlas.map.conf' has two purposes. Firstly you can map the channel ids used by Atlas into something more meaningful to your PVR. E.g.
map==cbdm==FILM4
will change 'cbdm' to 'FILM4' in the output XML.
--- 45,49 ----
3.
! The file 'tv_grab_uk_atlas.user.map.conf' has two purposes. Firstly you can map the channel ids used by Atlas into something more meaningful to your PVR. E.g.
map==cbdm==FILM4
will change 'cbdm' to 'FILM4' in the output XML.
***************
*** 58,69 ****
- IMPORTANT: the downloaded 'tv_grab_uk_atlas.map.conf' contains example lines to illustrate the format - you should edit this file to suit your own purposes!
-
-
- 4.
- The file 'tv_grab_uk_atlas.map.genre.conf' contains mappings from the category codes (genres) used by Press Association into meaningful category names. You shouldn't need to edit this file.
-
-
-
USAGE
--- 56,59 ----
***************
*** 165,169 ****
==========
! tv_validate_grabber will report an error similar to:
"Line 5 Invalid channel-id 'FILM4'"
--- 155,159 ----
==========
! tv_validate_grabber may report an error similar to:
"Line 5 Invalid channel-id 'FILM4'"
--- all_atlas_channels.txt DELETED ---
--- NEW FILE: tv_grab_uk_atlas.user.map.conf ---
#
# User defined map file.
#
# This file has two purposes:
# 1) Map the channel ids used by Atlas into something more meaningful to your PVR, e.g.
# map==cbdm==FILM4
# will change 'cbdm' to 'FILM4' in the output XML.
#
# These lines are of the form " map=={channel id}=={my name} ".
#
# Note: to pass tv_validate the "my name" portion must be a RFC2838 format name, e.g.
# map==cbdm==film4.atlas.co.uk
#
#
# 2) The second purpose is to likewise translate genre names. So if your PVR doesn't have
# a category for 'Science Fiction' but uses 'Sci-fi' instead, then you can specify
# cat==Science Fiction==Sci-fi
# and the output XML will have 'Sci-fi'.
#
# These lines are of the form " cat=={incoming genre}=={translated genre} ".
#
# If you want to delete a genre from the generated xml, then leave the 'translated genre' blank, e.g.
# cat==General Movie==
#
# A genre can be mapped to >1 translated genre (e.g. main genre + sub genre) by separating
# the 'translated genre' with a tilde character (~), e.g.
# cat==Adventure/War==Action Adventure~War
# will replace "Adventure/War" with the two seaparate genres "Action Adventure" and "War".
#
#
# This file is optional - you don't have to use it if you don't need it.
#
# Some example lines follow.
#
#
# Translate the programme genres
#
# cat==Environment==Nature
# cat==General Movie==
# cat==Advertisement==Shopping
# cat==Science Fiction==Sci-fi
# cat==Adventure/War==Action~War
#
# Convert incoming channel ids to channel names
#
# map==cbbw==BBC1
# map==cbbG==BBC2
# map==cbdw==ITV1
------------------------------------------------------------------------------
Sponsored by Intel(R) XDK
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631&iu=/4140/ostg.clktrk
_______________________________________________
xmltv-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xmltv-commit