Feature #715
closed
Extend vdr-manager plugin to deliver more information to the client
Added by herrlado about 13 years ago.
Updated about 13 years ago.
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.
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";
}
}
- Status changed from New to Closed
Also available in: Atom
PDF