diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-27 10:50:25 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-27 10:50:25 +0100 |
| commit | 5fe37f3f39eb8d3efbb45984034c18a82637fbc2 (patch) | |
| tree | c7b99c7896b19c37906ef2b27b513b370e370049 /lib/python/Screens/PluginBrowser.py | |
| parent | 34f11d5064546dd47b7cfde226f4267a7f83741d (diff) | |
| parent | 6ea64f6225d623a23fee4d16965111e26ee74ffa (diff) | |
| download | enigma2-5fe37f3f39eb8d3efbb45984034c18a82637fbc2.tar.gz enigma2-5fe37f3f39eb8d3efbb45984034c18a82637fbc2.zip | |
Merge remote branch 'origin/bug_383_softwaremanager'
Diffstat (limited to 'lib/python/Screens/PluginBrowser.py')
| -rwxr-xr-x | lib/python/Screens/PluginBrowser.py | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py index cce08aed..69bf80f7 100755 --- a/lib/python/Screens/PluginBrowser.py +++ b/lib/python/Screens/PluginBrowser.py @@ -38,7 +38,12 @@ class PluginBrowser(Screen): "red": self.delete, "green": self.download }) + self["SoftwareActions"] = ActionMap(["ColorActions"], + { + "red": self.openExtensionmanager + }) self["PluginDownloadActions"].setEnabled(False) + self["SoftwareActions"].setEnabled(False) self.onFirstExecBegin.append(self.checkWarnings) self.onShown.append(self.updateList) @@ -62,12 +67,14 @@ class PluginBrowser(Screen): self.list = [PluginEntryComponent(plugin) for plugin in self.pluginlist] self["list"].l.setList(self.list) if fileExists(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/SoftwareManager/plugin.py")): - self["red"].setText("") + self["red"].setText(_("Manage extensions")) self["green"].setText("") + self["SoftwareActions"].setEnabled(True) self["PluginDownloadActions"].setEnabled(False) else: self["red"].setText(_("Remove Plugins")) self["green"].setText(_("Download Plugins")) + self["SoftwareActions"].setEnabled(False) self["PluginDownloadActions"].setEnabled(True) def delete(self): @@ -80,6 +87,14 @@ class PluginBrowser(Screen): self.updateList() self.checkWarnings() + def openExtensionmanager(self): + if fileExists(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/SoftwareManager/plugin.py")): + try: + from Plugins.SystemPlugins.SoftwareManager.plugin import PluginManager + except ImportError: + self.session.open(MessageBox, _("The Softwaremanagement extension is not installed!\nPlease install it."), type = MessageBox.TYPE_INFO,timeout = 10 ) + else: + self.session.openWithCallback(self.PluginDownloadBrowserClosed, PluginManager) class PluginDownloadBrowser(Screen): DOWNLOAD = 0 |
