/usr/share/pyshared/SCRIBES/URILoader/TextInserter.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 | class Inserter(object):
def __init__(self, manager, editor):
editor.response()
self.__init_attributes(manager, editor)
self.__sigid1 = manager.connect("destroy", self.__destroy_cb)
self.__sigid2 = manager.connect("insert-text", self.__insert_cb)
editor.response()
def __init_attributes(self, manager, editor):
self.__editor = editor
self.__manager = manager
return
def __destroy(self):
self.__editor.disconnect_signal(self.__sigid1, self.__manager)
self.__editor.disconnect_signal(self.__sigid2, self.__manager)
del self
self = None
return
def __insert(self, uri, string, encoding):
try:
if encoding is None: encoding = "utf-8"
unicode_string = string.decode(encoding, "strict")
utf8_string = unicode_string.encode("utf-8", "strict")
self.__editor.refresh(False)
self.__editor.textbuffer.set_text(utf8_string)
self.__editor.refresh(False)
self.__manager.emit("load-success", uri, encoding)
except:
self.__manager.emit("insertion-error", uri, string)
finally:
self.__editor.refresh()
return False
def __destroy_cb(self, *args):
self.__destroy()
return False
def __insert_cb(self, manager, uri, string, encoding):
from gobject import idle_add
idle_add(self.__insert, uri, string, encoding)
return False
|