This file is indexed.

/usr/share/pyshared/SCRIBES/TriggerSystem/Manager.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
from gobject import GObject, SIGNAL_ACTION, SIGNAL_RUN_LAST
from gobject import SIGNAL_NO_RECURSE, TYPE_NONE, TYPE_PYOBJECT
SSIGNAL = SIGNAL_RUN_LAST|SIGNAL_NO_RECURSE|SIGNAL_ACTION

class Manager(GObject):

	__gsignals__ = {
		"add": (SSIGNAL, TYPE_NONE, (TYPE_PYOBJECT,)),
		"remove": (SSIGNAL, TYPE_NONE, (TYPE_PYOBJECT,)),
		"quit": (SSIGNAL, TYPE_NONE, ()),
		"triggers-cleared": (SSIGNAL, TYPE_NONE, ()),
	}

	def __init__(self, editor):
		editor.response()
		GObject.__init__(self)
		from Bindings.Manager import Manager
		Manager(editor)
		from Quiter import Quiter
		Quiter(self, editor)
		from TriggerManager import Manager
		Manager(self, editor)
		from TriggerActivator import Activator
		Activator(self, editor)
		from AcceleratorActivator import Activator
		Activator(self, editor)
		from TriggerRemover import Remover
		Remover(self, editor)
		from Validator import Validator
		Validator(self, editor)
		editor.response()