move media scanner components into core, patch by Moritz Venn (002_enigma2_move_media...
[enigma2.git] / lib / python / Plugins / Extensions / IpkgInstaller / plugin.py
index f6dfc9658dc115862ded60b323f96126ba9a9a34..4893dc473e041bbfc97085df30004575047332f8 100644 (file)
@@ -20,7 +20,7 @@ class IpkgInstaller(Screen):
        def __init__(self, session, list):
                self.skin = IpkgInstaller.skin
                Screen.__init__(self, session)
-               
+
                self.list = SelectionList()
                self["list"] = self.list
                for listindex in range(len(list)):
@@ -47,14 +47,13 @@ class IpkgInstaller(Screen):
                self.session.open(Ipkg, cmdList = cmdList)
 
 def filescan_open(list, session, **kwargs):
-       session.open(IpkgInstaller, list) # list
+       filelist = [x.path for x in list]
+       session.open(IpkgInstaller, filelist) # list
 
-def filescan():
-       # we expect not to be called if the MediaScanner plugin is not available,
-       # thus we don't catch an ImportError exception here
-       from Plugins.Extensions.MediaScanner.plugin import Scanner, ScanPath
+def filescan(**kwargs):
+       from Components.Scanner import Scanner, ScanPath
        return \
-               Scanner(extensions = ["ipk"], 
+               Scanner(mimetypes = ["application/x-debian-package"], 
                        paths_to_scan = 
                                [
                                        ScanPath(path = "ipk", with_subdirs = True), 
@@ -62,8 +61,7 @@ def filescan():
                                ], 
                        name = "Ipkg", 
                        description = "Install software updates...", 
-                       openfnc = filescan_open, 
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               )
-               
+                       openfnc = filescan_open, )
+
 def Plugins(**kwargs):
-       return [ PluginDescriptor(name="Ipkg", where = PluginDescriptor.WHERE_FILESCAN, fnc = filescan) ]
\ No newline at end of file
+       return [ PluginDescriptor(name="Ipkg", where = PluginDescriptor.WHERE_FILESCAN, fnc = filescan) ]