/usr/share/pyshared/SCRIBES/PluginSystemInitializer.py is in scribes 0.4~r543-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | class Initializer(object):
def __init__(self, editor, uri):
editor.response()
self.__init_attributes(editor)
self.__sigid1 = editor.connect_after("loaded-file", self.__loaded_cb)
self.__sigid2 = editor.connect("load-error", self.__loaded_cb)
if not uri: self.__init_plugins()
editor.response()
def __init_attributes(self, editor):
self.__editor = editor
return
def __destroy(self):
self.__editor.disconnect_signal(self.__sigid1, self.__editor)
self.__editor.disconnect_signal(self.__sigid2, self.__editor)
del self
self = None
return
def __init_plugins(self):
self.__editor.response()
self.__editor.move_view_to_cursor(True)
from PluginInitializer.Manager import Manager
Manager(self.__editor)
self.__editor.emit("ready")
self.__editor.refresh()
self.__destroy()
return False
def __loaded_cb(self, *args):
self.__editor.response()
from gobject import idle_add
idle_add(self.__init_plugins, priority=999999)
return False
|