Merge branch 'bug_599_picload_fd_leak'
[enigma2.git] / data / defaultsatlists.xml
index f6489676fd03d8b12d731a6a4084d2f9095d78d3..ff0ae8b7c343ec4a18c53e32378473738a12b3f6 100644 (file)
@@ -1,5 +1,5 @@
 <wizard>
-       <step id="welcome" nextstep="nothingtoinstall">
+       <step id="startdefaultlists" nextstep="nothingtoinstall">
                <condition>
 packagelist = self.fillPackagesList()
 self.runWizard = (len(packagelist) > 0)
@@ -12,11 +12,14 @@ self.condition = self.runWizard
 self.disableKeys = True
                </code>
        </step>
-       <step id="nopackages" nextstep="install">
+
+       <!--step id="nopackages" nextstep="finisheddefaultsatlists"-->
+       <step id="nopackages" nextstep="scanquestion">
                <text value="There are no default services lists in your image." />
        </step>
        
-       <step id="nothingtoinstall" nextstep="install">
+       <!--step id="nothingtoinstall" nextstep="finisheddefaultsatlists"-->
+       <step id="nothingtoinstall" nextstep="scanquestion">
                <condition>
 if self.runWizard:
        self.condition = True
@@ -32,12 +35,9 @@ else:
                <code>
 self.disableKeys = False
                </code>
-               <code pos="after">
-self.markDone()
-               </code>
        </step>
        
-       <step id="install">
+       <step id="install" nextstep="finisheddefaultsatlists">
                <condition>
 self.condition = False
 if self.runWizard:
@@ -49,12 +49,14 @@ if self.runWizard:
                <code>
 self.disableKeys = True                        
 self.installPackages(self.indexList)
-               </code>
-               <code>
-#print "len of packageslist", len(self.packageslist)
-#if (len(self.packageslist) == 1):
-       #self.installPackage(0)
                </code>
                <text value="Installing default sat lists... Please wait..." />
        </step>
+       
+       <step id="finisheddefaultsatlists">
+               <condition>
+self.markDone()
+self.condition = False
+               </condition>
+       </step>
 </wizard>