예제 #1
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the import.
     """
     log.debug('initialise FoilPresenterImport')
     SongImport.__init__(self, manager, **kwargs)
     self.foil_presenter = FoilPresenter(self.manager, self)
예제 #2
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the import.
     """
     log.debug('initialise FoilPresenterImport')
     SongImport.__init__(self, manager, **kwargs)
     self.foil_presenter = FoilPresenter(self.manager, self)
예제 #3
0
파일: songimport.py 프로젝트: ipic/projecao
 def __init__(self):
     """
     Initialize
     """
     songs = Registry().get('songs')
     manager = songs.plugin.manager
     SongImport.__init__(self, manager, file_path=None)
예제 #4
0
 def __init__(self):
     """
     Initialize.  Create a new manager object that always saves songs
     as temporary and pass this into the SongImport init function.
     """
     temp_manager = ManagerThatSavesSongAsTemporary()
     SongImport.__init__(self, temp_manager, filename=None)
예제 #5
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the SongPro importer.
     """
     SongImport.__init__(self, manager, **kwargs)
예제 #6
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the class.
     """
     SongImport.__init__(self, manager, **kwargs)
     self.encoding = 'us-ascii'
예제 #7
0
파일: sundayplus.py 프로젝트: jkunle/paul
 def __init__(self, manager, **kwargs):
     """
     Initialise the class.
     """
     SongImport.__init__(self, manager, **kwargs)
     self.encoding = 'us-ascii'
예제 #8
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the MediaShout importer.
     """
     SongImport.__init__(self, manager, **kwargs)
예제 #9
0
 def __init__(self, manager, **kwargs):
     """
     Initialise the MediaShout importer.
     """
     SongImport.__init__(self, manager, **kwargs)