aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authoracid-burn <acid-burn@opendreambox.org>2009-12-28 22:18:40 +0100
committeracid-burn <acid-burn@opendreambox.org>2009-12-28 22:18:40 +0100
commita7ed9db9532b7ac58dc3b923c0e3f9ee1789ddeb (patch)
treee9c99d880022a9f41f93a1ee76b45a4f13200ac2 /lib/python/Screens
parenta285571e31b3b1a99764a674319621f0298833c2 (diff)
parent018534fa7bf9be0885b2ffc753d8d6fc5b56143c (diff)
downloadenigma2-a7ed9db9532b7ac58dc3b923c0e3f9ee1789ddeb.tar.gz
enigma2-a7ed9db9532b7ac58dc3b923c0e3f9ee1789ddeb.zip
Merge commit 'origin/bug_112_enable_extensions_manager' into experimental
Conflicts: lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py
Diffstat (limited to 'lib/python/Screens')
-rwxr-xr-xlib/python/Screens/PluginBrowser.py9
-rw-r--r--lib/python/Screens/TimerEntry.py1
2 files changed, 4 insertions, 6 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py
index 61bb7d0a..acb9dafb 100755
--- a/lib/python/Screens/PluginBrowser.py
+++ b/lib/python/Screens/PluginBrowser.py
@@ -22,18 +22,16 @@ class PluginBrowser(Screen):
def __init__(self, session):
Screen.__init__(self, session)
- self["red"] = Label(_("Remove Plugins"))
- self["green"] = Label(_("Download Plugins"))
+ self["red"] = Label()
+ self["green"] = Label()
self.list = []
self["list"] = PluginList(self.list)
- self["actions"] = ActionMap(["WizardActions", "ColorActions"],
+ self["actions"] = ActionMap(["WizardActions"],
{
"ok": self.save,
"back": self.close,
- "red": self.delete,
- "green": self.download
})
self.onFirstExecBegin.append(self.checkWarnings)
self.onShown.append(self.updateList)
@@ -47,7 +45,6 @@ class PluginBrowser(Screen):
self.session.open(MessageBox, text = text, type = MessageBox.TYPE_WARNING)
def save(self):
- #self.close()
self.run()
def run(self):
diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py
index 42a3195c..d7ba73d7 100644
--- a/lib/python/Screens/TimerEntry.py
+++ b/lib/python/Screens/TimerEntry.py
@@ -8,6 +8,7 @@ from Components.MenuList import MenuList
from Components.Button import Button
from Components.Label import Label
from Components.Pixmap import Pixmap
+from Components.SystemInfo import SystemInfo
from Components.UsageConfig import defaultMoviePath
from Components.SystemInfo import SystemInfo
from Screens.MovieSelection import getPreferredTagEditor