X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e5be8d7dbdb42cc287d6ba65ecc3a08685412fc1..9289748ceda0195c346437632be8558587441287:/lib/python/Plugins/update.py diff --git a/lib/python/Plugins/update.py b/lib/python/Plugins/update.py index 01e986e8..e69de29b 100644 --- a/lib/python/Plugins/update.py +++ b/lib/python/Plugins/update.py @@ -1,51 +0,0 @@ -from enigma import * -from Screens.Screen import Screen -from Screens.MessageBox import MessageBox -from Components.ActionMap import ActionMap -from Components.Label import Label - -import os - -class Example(Screen): - skin = """ - - - """ - - def __init__(self, session): - self.skin = Example.skin - Screen.__init__(self, session) - - self["text"] = Label("Please press OK!") - - self["actions"] = ActionMap(["WizardActions"], - { - "ok": self.ok, - "back": self.close - }, -1) - - def ok(self): - 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): - session.open(Example) - - -def getPicturePath(): - return "" - -def getPluginName(): - return "Softwareupdate" \ No newline at end of file