]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
DVR autorec: use 'Start After' and 'Start Before' for the start time window
authorJaroslav Kysela <perex@perex.cz>
Fri, 26 Dec 2014 15:07:21 +0000 (16:07 +0100)
committerJaroslav Kysela <perex@perex.cz>
Fri, 26 Dec 2014 15:09:02 +0000 (16:09 +0100)
docs/html/dvr_autorec.html
src/dvr/dvr_autorec.c

index cdd1a81e7768b9b707f1944db01ff9a100070def..1a482ecfd69cf31d36cd1e6ac6b6c0bcf2db0d4c 100644 (file)
@@ -79,13 +79,13 @@ The maximal duration of a matching event - in other words, only match programmes
 <dd>
 On which specific days of the week to find matching programmes.
 <p>
-<dt><b>Start Time</b>
+<dt><b>Start After</b>
 <dd>
-An event which starts between this "start time" and "start time up to" will be matched (including).
+An event which starts between this "start after" and "start before" will be matched (including boundary values).
 <p>
-<dt><b>Start Up To</b>
+<dt><b>Start Before</b>
 <dd>
-The start up to limit.
+An event which starts between this "start after" and "start before" will be matched (including boundary values).
 <p>
 <dt><b>Priority</b>
 <dd>
index 1ff6477a1839c5868828125b3d60784934f8c1de..1cf8bb68c0f1781ea6032888369fd760c1c1797b 100644 (file)
@@ -876,7 +876,7 @@ const idclass_t dvr_autorec_entry_class = {
     {
       .type     = PT_STR,
       .id       = "start",
-      .name     = "Start Time",
+      .name     = "Start After",
       .set      = dvr_autorec_entry_class_start_set,
       .get      = dvr_autorec_entry_class_start_get,
       .list     = dvr_autorec_entry_class_time_list_,
@@ -885,7 +885,7 @@ const idclass_t dvr_autorec_entry_class = {
     {
       .type     = PT_STR,
       .id       = "start_window",
-      .name     = "Start Up To",
+      .name     = "Start Before",
       .set      = dvr_autorec_entry_class_start_window_set,
       .get      = dvr_autorec_entry_class_start_window_get,
       .list     = dvr_autorec_entry_class_time_list_,