From c16d405383c4be419e4a88db6d02894b7cfbf74d Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Wed, 28 Jun 2006 16:48:18 +0000 Subject: move dvb-t 5V antenna switching to better place rename Service Searchin -> Satconfig to -> Nimconfig --- lib/python/Components/NimManager.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'lib/python/Components') diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 92ef9dea..5f5ae7bf 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -641,8 +641,6 @@ class NimManager: pass def InitNimManager(nimmgr): - have_terrestrial_tuner = False - config.terrestrial = ConfigSubsection() config.Nims = [] for x in range(nimmgr.nimCount): config.Nims.append(ConfigSubsection()) @@ -660,8 +658,6 @@ def InitNimManager(nimmgr): nimmgr.nimPortCChanged(slotid, configElement.vals[configElement.value][1]) def nimPortDChanged(slotid, configElement): nimmgr.nimPortDChanged(slotid, configElement.vals[configElement.value][1]) - def terrestrial_5v_changed(configElement): - configElement.save() for slot in nimmgr.nimslots: x = slot.slotid @@ -769,20 +765,15 @@ def InitNimManager(nimmgr): elif slot.nimType == nimmgr.nimType["DVB-C"]: nim.cable = configElement(cname + "cable", configSelection, 0, nimmgr.cablesList, False); elif slot.nimType == nimmgr.nimType["DVB-T"]: - have_terrestrial_tuner = True list = [] for x in nimmgr.terrestrialsList: list.append(x[0]) nim.terrestrial = configElement(cname + "terrestrial", configSelection, 0, list, False); + nim.terrestrial_5V = configElement(cname + "terrestrial_5V", configSelection, 1, (("on", _("On")), ("off", _("Off"))), True); else: print "pls add support for this frontend type!" - if have_terrestrial_tuner: - config.terrestrial.enable_5V = configElement("config.terrestrial.enable_5V", configSelection, 1, (("yes", _("Yes")), ("no", _("No"))), True); - config.terrestrial.enable_5V.addNotifier(terrestrial_5v_changed) - nimmgr.sec = SecConfigure(nimmgr) - nimmanager = NimManager() -- cgit v1.2.3