Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#1208 closed defect (fixed)

http status page cuts off descriptions on remote encoder status

Reported by: bobnvic@… Owned by: Isaac Richards
Priority: minor Milestone: 0.20
Component: mythtv Version:
Severity: low Keywords:
Cc: Ticket locked: no

Description

The descriptions for remote encoder status on the http mythtv status page (port 6544) does not include what it is recording. The is an example:

Encoder 1 is local on mythbox and is not recording. Encoder 2 is local on mythbox and is watching Live TV: 'Flight 93' on ARTS. This recording will end at 1:00 PM. Encoder 3 is remote on mythfrontend and is watching Live TV

This is true for both Live TV and scheduled recordings. Please let me know if there is anything I can provide to address this, admittedly, minor issue. Running svn 8849 on both the master and slave backends.

Change History (6)

comment:1 Changed 18 years ago by Oscar Carlsson

Resolution: invalid
Status: newclosed

Feature request without patch.

comment:2 Changed 18 years ago by Isaac Richards

Resolution: invalid
Status: closedreopened

comment:3 Changed 18 years ago by Oscar Carlsson

Don't know if this is enough, can't test with a remote backend, but it works with LiveTV.

Index: mainserver.cpp
===================================================================
--- mainserver.cpp      (revision 8863)
+++ mainserver.cpp      (working copy)
@@ -3736,8 +3736,8 @@
                 case kState_RecordingOnly:
                 case kState_WatchingRecording:
                 {
-                    if (isLocal)
-                    {
+                    //if (isLocal)
+                    //{
                         ProgramInfo *pInfo = elink->GetRecording();

                         if (pInfo)
@@ -3745,7 +3745,7 @@
                             FillProgramInfo(pDoc, encoder, pInfo);
                             delete pInfo;
                         }
-                    }
+                    //}

                     break;
                 }

comment:4 Changed 18 years ago by bobnvic@…

I can confirm that taking out those lines in mainserver.cpp provides the additional information for my remote backend when it is doing both LiveTV and scheduled recordings. Thanks.

comment:5 Changed 18 years ago by Oscar Carlsson

Resolution: fixed
Status: reopenedclosed

Hmm, [8928], no idea why it wasn't closed by the commit.

comment:6 Changed 18 years ago by Oscar Carlsson

Milestone: 0.20
Note: See TracTickets for help on using tickets.