Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR: Show the status in failed grid, create doc templates...
  • Loading branch information
perexg committed Sep 12, 2014
1 parent 49cdc5a commit 82eeb8a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
10 changes: 10 additions & 0 deletions docs/html/config_dvrauto.html
@@ -0,0 +1,10 @@
<div class="hts-doc-text">

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

<p>
A volunteer required to fill this...

</div>
9 changes: 9 additions & 0 deletions docs/html/config_dvrlog.html
@@ -0,0 +1,9 @@
<div class="hts-doc-text">

<p>
This tab is used to manipulate with the Digital Video Recorder entries.

<p>
A volunteer required to fill this...

</div>
2 changes: 1 addition & 1 deletion src/dvr/dvr_db.c
Expand Up @@ -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,
Expand Down
8 changes: 4 additions & 4 deletions src/webui/static/app/dvr.js
Expand Up @@ -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');
},
});

Expand Down Expand Up @@ -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');
},
});

Expand Down Expand Up @@ -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');
},
});

Expand Down Expand Up @@ -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');
},
});

Expand Down

0 comments on commit 82eeb8a

Please sign in to comment.