PDA

View Full Version : [ViX_Misc] (request) permanent Links in HbbTV-applications list



Lothar2
15-11-16, 19:01
Hello,

i search for a way to set permanent available links in the HbbTV-applications list. so we can set links they are available on all channels.
Actual i have change the red marked code in hbbtv/plugin.py:


def menu_hbbtv_applications(self):
applications = []
applications.append(("putpat.tv", "http://www.putpat.tv/cehtml/v1/index.cehtml"))
if self._applicationList is not None:
for x in self._applicationList:
applications.append((x["name"], x))
else:
applications.append((_("No detected HbbTV applications."), None))
self.session.openWithCallback(self.start_applicati on_selected, ChoiceBox, title=_("Please choose an HbbTV application."), list=applications)

and become this output in menu:

51370

But the Link don`t work and do nothing. Does somebody has any idea how to implement this? And the links then work, regardless of which channel is located.

Greeting Lothar