X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/47eaccfd3d5c4ca46ff339cb64a077a0f269d671..daaf4b6ba8fbddd81553e0076385220ef1a7f327:/lib/python/Plugins/tuxboxplugins/plugin.py diff --git a/lib/python/Plugins/tuxboxplugins/plugin.py b/lib/python/Plugins/tuxboxplugins/plugin.py index 1e8d52ee..01d57456 100644 --- a/lib/python/Plugins/tuxboxplugins/plugin.py +++ b/lib/python/Plugins/tuxboxplugins/plugin.py @@ -1,3 +1,4 @@ +# must be fixed for the new plugin interface from enigma import * from Screens.Screen import Screen from Screens.MessageBox import MessageBox @@ -7,8 +8,44 @@ from Components.Label import Label import os def getPlugins(): - return [("Tuxbox-Plugin1", "function", "main", 0), - ("Tuxbox-Plugin2", "function", "main", 1)] + pluginlist = [] + + try: + dir = os.listdir("/usr/lib/tuxbox/plugins/") + + for x in dir: + try: + if x[-3:] == "cfg": + params = getPluginParams(x) + pluginlist.append((params["name"], params["desc"], "function", "main", x)) + except: + pass + except: + print "no tuxbox plugins found" + return pluginlist + +def getPicturePaths(): + list = [] + try: + dir = os.listdir("/usr/lib/tuxbox/plugins/") + for x in dir: list.append("tuxbox.png") + except: + print "no tuxbox plugins found" + return list + +def getPluginParams(file): + params = {} + try: + file = open("/usr/lib/tuxbox/plugins/" + file, "r") + for x in file.readlines(): + split = x.split("=") + params[split[0]] = split[1] + file.close() + except: + print "not tuxbox plugins found" + + return params def main(session, args): - print "Running plugin with number", args \ No newline at end of file + print "Running plugin " + args[:-4] + ".so with config file", args + print getPluginParams(args) \ No newline at end of file