add a small ipkg upgrade plugin
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Wed, 21 Dec 2005 05:16:20 +0000 (05:16 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Wed, 21 Dec 2005 05:16:20 +0000 (05:16 +0000)
lib/python/Components/PluginComponent.py
lib/python/Plugins/Makefile.am
lib/python/Plugins/update.py [new file with mode: 0644]

index 2638206..f1a0a95 100644 (file)
@@ -27,7 +27,10 @@ class PluginComponent:
                return list
        
        def runPlugin(self, plugin, session):
-               exec "import " + self.prefix + plugin[2]
-               eval(self.prefix + plugin[2]).main(session)
+               try:
+                       exec "import " + self.prefix + plugin[2]
+                       eval(self.prefix + plugin[2]).main(session)
+               except:
+                       print "exec of plugin failed!"
 
 plugins = PluginComponent()
index d963b3c..febecab 100644 (file)
@@ -2,4 +2,5 @@ installdir = $(LIBDIR)/enigma2/python/Plugins
 
 install_PYTHON =       \
        __init__.py \
-       example.py
\ No newline at end of file
+       update.py \
+#      example.py 
diff --git a/lib/python/Plugins/update.py b/lib/python/Plugins/update.py
new file mode 100644 (file)
index 0000000..7126875
--- /dev/null
@@ -0,0 +1,42 @@
+from enigma import *
+from Screens.Screen import Screen
+from Components.ActionMap import ActionMap
+from Components.Label import Label
+
+import os
+
+class Example(Screen):
+       skin = """
+               <screen position="100,100" size="550,400" title="IPKG upgrade..." >
+                       <widget name="text" position="0,0" size="550,400" font="Arial;15" />
+               </screen>"""
+               
+       def __init__(self, session):
+               self.skin = Example.skin
+               Screen.__init__(self, session)
+
+               self["text"] = Label("Press OK to upgrade")
+                               
+               self["actions"] = ActionMap(["WizardActions"], 
+               {
+                       "ok": self.ok,
+                       "back": self.close
+               }, -1)
+               
+       def ok(self):
+               lines = os.popen("ipkg update && ipkg upgrade", "r").readlines()
+               string = ""
+               for x in lines:
+                       string += x
+               self["text"].setText(string)
+               
+               
+def main(session):
+       session.open(Example)
+       
+
+def getPicturePath():
+               return ""
+
+def getPluginName():
+               return "Softwareupdate"
\ No newline at end of file