some changes for the update plugin
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Mon, 26 Dec 2005 00:04:11 +0000 (00:04 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Mon, 26 Dec 2005 00:04:11 +0000 (00:04 +0000)
still not very user friendly

lib/python/Plugins/update.py

index 756ed3814b419dacce3ecd90cf345fc9a7e38521..01e986e8bd2e60466f68c170a127c948ff61d3f2 100644 (file)
@@ -1,5 +1,6 @@
 from enigma import *
 from Screens.Screen import Screen
 from enigma import *
 from Screens.Screen import Screen
+from Screens.MessageBox import MessageBox
 from Components.ActionMap import ActionMap
 from Components.Label import Label
 
 from Components.ActionMap import ActionMap
 from Components.Label import Label
 
@@ -15,7 +16,7 @@ class Example(Screen):
                self.skin = Example.skin
                Screen.__init__(self, session)
 
                self.skin = Example.skin
                Screen.__init__(self, session)
 
-               self["text"] = Label("Press OK to upgrade")
+               self["text"] = Label("Please press OK!")
                                
                self["actions"] = ActionMap(["WizardActions"], 
                {
                                
                self["actions"] = ActionMap(["WizardActions"], 
                {
@@ -24,11 +25,19 @@ class Example(Screen):
                }, -1)
                
        def ok(self):
                }, -1)
                
        def ok(self):
-               lines = os.popen("ipkg update && ipkg upgrade", "r").readlines()
-               string = ""
-               for x in lines:
-                       string += x
-               self["text"].setText(string)
+               self.session.openWithCallback(self.doUpdate, MessageBox, _("Do you want to update your Dreambox?\nAfter pressing OK, please wait!"))
+               
+       def doUpdate(self, val = False):
+               
+               if val:
+                       print "updating"
+                       lines = os.popen("ipkg update && ipkg upgrade", "r").readlines()
+                       string = ""
+                       for x in lines:
+                               string += x
+                       self["text"].setText("Updating finished. Here is the result:\n\n" + string)
+               else:
+                       self.close()            
                
                
 def main(session):
                
                
 def main(session):