/usr/share/pyshared/SCRIBES/ContentDetector.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 37 38 39 40 41 42 43 44 45 | class Detector(object):
def __init__(self, editor, uri):
editor.response()
self.__init_attributes(editor)
if uri: editor.set_data("contains_document", True)
self.__sigid1 = editor.connect("checking-file", self.__checking_file_cb)
self.__sigid2 = editor.connect("load-error", self.__load_error_cb)
self.__sigid3 = editor.connect("modified-file", self.__checking_file_cb)
self.__sigid4 = editor.connect("renamed-file", self.__checking_file_cb)
self.__sigid5 = editor.connect("quit", self.__quit_cb)
editor.register_object(self)
editor.response()
def __init_attributes(self, editor):
self.__editor = editor
return False
def __destroy(self):
self.__editor.disconnect_signal(self.__sigid1, self.__editor)
self.__editor.disconnect_signal(self.__sigid2, self.__editor)
self.__editor.disconnect_signal(self.__sigid3, self.__editor)
self.__editor.disconnect_signal(self.__sigid4, self.__editor)
self.__editor.disconnect_signal(self.__sigid5, self.__editor)
self.__editor.unregister_object(self)
del self
self = None
return False
def __set(self, contains_document, block_or_unblock_signal):
self.__editor.set_data("contains_document", contains_document)
block_or_unblock_signal(self.__sigid3)
return False
def __checking_file_cb(self, *args):
self.__set(True, self.__editor.handler_block)
return False
def __load_error_cb(self, *args):
self.__set(False, self.__editor.handler_unblock)
return False
def __quit_cb(self, *args):
self.__destroy()
return False
|