diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-03-05 22:38:47 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-03-05 22:38:47 +0000 |
| commit | e896fc8b8860ec9fc0e1f013d6405c454bfa88c8 (patch) | |
| tree | b5a483c5a0e7cc51bce8b3683115cd0c48d6a6ff /mytest.py | |
| parent | 1e275d08072ba34aa74157876d4b9fcc452acfd4 (diff) | |
| download | enigma2-e896fc8b8860ec9fc0e1f013d6405c454bfa88c8.tar.gz enigma2-e896fc8b8860ec9fc0e1f013d6405c454bfa88c8.zip | |
add WHERE_SESSIONSTART
Diffstat (limited to 'mytest.py')
| -rw-r--r-- | mytest.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -94,6 +94,9 @@ class Session: self.dialog_stack = [ ] self.summary_stack = [ ] self.summary = None + + for p in plugins.getPlugins(PluginDescriptor.WHERE_SESSIONSTART): + p(reason=0, session=self) def processDelay(self): self.execEnd() @@ -303,9 +306,9 @@ class VolumeControl: self.muteDialog.hide() def runScreenTest(): - session = Session(desktop = getDesktop(0), summary_desktop = getDesktop(1), navigation = Navigation()) - plugins.readPluginList(resolveFilename(SCOPE_PLUGINS)) + + session = Session(desktop = getDesktop(0), summary_desktop = getDesktop(1), navigation = Navigation()) screensToRun = [ ] |
