From 82eeb8a239cfce4d86076cfe2c478296da826917 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Fri, 12 Sep 2014 09:02:23 +0200 Subject: [PATCH] DVR: Show the status in failed grid, create doc templates... --- docs/html/config_dvrauto.html | 10 ++++++++++ docs/html/config_dvrlog.html | 9 +++++++++ src/dvr/dvr_db.c | 2 +- src/webui/static/app/dvr.js | 8 ++++---- 4 files changed, 24 insertions(+), 5 deletions(-) create mode 100644 docs/html/config_dvrauto.html create mode 100644 docs/html/config_dvrlog.html diff --git a/docs/html/config_dvrauto.html b/docs/html/config_dvrauto.html new file mode 100644 index 00000000..e23b70cf --- /dev/null +++ b/docs/html/config_dvrauto.html @@ -0,0 +1,10 @@ +
+ +

+ This tab is used to manipulate with the Digital Video Recorder entries - + the automatic recording. + +

+ A volunteer required to fill this... + +

diff --git a/docs/html/config_dvrlog.html b/docs/html/config_dvrlog.html new file mode 100644 index 00000000..b7d77006 --- /dev/null +++ b/docs/html/config_dvrlog.html @@ -0,0 +1,9 @@ +
+ +

+ This tab is used to manipulate with the Digital Video Recorder entries. + +

+ A volunteer required to fill this... + +

diff --git a/src/dvr/dvr_db.c b/src/dvr/dvr_db.c index ce528591..b564cc45 100644 --- a/src/dvr/dvr_db.c +++ b/src/dvr/dvr_db.c @@ -1863,7 +1863,7 @@ const idclass_t dvr_entry_class = { .id = "status", .name = "Status", .get = dvr_entry_class_status_get, - .opts = PO_RDONLY | PO_NOSAVE | PO_HIDDEN, + .opts = PO_RDONLY | PO_NOSAVE, }, { .type = PT_STR, diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index 5196fa52..496bdff7 100644 --- a/src/webui/static/app/dvr.js +++ b/src/webui/static/app/dvr.js @@ -163,7 +163,7 @@ tvheadend.dvr_upcoming = function(panel, index) { selected: selected, beforeedit: beforeedit, help: function() { - new tvheadend.help('DVR', 'config_dvr.html'); + new tvheadend.help('DVR', 'config_dvrlog.html'); }, }); @@ -245,7 +245,7 @@ tvheadend.dvr_finished = function(panel, index) { tbar: [downloadButton], selected: selected, help: function() { - new tvheadend.help('DVR', 'config_dvr.html'); + new tvheadend.help('DVR', 'config_dvrlog.html'); }, }); @@ -279,7 +279,7 @@ tvheadend.dvr_failed = function(panel, index) { plugins: [actions], lcol: [actions], help: function() { - new tvheadend.help('DVR', 'config_dvr.html'); + new tvheadend.help('DVR', 'config_dvrlog.html'); }, }); @@ -383,7 +383,7 @@ tvheadend.autorec_editor = function(panel, index) { direction: 'ASC' }, help: function() { - new tvheadend.help('DVR', 'config_dvr.html'); + new tvheadend.help('DVR', 'config_dvrauto.html'); }, });