blob: 0b3a2988e1d78f0426e79aa0427432d5ffaf7775 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
|
<wizard>
<step id="welcome">
<text value="Welcome.\n\nIf you want to connect your Dreambox to the Internet, this wizard will guide you through the basic network setup of your Dreambox.\n\nPress OK to start configuring your network" />
<displaytext value="Network Wizard" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
</code>
<code pos="after" async="yes">
self.selectInterface()
</code>
</step>
<step id="selectinterface">
<text value="Please select the network interface that you want to use for your internet connection.\n\nPlease press OK to continue." />
<displaytext value="Select interface" />
<list type="dynamic" source="listInterfaces" evaluation="InterfaceSelectionMade" onselect="InterfaceSelectionMoved" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self.selectKey("UP")
self.selectKey("DOWN")
</code>
<code pos="after" async="yes">
self.checkInterface(self.selectedInterface)
</code>
</step>
<step id="nwconfig">
<text value="Please configure your internet connection by filling out the required values.\nWhen you are ready press OK to continue." />
<displaytext value="Configure interface" />
<config screen="AdapterSetup" module="NetworkSetup" args="self.selectedInterface" type="ConfigList" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self.selectKey("UP")
self.selectKey("DOWN")
self.selectKey("LEFT")
self.selectKey("RIGHT")
</code>
<code pos="after" async="yes">
self.AdapterSetupEnd(self.selectedInterface)
</code>
</step>
<step id="confdns" nextstep="checklanstatusend">
<text value="Please configure or verify your Nameservers by filling out the required values.\nWhen you are ready press OK to continue." />
<displaytext value="Configure nameservers" />
<config screen="NameserverSetup" module="NetworkSetup" type="ConfigList" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
</code>
<code pos="after" async="yes">
self.checkNetwork()
</code>
</step>
<step id="checklanstatusend" nextstep="end">
<condition>
self.condition = (self.InterfaceState == True )
</condition>
<text value="Your Dreambox is now ready to use.\n\nYour internet connection is working now.\n\nPlease press OK to continue." />
<displaytext value="Please follow the instructions on the TV" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
</code>
<code pos="after">
currStep = self.numSteps
self.wizard[currStep]["nextstep"] = None
self.markDone()
self.close()
</code>
</step>
<step id="checklanstatusend">
<condition>
self.condition = (self.InterfaceState == False )
</condition>
<text value="Your internet connection is not working!\nPlease choose what you want to do next." />
<displaytext value="Please follow the instructions on the TV" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self.selectKey("UP")
self.selectKey("DOWN")
</code>
<list>
<listentry caption="Configure your network again" step="welcome" />
<listentry caption="Exit network wizard" step="end" />
</list>
</step>
<step id="asknetworktype">
<condition>
self.condition = (self.isInterfaceUp == True and self.WlanPluginInstalled == True)
</condition>
<text value="Wireless network connection setup." />
<displaytext value="Wireless network connection setup" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self.selectKey("UP")
self.selectKey("DOWN")
</code>
<list>
<listentry caption="List available networks" step="scanwlan" />
<listentry caption="Manual configuration" step="wlanconfig" />
<listentry caption="Exit network wizard" step="end" />
</list>
</step>
<step id="scanwlan">
<condition>
self.condition = (self.isInterfaceUp == True and self.WlanPluginInstalled == True)
</condition>
<text value="Please select the wireless network that you want to connect to.\n\nPlease press OK to continue." />
<displaytext value="Select wireless network" />
<list type="dynamic" source="listAccessPoints" onselect="AccessPointsSelectionMoved" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self.selectKey("UP")
self.selectKey("DOWN")
self.selectKey("LEFT")
self.selectKey("RIGHT")
</code>
<code pos="after">
self.checkWlanSelection()
</code>
</step>
<step id="scanwlan">
<condition>
self.condition = (self.isInterfaceUp == False and self.WlanPluginInstalled == True)
</condition>
<text value="Your wireless LAN internet connection could not be started!\nHave you attached your USB WLAN Stick?\n\nPlease choose what you want to do next." />
<displaytext value="Please follow the instructions on the TV" />
<list type="dynamic" source="listChoices" evaluation="ChoicesSelectionMade" onselect="ChoicesSelectionMoved" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self.selectKey("UP")
self.selectKey("DOWN")
</code>
</step>
<step id="scanwlan">
<condition>
self.condition = (self.isInterfaceUp == True and self.WlanPluginInstalled == False)
</condition>
<text value="The wireless LAN plugin is not installed!\nPlease install it and choose what you want to do next." />
<displaytext value="Please follow the instructions on the TV" />
<list type="dynamic" source="listChoices" evaluation="ChoicesSelectionMade" onselect="ChoicesSelectionMoved" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self.selectKey("UP")
self.selectKey("DOWN")
</code>
</step>
<step id="wlanconfig">
<text value="Please configure your internet connection by filling out the required values.\nWhen you are ready press OK to continue." />
<displaytext value="Configure interface" />
<config screen="AdapterSetup" module="NetworkSetup" args="(self.selectedInterface,self.ap)" type="ConfigList" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self.selectKey("UP")
self.selectKey("DOWN")
self.selectKey("LEFT")
self.selectKey("RIGHT")
</code>
<code pos="after" async="yes">
self.AdapterSetupEnd(self.selectedInterface)
</code>
</step>
<step id="checkWlanstatusend" nextstep="end">
<condition>
self.condition = (self.InterfaceState == True )
</condition>
<text value="Your Dreambox is now ready to use.\n\nYour internet connection is working now.\n\nPlease press OK to continue." />
<displaytext value="Please follow the instructions on the TV" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self["text"].setText(self.Text)
</code>
<code pos="after">
currStep = self.numSteps
self.wizard[currStep]["nextstep"] = None
self.markDone()
self.close()
</code>
</step>
<step id="checkWlanstatusend">
<condition>
self.condition = (self.InterfaceState == False )
</condition>
<text value="Your internet connection is not working!\nPlease choose what you want to do next." />
<displaytext value="Please follow the instructions on the TV" />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
self.selectKey("UP")
self.selectKey("DOWN")
</code>
<list>
<listentry caption="Configure your network again" step="welcome" />
<listentry caption="Exit network wizard" step="end" />
</list>
</step>
<step id="end">
<text value="Thank you for using the wizard.\nPlease press OK to continue." />
<code>
self.clearSelectedKeys()
self.selectKey("OK")
</code>
</step>
</wizard>
|