aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-28 19:52:04 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-28 19:52:04 +0000
commit1b01c9c3c05fdd42327406161bd5c51e05fbca19 (patch)
tree8a6208b5d1f3001d4263a8634a122f8d1098ff6f /lib/python
parent1aa0603ed3b7ff359f2ebc46f6a97ad6ea009ae6 (diff)
downloadenigma2-1b01c9c3c05fdd42327406161bd5c51e05fbca19.tar.gz
enigma2-1b01c9c3c05fdd42327406161bd5c51e05fbca19.zip
remove non working wrapper class to add a (unneeded) .get() call to
eConsoleAppContainers.. so now all external plugins must remove this .get() calls... example: cont = eConsoleAppContainer() cont.appClosed.append(cb_func) # old was cont.appClosed.get().append(cb_func)
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/Console.py8
-rw-r--r--lib/python/Components/DreamInfoHandler.py2
-rw-r--r--lib/python/Components/Ipkg.py8
-rw-r--r--lib/python/Components/Network.py8
-rw-r--r--lib/python/Components/Task.py6
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/Process.py4
-rw-r--r--lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py2
-rw-r--r--lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py40
-rw-r--r--lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py4
-rw-r--r--lib/python/Screens/Console.py8
-rw-r--r--lib/python/Screens/PluginBrowser.py8
-rw-r--r--lib/python/Screens/ScanSetup.py8
12 files changed, 53 insertions, 53 deletions
diff --git a/lib/python/Components/Console.py b/lib/python/Components/Console.py
index 45da72f2..c451eba7 100644
--- a/lib/python/Components/Console.py
+++ b/lib/python/Components/Console.py
@@ -19,8 +19,8 @@ class Console(object):
self.extra_args[name] = extra_args
self.callbacks[name] = callback
self.appContainers[name] = eConsoleAppContainer()
- self.appContainers[name].dataAvail.get().append(boundFunction(self.dataAvailCB,name))
- self.appContainers[name].appClosed.get().append(boundFunction(self.finishedCB,name))
+ self.appContainers[name].dataAvail.append(boundFunction(self.dataAvailCB,name))
+ self.appContainers[name].appClosed.append(boundFunction(self.finishedCB,name))
retval = self.appContainers[name].execute(cmd)
if retval:
self.finishedCB(name, retval)
@@ -29,8 +29,8 @@ class Console(object):
self.appResults[name] += data
def finishedCB(self, name, retval):
- del self.appContainers[name].dataAvail.get()[:]
- del self.appContainers[name].appClosed.get()[:]
+ del self.appContainers[name].dataAvail[:]
+ del self.appContainers[name].appClosed[:]
data = self.appResults[name]
extra_args = self.extra_args[name]
del self.appContainers[name]
diff --git a/lib/python/Components/DreamInfoHandler.py b/lib/python/Components/DreamInfoHandler.py
index 900a2180..c5f82629 100644
--- a/lib/python/Components/DreamInfoHandler.py
+++ b/lib/python/Components/DreamInfoHandler.py
@@ -110,7 +110,7 @@ class DreamInfoHandler:
self.currentlyInstallingMetaIndex = None
self.console = eConsoleAppContainer()
- self.console.appClosed.get().append(self.installNext)
+ self.console.appClosed.append(self.installNext)
self.reloadFavourites = False
self.statusCallback = statusCallback
diff --git a/lib/python/Components/Ipkg.py b/lib/python/Components/Ipkg.py
index 79389b4d..31889bcf 100644
--- a/lib/python/Components/Ipkg.py
+++ b/lib/python/Components/Ipkg.py
@@ -31,8 +31,8 @@ class IpkgComponent:
def runCmd(self, cmd):
print "executing", self.ipkg, cmd
- self.cmd.appClosed.get().append(self.cmdFinished)
- self.cmd.dataAvail.get().append(self.cmdData)
+ self.cmd.appClosed.append(self.cmdFinished)
+ self.cmd.dataAvail.append(self.cmdData)
if self.cmd.execute(self.ipkg + " " + cmd):
self.cmdFinished(-1)
@@ -56,8 +56,8 @@ class IpkgComponent:
def cmdFinished(self, retval):
self.callCallbacks(self.EVENT_DONE)
- self.cmd.appClosed.get().remove(self.cmdFinished)
- self.cmd.dataAvail.get().remove(self.cmdData)
+ self.cmd.appClosed.remove(self.cmdFinished)
+ self.cmd.dataAvail.remove(self.cmdData)
def cmdData(self, data):
print "data:", data
diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py
index ecc54787..9b0898e0 100644
--- a/lib/python/Components/Network.py
+++ b/lib/python/Components/Network.py
@@ -332,13 +332,13 @@ class Network:
def getLinkState(self,iface,callback):
self.dataAvail = callback
cmd = self.ethtool_bin + " " + iface
- self.container.appClosed.get().append(self.cmdFinished)
- self.container.dataAvail.get().append(callback)
+ self.container.appClosed.append(self.cmdFinished)
+ self.container.dataAvail.append(callback)
self.container.execute(cmd)
def cmdFinished(self,retval):
- self.container.appClosed.get().remove(self.cmdFinished)
- self.container.dataAvail.get().remove(self.dataAvail)
+ self.container.appClosed.remove(self.cmdFinished)
+ self.container.dataAvail.remove(self.dataAvail)
def stopContainer(self):
self.container.kill()
diff --git a/lib/python/Components/Task.py b/lib/python/Components/Task.py
index 022ca1f1..7ea64f1a 100644
--- a/lib/python/Components/Task.py
+++ b/lib/python/Components/Task.py
@@ -162,9 +162,9 @@ class Task(object):
self.task_progress_changed = task_progress_changed
from enigma import eConsoleAppContainer
self.container = eConsoleAppContainer()
- self.container.appClosed.get().append(self.processFinished)
- self.container.stdoutAvail.get().append(self.processStdout)
- self.container.stderrAvail.get().append(self.processStderr)
+ self.container.appClosed.append(self.processFinished)
+ self.container.stdoutAvail.append(self.processStdout)
+ self.container.stderrAvail.append(self.processStderr)
assert self.cmd is not None
assert len(self.args) >= 1
diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py
index 2123b376..f54fcb00 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/Process.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py
@@ -12,7 +12,7 @@ class png2yuvTask(Task):
def run(self, callback, task_progress_changed):
Task.run(self, callback, task_progress_changed)
- self.container.stdoutAvail.get().remove(self.processStdout)
+ self.container.stdoutAvail.remove(self.processStdout)
self.container.dumpToFile(self.dumpFile)
def processStderr(self, data):
@@ -44,7 +44,7 @@ class spumuxTask(Task):
def run(self, callback, task_progress_changed):
Task.run(self, callback, task_progress_changed)
- self.container.stdoutAvail.get().remove(self.processStdout)
+ self.container.stdoutAvail.remove(self.processStdout)
self.container.dumpToFile(self.dumpFile)
self.container.readFromFile(self.inputFile)
diff --git a/lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py b/lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py
index 71f935cd..c8b0b383 100644
--- a/lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py
+++ b/lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py
@@ -10,7 +10,7 @@ class PluginRunner(Screen):
self.skin = PluginRunner.skin
Screen.__init__(self, session)
self.container = eConsoleAppContainer()
- self.container.appClosed.get().append(self.finishedExecution)
+ self.container.appClosed.append(self.finishedExecution)
self.runPlugin(pluginname)
def runPlugin(self, pluginname):
diff --git a/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py b/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py
index 01b9bb9e..c2046af7 100644
--- a/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py
+++ b/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py
@@ -405,10 +405,10 @@ class NFIDownload(Screen):
md5 = self.nfo[pos+5:pos+5+32] + " " + self.nfilocal
print cmd, md5
self.download_container.setCWD(self["destlist"].getCurrentDirectory())
- self.download_container.appClosed.get().append(self.md5finished)
+ self.download_container.appClosed.append(self.md5finished)
self.download_container.execute(cmd)
self.download_container.write(md5)
- self.download_container.dataSent.get().append(self.md5ready)
+ self.download_container.dataSent.append(self.md5ready)
else:
self["statusbar"].text = "Download completed."
self.downloading(False)
@@ -421,7 +421,7 @@ class NFIDownload(Screen):
def md5finished(self, retval):
print "[md5finished]: " + str(retval)
- self.download_container.appClosed.get().remove(self.md5finished)
+ self.download_container.appClosed.remove(self.md5finished)
if retval==0:
self["statusbar"].text = _(".NFI file passed md5sum signature check. You can safely flash this image!")
self.switchList(self.LIST_SOURCE)
@@ -471,8 +471,8 @@ class NFIDownload(Screen):
def flasherdownload_finished(self, string=""):
print "[flasherdownload_finished] " + str(string)
self.container = eConsoleAppContainer()
- self.container.appClosed.get().append(self.umount_finished)
- self.container.dataAvail.get().append(self.tool_avail)
+ self.container.appClosed.append(self.umount_finished)
+ self.container.dataAvail.append(self.tool_avail)
self.taskstring = ""
umountdevs = ""
from os import listdir
@@ -488,18 +488,18 @@ class NFIDownload(Screen):
self.taskstring += string
def umount_finished(self, retval):
- self.container.appClosed.get().remove(self.umount_finished)
+ self.container.appClosed.remove(self.umount_finished)
self.session.openWithCallback(self.dmesg_clear, MessageBox, _("To make sure you intend to do this, please remove the target USB stick now and stick it back in upon prompt. Press OK when you have taken the stick out."), MessageBox.TYPE_INFO)
def dmesg_clear(self, answer):
- self.container.appClosed.get().append(self.dmesg_cleared)
+ self.container.appClosed.append(self.dmesg_cleared)
self.taskstring = ""
self.cmd = "dmesg -c"
print "executing " + self.cmd
self.container.execute(self.cmd)
def dmesg_cleared(self, retval):
- self.container.appClosed.get().remove(self.dmesg_cleared)
+ self.container.appClosed.remove(self.dmesg_cleared)
self.session.openWithCallback(self.stick_back_in, MessageBox, (_("Now please insert the USB stick (minimum size is 64 MB) that you want to format and use as .NFI image flasher. Press OK after you've put the stick back in.")), MessageBox.TYPE_INFO)
def stick_back_in(self, answer):
@@ -516,14 +516,14 @@ class NFIDownload(Screen):
self["job_progresslabel"].text = "-%d s" % (6-self.delayCount)
if self.delayCount > 5:
self.delayTimer.stop()
- self.container.appClosed.get().append(self.dmesg_scanned)
+ self.container.appClosed.append(self.dmesg_scanned)
self.taskstring = ""
self.cmd = "dmesg"
print "executing " + self.cmd
self.container.execute(self.cmd)
def dmesg_scanned(self, retval):
- self.container.appClosed.get().remove(self.dmesg_scanned)
+ self.container.appClosed.remove(self.dmesg_scanned)
dmesg_lines = self.taskstring.splitlines()
self.devicetext = None
self.stickdevice = None
@@ -545,7 +545,7 @@ class NFIDownload(Screen):
self["job_progressbar"].value = 100
self["job_progresslabel"].text = "5.00%"
self.taskstring = ""
- self.container.appClosed.get().append(self.fdisk_finished)
+ self.container.appClosed.append(self.fdisk_finished)
self.container.execute("fdisk " + self.stickdevice + "/disc")
self.container.write("d\nn\np\n1\n\n\nt\n6\nw\n")
self.delayTimer = eTimer()
@@ -555,7 +555,7 @@ class NFIDownload(Screen):
self.remove_img(True)
def fdisk_finished(self, retval):
- self.container.appClosed.get().remove(self.fdisk_finished)
+ self.container.appClosed.remove(self.fdisk_finished)
self.delayTimer.stop()
if retval == 0:
if fileExists(self.imagefilename):
@@ -564,7 +564,7 @@ class NFIDownload(Screen):
else:
self["statusbar"].text = _("Decompressing USB stick flasher boot image...")
self.taskstring = ""
- self.container.appClosed.get().append(self.tar_finished)
+ self.container.appClosed.append(self.tar_finished)
self.container.setCWD("/tmp")
self.cmd = "tar -xjvf nfiflasher_image.tar.bz2"
self.container.execute(self.cmd)
@@ -584,13 +584,13 @@ class NFIDownload(Screen):
def tar_finished(self, retval):
self.delayTimer.stop()
- if len(self.container.appClosed.get()) > 0:
- self.container.appClosed.get().remove(self.tar_finished)
+ if len(self.container.appClosed) > 0:
+ self.container.appClosed.remove(self.tar_finished)
if retval == 0:
self.imagefilename = "/tmp/nfiflash_" + self.box + ".img"
self["statusbar"].text = _("Copying USB flasher boot image to stick...")
self.taskstring = ""
- self.container.appClosed.get().append(self.dd_finished)
+ self.container.appClosed.append(self.dd_finished)
self.cmd = "dd if=%s of=%s" % (self.imagefilename,self.stickdevice+"/part1")
self.container.execute(self.cmd)
print "executing " + self.cmd
@@ -602,14 +602,14 @@ class NFIDownload(Screen):
def dd_finished(self, retval):
self.delayTimer.stop()
- self.container.appClosed.get().remove(self.dd_finished)
+ self.container.appClosed.remove(self.dd_finished)
self.downloading(False)
if retval == 0:
self["job_progressbar"].value = 950
self["job_progresslabel"].text = "95.00%"
self["statusbar"].text = _("Remounting stick partition...")
self.taskstring = ""
- self.container.appClosed.get().append(self.mount_finished)
+ self.container.appClosed.append(self.mount_finished)
self.cmd = "mount %s /mnt/usb -o rw,sync" % (self.stickdevice+"/part1")
self.container.execute(self.cmd)
print "executing " + self.cmd
@@ -617,8 +617,8 @@ class NFIDownload(Screen):
self.session.openWithCallback(self.remove_img, MessageBox, (self.cmd + " " + _("failed") + ":\n" + str(self.taskstring)), MessageBox.TYPE_ERROR)
def mount_finished(self, retval):
- self.container.dataAvail.get().remove(self.tool_avail)
- self.container.appClosed.get().remove(self.mount_finished)
+ self.container.dataAvail.remove(self.tool_avail)
+ self.container.appClosed.remove(self.mount_finished)
if retval == 0:
self["job_progressbar"].value = 1000
self["job_progresslabel"].text = "100.00%"
diff --git a/lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py b/lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py
index 6fad1ac6..6a982c58 100644
--- a/lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py
+++ b/lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py
@@ -178,8 +178,8 @@ class NFIFlash(Screen):
self.session.summary.setText(_("Please wait for md5 signature verification..."))
self.container = eConsoleAppContainer()
self.container.setCWD(self["filelist"].getCurrentDirectory())
- self.container.appClosed.get().append(self.md5finished)
- self.container.dataSent.get().append(self.md5ready)
+ self.container.appClosed.append(self.md5finished)
+ self.container.dataSent.append(self.md5ready)
self.container.execute("md5sum -cw -")
self.container.write(self.md5sum)
else:
diff --git a/lib/python/Screens/Console.py b/lib/python/Screens/Console.py
index 0ceba3ec..b57f2400 100644
--- a/lib/python/Screens/Console.py
+++ b/lib/python/Screens/Console.py
@@ -33,8 +33,8 @@ class Console(Screen):
self.container = eConsoleAppContainer()
self.run = 0
- self.container.appClosed.get().append(self.runFinished)
- self.container.dataAvail.get().append(self.dataAvail)
+ self.container.appClosed.append(self.runFinished)
+ self.container.dataAvail.append(self.dataAvail)
self.onLayoutFinish.append(self.startRun) # dont start before gui is finished
def updateTitle(self):
@@ -63,8 +63,8 @@ class Console(Screen):
def cancel(self):
if self.run == len(self.cmdlist):
self.close()
- self.container.appClosed.get().remove(self.runFinished)
- self.container.dataAvail.get().remove(self.dataAvail)
+ self.container.appClosed.remove(self.runFinished)
+ self.container.dataAvail.remove(self.dataAvail)
def dataAvail(self, str):
self["text"].setText(self["text"].getText() + str)
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py
index 3ffdbaf9..520d6d7a 100644
--- a/lib/python/Screens/PluginBrowser.py
+++ b/lib/python/Screens/PluginBrowser.py
@@ -74,8 +74,8 @@ class PluginDownloadBrowser(Screen):
self.type = type
self.container = eConsoleAppContainer()
- self.container.appClosed.get().append(self.runFinished)
- self.container.dataAvail.get().append(self.dataAvail)
+ self.container.appClosed.append(self.runFinished)
+ self.container.dataAvail.append(self.dataAvail)
self.onLayoutFinish.append(self.startRun)
self.onShown.append(self.setWindowTitle)
@@ -141,8 +141,8 @@ class PluginDownloadBrowser(Screen):
def installFinished(self):
plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
- self.container.appClosed.get().remove(self.runFinished)
- self.container.dataAvail.get().remove(self.dataAvail)
+ self.container.appClosed.remove(self.runFinished)
+ self.container.dataAvail.remove(self.dataAvail)
self.close()
def runFinished(self, retval):
diff --git a/lib/python/Screens/ScanSetup.py b/lib/python/Screens/ScanSetup.py
index eb7cc510..ab110a24 100644
--- a/lib/python/Screens/ScanSetup.py
+++ b/lib/python/Screens/ScanSetup.py
@@ -160,8 +160,8 @@ class CableTransponderSearchSupport:
def cableTransponderSearchSessionClosed(self, *val):
print "cableTransponderSearchSessionClosed, val", val
- self.cable_search_container.appClosed.get().remove(self.cableTransponderSearchClosed)
- self.cable_search_container.dataAvail.get().remove(self.getCableTransponderData)
+ self.cable_search_container.appClosed.remove(self.cableTransponderSearchClosed)
+ self.cable_search_container.dataAvail.remove(self.getCableTransponderData)
self.cable_search_container = None
self.cable_search_session = None
if val and len(val) and val[0]:
@@ -207,8 +207,8 @@ class CableTransponderSearchSupport:
return
self.__tlist = [ ]
self.cable_search_container = eConsoleAppContainer()
- self.cable_search_container.appClosed.get().append(self.cableTransponderSearchClosed)
- self.cable_search_container.dataAvail.get().append(self.getCableTransponderData)
+ self.cable_search_container.appClosed.append(self.cableTransponderSearchClosed)
+ self.cable_search_container.dataAvail.append(self.getCableTransponderData)
cableConfig = config.Nims[nim_idx].cable
cmd = "tda1002x --init --scan --verbose --wakeup --inv 2 --bus "
#FIXMEEEEEE hardcoded i2c devices for dm7025 and dm8000