diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-10-08 23:09:53 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-10-08 23:09:53 +0000 |
| commit | ee34dc9997d200a8021332dd639c2cf3a92b21cd (patch) | |
| tree | c4c6ab465ce8ea2e0c3a84118a0a0399a15aeded /lib/python/Screens/About.py | |
| parent | a084ecfd463e1db01e877a3b1f0f502886cd4708 (diff) | |
| download | enigma2-ee34dc9997d200a8021332dd639c2cf3a92b21cd.tar.gz enigma2-ee34dc9997d200a8021332dd639c2cf3a92b21cd.zip | |
added nims to the about box
Diffstat (limited to 'lib/python/Screens/About.py')
| -rw-r--r-- | lib/python/Screens/About.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index 2e32e7d7..542bee6a 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -2,6 +2,8 @@ from Screen import Screen from Components.ActionMap import ActionMap from Components.Label import Label from Components.Harddisk import Harddisk +from Components.NimManager import nimmanager +from Components.MenuList import MenuList class About(Screen): def __init__(self, session): @@ -10,13 +12,17 @@ class About(Screen): self["text"] = Label("Enigma v2.0b") self["tuner"] = Label("Detected NIMs:") - self["tunerA"] = Label(" Tuner A: Alps BSBE1 (DVB-S)") - self["tunerB"] = Label(" Tuner B: Alps BSBE1 (DVB-S)") + + nims = nimmanager.nimList() + count = 0 + for i in nims: + self["tuner" + str(count)] = Label(i[0]) + count += 1 self["hdd"] = Label("Detected HDD:") hdd = Harddisk(0) - #self["hddA"] = Label("%s (%s, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free())) - self["hddA"] = Label("Seagate 398 GByte (323 GByte free)") + self["hddA"] = Label("%s (%s, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free())) + #self["hddA"] = Label("Seagate 398 GByte (323 GByte free)") self["actions"] = ActionMap(["SetupActions"], { |
