From 5b38455540163e5f738dd649bec87c9fca75a420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matti=20Lehtim=C3=A4ki?= Date: Sun, 13 May 2012 11:59:23 +0300 Subject: Improve example configuration files. Version 0.2.0. --- HISTORY | 3 ++- epgfixer/blacklist.conf | 3 +++ epgfixer/charset.conf | 4 ++++ epgfixer/epgclone.conf | 5 +++++ epgfixer/regexp.conf | 9 ++++++--- 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/HISTORY b/HISTORY index 6d0bce3..7404209 100644 --- a/HISTORY +++ b/HISTORY @@ -1,13 +1,14 @@ VDR Plugin 'epgfixer' Revision History -------------------------------------- -2012-??-??: Version 0.2.0 +2012-05-13: Version 0.2.0 - Support for ignoring EPG data for selected channels. - Support for copying EPG data from one channel to another. - Fix character set conversion for selected channels. - Fix and improve Makefile (thanks to Ville Skyttä and Rolf Ahrenberg). - Fix compiling with g++-4.7. +- Improve example configuration files. 2012-05-05: Version 0.1.0 diff --git a/epgfixer/blacklist.conf b/epgfixer/blacklist.conf index 7cd9ced..1de7e50 100644 --- a/epgfixer/blacklist.conf +++ b/epgfixer/blacklist.conf @@ -1,3 +1,6 @@ # Ignore EPG data for channels 1, 2 and 3 #1,2,3 +# Also channel IDs can be used: +#S19.2E-1-1089-12003-0 + diff --git a/epgfixer/charset.conf b/epgfixer/charset.conf index d2b14b3..3a266c9 100644 --- a/epgfixer/charset.conf +++ b/epgfixer/charset.conf @@ -2,7 +2,11 @@ # used by VDR. Used for channels which broadcast incorrect character set # (in this example iso8859-9). #1,2,3:iso8859-9=iso8859-1 + # Convert character set of all channels from iso8859-1 to character set # used by VDR. Used for channels which do not broadcast any character set but # use a non-standard character set. #1,2,3:iso8859-1 + +# Also channel IDs can be used: +#S19.2E-1-1089-12003-0:iso8859-1 diff --git a/epgfixer/epgclone.conf b/epgfixer/epgclone.conf index 11ba183..8e7300b 100644 --- a/epgfixer/epgclone.conf +++ b/epgfixer/epgclone.conf @@ -1,2 +1,7 @@ # Copy EPG data from channel 1 to 3 #1=3 + +# Also channel IDs can be used: +#S19.2E-1-1089-12003-0:3 + + diff --git a/epgfixer/regexp.conf b/epgfixer/regexp.conf index 8b868c8..bf7a07d 100644 --- a/epgfixer/regexp.conf +++ b/epgfixer/regexp.conf @@ -1,10 +1,13 @@ # Example of disabled regexp: -!title=^(?:Movie: |Document: )(?.*)$ +#!title=^(?:Movie: |Document: )(?<title>.*)$ # Remove "Movie: " or "Document: " from the beginning of title field for # channels 1, 3 and 5: -1,3,5:title=^(?:Movie: |Document: )(?<title>.*)$ +#1,3,5:title=^(?:Movie: |Document: )(?<title>.*)$ + +# Also channel IDs can be used: +#S19.2E-1-1089-12003-0:title=^(?:Movie: |Document: )(?<title>.*)$ # Move parental rating from end of title to correct EPG field: # Program title (12) -title=^(?<title>.*)[ ][(](?<rating>[0-9S]{1,2})[)][ ]*$ +#title=^(?<title>.*)[ ][(](?<rating>[0-9S]{1,2})[)][ ]*$ -- cgit v1.2.3