diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-05 15:27:02 +0300 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-05 15:27:02 +0300 |
commit | bc5ae964c6cf9b24aab49383637894b2e88651b7 (patch) | |
tree | e818516d0d0a29ca4a26173396988fec372d63bd /epgfixer | |
parent | 3edad9d50e13e140dc0fa1ef1323c7b80e325a78 (diff) | |
download | vdr-plugin-epgfixer-bc5ae964c6cf9b24aab49383637894b2e88651b7.tar.gz vdr-plugin-epgfixer-bc5ae964c6cf9b24aab49383637894b2e88651b7.tar.bz2 |
Improve README. Comment out all lines in example files. Add support for help texts in setup menu.
Diffstat (limited to 'epgfixer')
-rw-r--r-- | epgfixer/charset.conf | 4 | ||||
-rw-r--r-- | epgfixer/regexp.conf | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/epgfixer/charset.conf b/epgfixer/charset.conf index 5dd81ef..18788c8 100644 --- a/epgfixer/charset.conf +++ b/epgfixer/charset.conf @@ -1,6 +1,6 @@ # Convert character set of channels 1, 2 and 3 from iso8859-1 to character set # used by VDR -1,2,3:iso8859-1 +#1,2,3:iso8859-1 # Convert character set of all channels from iso8859-1 to character set # used by VDR -iso8859-1 +#iso8859-1 diff --git a/epgfixer/regexp.conf b/epgfixer/regexp.conf index 7495aaa..8b868c8 100644 --- a/epgfixer/regexp.conf +++ b/epgfixer/regexp.conf @@ -1,4 +1,10 @@ -# Remove "Movie: " or "Document: " from the beginning of title field: -title=^(?:Movie: |Document: )(?<title>.*)$ +# Example of disabled regexp: +!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>.*)$ + # Move parental rating from end of title to correct EPG field: +# Program title (12) title=^(?<title>.*)[ ][(](?<rating>[0-9S]{1,2})[)][ ]*$ |