aboutsummaryrefslogtreecommitdiff
path: root/data/startwizard.xml
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-05-18 15:02:15 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-05-18 15:02:15 +0000
commite5d5efded2cdbc62105ed3742ac3396602e1d564 (patch)
tree4a8302c236ecc075a54e9a87b4bc111d5397a798 /data/startwizard.xml
parent90297023a1597caa229c1b925180b833f3af31a4 (diff)
downloadenigma2-e5d5efded2cdbc62105ed3742ac3396602e1d564.tar.gz
enigma2-e5d5efded2cdbc62105ed3742ac3396602e1d564.zip
fix startwizzard for nim changes
Diffstat (limited to 'data/startwizard.xml')
-rw-r--r--data/startwizard.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/data/startwizard.xml b/data/startwizard.xml
index de041193..402eeef9 100644
--- a/data/startwizard.xml
+++ b/data/startwizard.xml
@@ -30,7 +30,7 @@ self["rc"].startMoving()
<step id="nima">
<condition>
from Components.NimManager import nimmanager
-self.condition = nimmanager.getNimType(0) != nimmanager.nimType["empty/unknown"]
+self.condition = not nimmanager.nim_slots[0].empty
</condition>
<text value="Use the left and right buttons to change an option.\n\nPlease set up tuner A" />
<config screen="NimSetup" module="Satconfig" args="0" type="ConfigList" />
@@ -48,7 +48,7 @@ self["arrowdown"].startMoving()
<step id="nimb">
<condition>
from Components.NimManager import nimmanager
-self.condition = nimmanager.getNimType(1) != nimmanager.nimType["empty/unknown"]
+self.condition = not nimmanager.nim_slots[1].empty
</condition>
<text value="Please set up tuner B" />
<config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
@@ -66,9 +66,9 @@ self["arrowdown"].startMoving()
<step id="nimc">
<condition>
from Components.NimManager import nimmanager
-self.condition = nimmanager.getNimType(2) != nimmanager.nimType["empty/unknown"]
+self.condition = not nimmanager.nim_slots[2].empty
</condition>
- <text value="Please set up tuner B" />
+ <text value="Please set up tuner C" />
<config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
<code>
self["rc"].moveTo(500, 50, 1)
@@ -84,9 +84,9 @@ self["arrowdown"].startMoving()
<step id="nimd">
<condition>
from Components.NimManager import nimmanager
-self.condition = nimmanager.getNimType(3) != nimmanager.nimType["empty/unknown"]
+self.condition = not nimmanager.nim_slots[3].empty
</condition>
- <text value="Please set up tuner B" />
+ <text value="Please set up tuner D" />
<config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
<code>
self["rc"].moveTo(500, 50, 1)