def requestClose(self):
		if self.plugins_changed:
			plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
		if self.reload_settings:
			self["text"].setText(_("Reloading bouquets and services..."))
			eDVBDB.getInstance().reloadBouquets()
			eDVBDB.getInstance().reloadServicelist()
		if self.check_softcams:
			SystemInfo["HasSoftcamInstalled"] = hassoftcaminstalled()
		plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
		self.container.appClosed.remove(self.runFinished)
		self.container.dataAvail.remove(self.dataAvail)
		self.close()
Exemple #2
0
 def requestClose(self):
     if self.plugins_changed:
         plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
     if self.reload_settings:
         self["text"].setText(_("Reloading bouquets and services..."))
         eDVBDB.getInstance().reloadBouquets()
         eDVBDB.getInstance().reloadServicelist()
     if self.check_softcams:
         SystemInfo["HasSoftcamInstalled"] = hassoftcaminstalled()
     plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
     self.container.appClosed.remove(self.runFinished)
     self.container.dataAvail.remove(self.dataAvail)
     self.close()
Exemple #3
0
 def requestClose(self):
     if self.plugins_changed:
         plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
     if self.reload_settings:
         self["text"].setText(_("Reloading bouquets and services..."))
         eDVBDB.getInstance().reloadBouquets()
         eDVBDB.getInstance().reloadServicelist()
         from Components.ParentalControl import parentalControl
         parentalControl.open()
         refreshServiceList()
     if self.check_softcams:
         BoxInfo.setItem("HasSoftcamInstalled", hassoftcaminstalled())
     plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
     self.container.appClosed.remove(self.runFinished)
     self.container.dataAvail.remove(self.dataAvail)
     self.close()