X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FWizard.py;h=eaa1d0916760ae291967c41922783398305b6e9a;hp=c06626e5b5693538442f122ab89c7535119a6023;hb=HEAD;hpb=e19feb6903e6054302080ae40d2bcfa5c2d1628e diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index c06626e..eaa1d09 100755 --- a/lib/python/Screens/Wizard.py +++ b/lib/python/Screens/Wizard.py @@ -15,9 +15,6 @@ from enigma import eTimer, eEnv from xml.sax import make_parser from xml.sax.handler import ContentHandler -# ikseong -from Plugins.SystemPlugins.FactoryTest.plugin import FactoryTest - class WizardSummary(Screen): skin = """ @@ -196,10 +193,6 @@ class Wizard(Screen): self.timeoutTimer = eTimer() self.timeoutTimer.callback.append(self.timeoutCounterFired) - # ikseong - for memory test - self.memorytestmode = 0 - self.testkey = 0 - self["text"] = Label() if showConfig: @@ -251,8 +244,6 @@ class Wizard(Screen): "8": self.keyNumberGlobal, "9": self.keyNumberGlobal, "0": self.keyNumberGlobal, -# ikseong - "test":self.testmode }, -1) self["VirtualKB"] = NumberActionMap(["VirtualKeyboardActions"], @@ -393,23 +384,7 @@ class Wizard(Screen): self.configInstance.run() self.finished() -# ikseong - def testmode(self): - print "testmode ",self.memorytestmode - if self.memorytestmode == 0: - self.memorytestmode = 1 - else: - self.memorytestmode = 0 - def keyNumberGlobal(self, number): - if self.memorytestmode == 1: - self.testkey = self.testkey * 10 + number - if self.testkey > 10000: - self.testkey = self.testkey%10000 - if self.testkey == 4599: - self.session.open(FactoryTest) - print "testkey", self.testkey - return if (self.wizard[self.currStep]["config"]["screen"] != None): self.configInstance.keyNumberGlobal(number) elif (self.wizard[self.currStep]["config"]["type"] == "dynamic"): @@ -627,6 +602,7 @@ class Wizard(Screen): self.configInstance = self.session.instantiateDialog(self.wizard[self.currStep]["config"]["screen"]) else: self.configInstance = self.session.instantiateDialog(self.wizard[self.currStep]["config"]["screen"], eval(self.wizard[self.currStep]["config"]["args"])) + self.configInstance.setAnimationMode(0) self["config"].l.setList(self.configInstance["config"].list) callbacks = self.configInstance["config"].onSelectionChanged self.configInstance["config"].destroy()