diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-13 11:59:23 +0300 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-13 11:59:23 +0300 |
commit | 5b38455540163e5f738dd649bec87c9fca75a420 (patch) | |
tree | a97dc13bef32a7fc8c33bc32b09c3a073e56b41e /epgfixer/regexp.conf | |
parent | ab07e19f70541eb6e7eb07362dd4cbf40eb08b6a (diff) | |
download | vdr-plugin-epgfixer-5b38455540163e5f738dd649bec87c9fca75a420.tar.gz vdr-plugin-epgfixer-5b38455540163e5f738dd649bec87c9fca75a420.tar.bz2 |
Improve example configuration files. Version 0.2.0.v0.2.0
Diffstat (limited to 'epgfixer/regexp.conf')
-rw-r--r-- | epgfixer/regexp.conf | 9 |
1 files changed, 6 insertions, 3 deletions
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>.*)$ +#!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})[)][ ]*$ |