Project

General

Profile

Actions

Feature #715

closed

Extend vdr-manager plugin to deliver more information to the client

Added by herrlado over 12 years ago. Updated over 12 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Start date:
09/21/2011
Due date:
% Done:

0%

Estimated time:

Description

Add vdr-manager backend (vdr-plugin) capability to send the channel provider along with the channel name and number.
Also on channel epg try also to send the next event along with the current event.

Actions #1

Updated by herrlado over 12 years ago

Done with providername

result += channel->Name();
result += ":";
result += channel->Provider();
result += "\r\n";

and

public Channel(final String channelData) {
String[] words = channelData.split(":");
this.number = Integer.valueOf(words[0].substring(1));
if (words.length > 2) {
this.name = words[1];
this.provider = words[2];
} else {
this.name = words[1];
this.provider = "Unknown";
}
}

Actions #2

Updated by herrlado over 12 years ago

  • Status changed from New to Closed
Actions

Also available in: Atom PDF