Actions
Feature #715
closedExtend vdr-manager plugin to deliver more information to the client
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.
Updated by herrlado about 13 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