summaryrefslogtreecommitdiff
path: root/epgfixer
diff options
context:
space:
mode:
authorMatti Lehtimäki <matti.lehtimaki@gmail.com>2012-05-05 15:27:02 +0300
committerMatti Lehtimäki <matti.lehtimaki@gmail.com>2012-05-05 15:27:02 +0300
commitbc5ae964c6cf9b24aab49383637894b2e88651b7 (patch)
treee818516d0d0a29ca4a26173396988fec372d63bd /epgfixer
parent3edad9d50e13e140dc0fa1ef1323c7b80e325a78 (diff)
downloadvdr-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.conf4
-rw-r--r--epgfixer/regexp.conf10
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})[)][ ]*$