1 from Screen import Screen
2 from Components.ActionMap import ActionMap
3 from Components.Label import Label
4 from Components.Harddisk import Harddisk
5 from Components.NimManager import nimmanager
6 from Components.MenuList import MenuList
9 def __init__(self, session):
10 Screen.__init__(self, session)
12 self["text"] = Label("Enigma v2.0b")
14 self["tuner"] = Label(_("Detected NIMs:"))
16 nims = nimmanager.nimList()
19 self["tuner" + str(count)] = Label(i[0])
22 self["hdd"] = Label(_("Detected HDD:"))
25 self["hddA"] = Label(_("%s (%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free()))
27 self["hddA"] = Label(_("none"))
29 self["actions"] = ActionMap(["SetupActions"],