[ScanSetup] Fix error on complete scan with T2 tuners.
[vuplus_dvbapp] / lib / python / Screens / About.py
1 from Screen import Screen
2 from Components.ActionMap import ActionMap
3 from Components.Sources.StaticText import StaticText
4 from Components.Harddisk import harddiskmanager
5 from Components.NimManager import nimmanager
6 from Components.About import about
7
8 from Tools.DreamboxHardware import getFPVersion
9
10 class About(Screen):
11         def __init__(self, session):
12                 Screen.__init__(self, session)
13
14                 self["EnigmaVersion"] = StaticText("Version: " + about.getEnigmaVersionString())
15                 self["ImageVersion"] = StaticText("Image: " + about.getImageVersionString())
16
17                 self["TunerHeader"] = StaticText(_("Detected NIMs:"))
18
19                 fp_version = getFPVersion()
20                 if fp_version is None:
21                         fp_version = ""
22                 else:
23                         fp_version = _("Frontprocessor version: %d") % fp_version
24
25                 self["FPVersion"] = StaticText(fp_version)
26
27                 nims = nimmanager.nimList()
28                 for count in (0, 1, 2, 3):
29                         if count < len(nims):
30                                 self["Tuner" + str(count)] = StaticText(nims[count])
31                         else:
32                                 self["Tuner" + str(count)] = StaticText("")
33
34                 self["HDDHeader"] = StaticText(_("Detected HDD:"))
35                 hddlist = harddiskmanager.HDDList()
36                 hdd = hddlist and hddlist[0][1] or None
37                 if hdd is not None and hdd.model() != "":
38                         self["hddA"] = StaticText(_("%s\n(%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free()))
39                 else:
40                         self["hddA"] = StaticText(_("none"))
41
42                 self["actions"] = ActionMap(["SetupActions", "ColorActions"], 
43                         {
44                                 "cancel": self.close,
45                                 "ok": self.close,
46                         })