move windowstyle definitions for LCD/OLED and Color Oled Display to skin_default.xml
[enigma2.git] / data / defaultsatlists.xml
index 2902d1d7f9dff524ff9e71b3053581d2d282397c..132b427c12e1947ea68391af91fda43691cce523 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,11 @@ self.condition = self.runWizard
 self.disableKeys = True
                </code>
        </step>
-       <step id="nopackages" nextstep="install">
+       <step id="nopackages" nextstep="finisheddefaultsatlists">
                <text value="There are no default services lists in your image." />
        </step>
        
-       <step id="nothingtoinstall" nextstep="install">
+       <step id="nothingtoinstall" nextstep="finisheddefaultsatlists">
                <condition>
 if self.runWizard:
        self.condition = True
@@ -32,12 +32,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:
@@ -48,12 +45,15 @@ if self.runWizard:
                </condition>
                <code>
 self.disableKeys = True                        
-               </code>
-               <code>
-#print "len of packageslist", len(self.packageslist)
-#if (len(self.packageslist) == 1):
-       #self.installPackage(0)
+self.installPackages(self.indexList)
                </code>
                <text value="Installing default sat lists... Please wait..." />
        </step>
+       
+       <step id="finisheddefaultsatlists">
+               <condition>
+self.markDone()
+self.condition = False
+               </condition>
+       </step>
 </wizard>