aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-05-05 18:37:06 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-05-05 18:37:06 +0000
commit185319be599e9f42cd695da14c01499fc79f68d5 (patch)
treef62cd0309439b45a230f5adad05355f5c6e9ec6a /lib/python
parent39708e44b6f6fd25fd3e02ae119351bdebadbfb5 (diff)
downloadenigma2-185319be599e9f42cd695da14c01499fc79f68d5.tar.gz
enigma2-185319be599e9f42cd695da14c01499fc79f68d5.zip
add function to remove single service,
add function to remove transponder(s) and service(s) for specified onid/tsid/dvbnamespace/orbpos mark new found services in scan with dxNewFound flag add functions to change dxflags of a single service add function to change dxflags for specified onid/tsid/dvbnamespace/orbpos
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ChannelSelection.py2
-rw-r--r--lib/python/Screens/ServiceInfo.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py
index 958b2fd4..02963dce 100644
--- a/lib/python/Screens/ChannelSelection.py
+++ b/lib/python/Screens/ChannelSelection.py
@@ -670,6 +670,8 @@ class ChannelSelectionBase(Screen):
orbpos = service.getUnsignedData(4) >> 16
if service.getPath().find("FROM PROVIDER") != -1:
service_name = _("Providers")
+ elif service.getPath().find("flags ==") != -1:
+ service_name = _("New")
else:
service_name = _("Services")
try:
diff --git a/lib/python/Screens/ServiceInfo.py b/lib/python/Screens/ServiceInfo.py
index 747ee6f5..a4bb4e02 100644
--- a/lib/python/Screens/ServiceInfo.py
+++ b/lib/python/Screens/ServiceInfo.py
@@ -69,7 +69,7 @@ class ServiceInfo(Screen):
if service is not None:
self.info = service.info()
self.feinfo = service.frontendStatusInfo()
- print self.info.getInfoObject(iServiceInformation.sVideoPID);
+ print self.info.getInfoObject(iServiceInformation.sCAIDs);
else:
self.info = None