/[projects]/misc/xbmc/plugin.video.todic/default.py
ViewVC logotype

Diff of /misc/xbmc/plugin.video.todic/default.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3255 by torben, Mon Mar 4 13:36:03 2019 UTC revision 3256 by torben, Tue Mar 5 10:58:04 2019 UTC
# Line 27  __key__ = __addon__.getSetting('xbmckey' Line 27  __key__ = __addon__.getSetting('xbmckey'
27  __entrypoint__ = __addon__.getSetting('entrypoint').lower()  __entrypoint__ = __addon__.getSetting('entrypoint').lower()
28  __backend__ = "https://todic.dk/xbmc.php?xbmckey=" + __key__  __backend__ = "https://todic.dk/xbmc.php?xbmckey=" + __key__
29    
30    
31  if __entrypoint__ == "alternative":  if __entrypoint__ == "alternative":
32      __backend__ = "https://alt.todic.dk/xbmc.php?xbmckey=" + __key__      __backend__ = "https://alt.todic.dk/xbmc.php?xbmckey=" + __key__
33    
# Line 214  def open_url_safe(url): Line 215  def open_url_safe(url):
215    
216    
217  def rootMenu():  def rootMenu():
218        kodi_ver = xbmc.getInfoLabel('System.BuildVersion')
219        plugin_ver = __addon__.getAddonInfo('version')
220        msgurl = __backend__ + "&action=messages&kodi=" + urllib.quote_plus(kodi_ver) + "&todicplugin=" + urllib.quote_plus(plugin_ver)
221    
222      msg = open_url(__backend__ + "&action=messages")      msg = open_url(msgurl)
223      msg = msg.strip()      msg = msg.strip()
224    
225      if msg != "":      if msg != "":

Legend:
Removed from v.3255  
changed lines
  Added in v.3256

  ViewVC Help
Powered by ViewVC 1.1.20