aboutsummaryrefslogtreecommitdiff
path: root/mytest.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-03 12:05:50 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-03 12:05:50 +0000
commit88a6749020acfb921ae70f714e995af74e72c47c (patch)
treefd5d7fe9bca7aed3d9f073ad06fa36cfe5050f9b /mytest.py
parent2b8099549431ec55aa87f4ccd35f07d93485fd6f (diff)
downloadenigma2-88a6749020acfb921ae70f714e995af74e72c47c.tar.gz
enigma2-88a6749020acfb921ae70f714e995af74e72c47c.zip
add a proof-of-concept plugin to define alternative services
example: NIM A: DVB-C NIM B: DVB-S (Astra) NIM B records "Sat 1" (vertical) and cannot play or record "Das Erste". Zapping to "Das Erste" now looks up an alternative-table (defined by the user) and plays the service "Das Erste" (cable service) on NIM A, which is assossiated to "Das Erste" (sat service).
Diffstat (limited to 'mytest.py')
-rw-r--r--mytest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mytest.py b/mytest.py
index 4ac9ed63..77e925b6 100644
--- a/mytest.py
+++ b/mytest.py
@@ -37,7 +37,6 @@ except ImportError:
# initialize autorun plugins and plugin menu entries
from Components.PluginComponent import plugins
-plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
from Screens.Wizard import wizardManager
from Screens.StartWizard import *
@@ -304,6 +303,8 @@ class VolumeControl:
def runScreenTest():
session = Session(desktop = getDesktop(0), summary_desktop = getDesktop(1), navigation = Navigation())
+
+ plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
screensToRun = [ ]