Make the factory uglier, but better able to handle not running from inside the library, and make the plugins import from the library. These changes make it possible to run epicrefactor from outside itself, which is necessary to make the top level terminator script work with it

This commit is contained in:
Chris Jones 2010-01-04 13:46:55 +00:00
parent df9abd4523
commit 42e022a938
4 changed files with 12 additions and 4 deletions

View File

@ -29,7 +29,15 @@ class Factory(Borg):
'Container': 'container',
'Window': 'window'}
if classtype in types.keys():
module = __import__(types[classtype], None, None, [''])
# This is quite ugly, but we're importing from the current
# directory if that makes sense, otherwise falling back to
# terminatorlib. Someone with real Python skills should fix
# this to be less insane.
try:
module = __import__(types[classtype], None, None, [''])
except ImportError, ex:
module = __import__('terminatorlib.%s' % types[classtype],
None, None, [''])
return(isinstance(product, getattr(module, classtype)))
else:
err('Factory::isinstance: unknown class type: %s' % classtype)

View File

@ -2,7 +2,7 @@
# GPL v2 only
"""terminal_menu.py - Default plugins for the terminal menu"""
import gtk
import plugin
import terminatorlib.plugin as plugin
# Every plugin you want Terminator to load *must* be listed in 'available'

View File

@ -1,4 +1,4 @@
import plugin
import terminatorlib.plugin as plugin
# available must contain a list of all the classes that you want exposed
available = ['TestPlugin']

View File

@ -2,7 +2,7 @@
# GPL v2 only
"""url_handlers.py - Default plugins for URL handling"""
import re
import plugin
import terminatorlib.plugin as plugin
# Every plugin you want Terminator to load *must* be listed in 'available'
available = ['LaunchpadBugURLHandler', 'LaunchpadCodeURLHandler', 'APTURLHandler']