aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-22 09:54:05 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-22 09:54:05 +0000
commit67b53c1cb06988394c35a6e965c99b72b67fe1be (patch)
tree1761f6b70a9a6aa349a003842162672a7787c85e /lib/python/Plugins/Extensions
parenta507c89e5f0424b634cb13178c39c56d19945563 (diff)
downloadenigma2-67b53c1cb06988394c35a6e965c99b72b67fe1be.tar.gz
enigma2-67b53c1cb06988394c35a6e965c99b72b67fe1be.zip
cleanup some imports
Diffstat (limited to 'lib/python/Plugins/Extensions')
-rw-r--r--lib/python/Plugins/Extensions/CutListEditor/plugin.py1
-rw-r--r--lib/python/Plugins/Extensions/FileManager/plugin.py2
-rw-r--r--lib/python/Plugins/Extensions/FritzCall/plugin.py7
-rw-r--r--lib/python/Plugins/Extensions/PicturePlayer/plugin.py2
-rw-r--r--lib/python/Plugins/Extensions/SimpleRSS/plugin.py9
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/.cvsignore4
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/Makefile.am0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/__init__.py0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/plugin.py0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/web-data/Makefile.am0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/web-data/tools.js0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/web/Makefile.am0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/web/index.html.xml0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/web/stream.m3u.xml0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/web/stream.xml0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/web/zap.xml0
-rw-r--r--lib/python/Plugins/Extensions/WebInterface/webif.py0
17 files changed, 5 insertions, 20 deletions
diff --git a/lib/python/Plugins/Extensions/CutListEditor/plugin.py b/lib/python/Plugins/Extensions/CutListEditor/plugin.py
index 4c425532..200e37cc 100644
--- a/lib/python/Plugins/Extensions/CutListEditor/plugin.py
+++ b/lib/python/Plugins/Extensions/CutListEditor/plugin.py
@@ -4,7 +4,6 @@ from Screens.Screen import Screen
from Screens.MessageBox import MessageBox
from Components.ServicePosition import ServicePositionGauge
from Components.ActionMap import HelpableActionMap
-from Components.MenuList import MenuList
from Components.MultiContent import MultiContentEntryText
from Components.ServiceEventTracker import ServiceEventTracker
from Components.VideoWindow import VideoWindow
diff --git a/lib/python/Plugins/Extensions/FileManager/plugin.py b/lib/python/Plugins/Extensions/FileManager/plugin.py
index 3cbef343..09a20e06 100644
--- a/lib/python/Plugins/Extensions/FileManager/plugin.py
+++ b/lib/python/Plugins/Extensions/FileManager/plugin.py
@@ -1,7 +1,7 @@
from Screens.Screen import Screen
from Components.ActionMap import NumberActionMap
from Components.Pixmap import Pixmap
-from Components.FileList import FileEntryComponent, FileList
+from Components.FileList import FileList
from Plugins.Plugin import PluginDescriptor
class FileManager(Screen):
diff --git a/lib/python/Plugins/Extensions/FritzCall/plugin.py b/lib/python/Plugins/Extensions/FritzCall/plugin.py
index 339f2dd1..0b67345b 100644
--- a/lib/python/Plugins/Extensions/FritzCall/plugin.py
+++ b/lib/python/Plugins/Extensions/FritzCall/plugin.py
@@ -1,7 +1,6 @@
from Screens.Screen import Screen
from Screens.MessageBox import MessageBox
from Components.ActionMap import ActionMap
-from Components.Label import Label
from Plugins.Plugin import PluginDescriptor
from Tools import Notifications
@@ -9,12 +8,10 @@ from twisted.internet import reactor
from twisted.internet.protocol import ReconnectingClientFactory
from twisted.protocols.basic import LineReceiver
-from enigma import eTimer
-
my_global_session = None
from Components.config import config, ConfigSubsection, ConfigIP, ConfigEnableDisable, getConfigListEntry
-from Components.ConfigList import ConfigList, ConfigListScreen
+from Components.ConfigList import ConfigListScreen
config.plugins.FritzCall = ConfigSubsection()
config.plugins.FritzCall.hostname = ConfigIP(default = [192,168,178,254])
@@ -28,8 +25,6 @@ class FritzCallSetup(ConfigListScreen, Screen):
def __init__(self, session, args = None):
- from Tools.BoundFunction import boundFunction
-
Screen.__init__(self, session)
self.onClose.append(self.abort)
diff --git a/lib/python/Plugins/Extensions/PicturePlayer/plugin.py b/lib/python/Plugins/Extensions/PicturePlayer/plugin.py
index 8a591090..c54669bb 100644
--- a/lib/python/Plugins/Extensions/PicturePlayer/plugin.py
+++ b/lib/python/Plugins/Extensions/PicturePlayer/plugin.py
@@ -9,7 +9,7 @@ from Components.ConfigList import ConfigList
from Components.config import *
from Tools.Directories import resolveFilename, pathExists, createDir, SCOPE_MEDIA
-from Components.FileList import FileEntryComponent, FileList
+from Components.FileList import FileList
from Components.AVSwitch import AVSwitch
from Plugins.Plugin import PluginDescriptor
diff --git a/lib/python/Plugins/Extensions/SimpleRSS/plugin.py b/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
index 49da5e63..980fe5d5 100644
--- a/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
+++ b/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
@@ -5,13 +5,10 @@ from Screens.Screen import Screen
from Screens.MessageBox import MessageBox
from Components.ActionMap import ActionMap
from Components.GUIComponent import GUIComponent
-from Components.Label import Label
from Components.MultiContent import MultiContentEntryText
from Plugins.Plugin import PluginDescriptor
-from enigma import eListboxPythonMultiContent, eListbox, gFont, iServiceInformation, RT_HALIGN_LEFT, RT_HALIGN_RIGHT, RT_WRAP
+from enigma import eListboxPythonMultiContent, eListbox, gFont, RT_HALIGN_LEFT, RT_WRAP
-from twisted.web import server
-from twisted.web.resource import Resource
from twisted.web.client import getPage
import xml.dom.minidom
@@ -25,7 +22,7 @@ my_global_session = None
urls = ["http://www.heise.de/newsticker/heise.rdf", "http://rss.slashdot.org/Slashdot/slashdot/to"]
from Components.config import config, ConfigSubsection, ConfigSelection, getConfigListEntry
-from Components.ConfigList import ConfigList, ConfigListScreen
+from Components.ConfigList import ConfigListScreen
config.simpleRSS = ConfigSubsection()
config.simpleRSS.hostname = ConfigSelection(choices = urls)
@@ -36,8 +33,6 @@ class SimpleRSS(ConfigListScreen, Screen):
</screen>"""
def __init__(self, session, args = None):
- from Tools.BoundFunction import boundFunction
-
print "screen init"
Screen.__init__(self, session)
self.skin = SimpleRSS.skin
diff --git a/lib/python/Plugins/Extensions/WebInterface/.cvsignore b/lib/python/Plugins/Extensions/WebInterface/.cvsignore
deleted file mode 100644
index 138b9cc2..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-*.pyc
-*.pyo
-Makefile
-Makefile.in
diff --git a/lib/python/Plugins/Extensions/WebInterface/Makefile.am b/lib/python/Plugins/Extensions/WebInterface/Makefile.am
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/Makefile.am
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/__init__.py b/lib/python/Plugins/Extensions/WebInterface/__init__.py
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/__init__.py
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/plugin.py b/lib/python/Plugins/Extensions/WebInterface/plugin.py
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/plugin.py
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/web-data/Makefile.am b/lib/python/Plugins/Extensions/WebInterface/web-data/Makefile.am
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/web-data/Makefile.am
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/web-data/tools.js b/lib/python/Plugins/Extensions/WebInterface/web-data/tools.js
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/web-data/tools.js
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/web/Makefile.am b/lib/python/Plugins/Extensions/WebInterface/web/Makefile.am
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/web/Makefile.am
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/web/index.html.xml b/lib/python/Plugins/Extensions/WebInterface/web/index.html.xml
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/web/index.html.xml
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/web/stream.m3u.xml b/lib/python/Plugins/Extensions/WebInterface/web/stream.m3u.xml
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/web/stream.m3u.xml
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/web/stream.xml b/lib/python/Plugins/Extensions/WebInterface/web/stream.xml
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/web/stream.xml
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/web/zap.xml b/lib/python/Plugins/Extensions/WebInterface/web/zap.xml
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/web/zap.xml
+++ /dev/null
diff --git a/lib/python/Plugins/Extensions/WebInterface/webif.py b/lib/python/Plugins/Extensions/WebInterface/webif.py
deleted file mode 100644
index e69de29b..00000000
--- a/lib/python/Plugins/Extensions/WebInterface/webif.py
+++ /dev/null