This file is indexed.

/usr/share/firmware-tools/guihelpers.py is in firmware-tools-gui 2.1.14-0ubuntu1.

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
46
# vim:ai:ts=4:sw=4:et:filetype=python:

#future imports always first
from __future__ import generators

# std python stuff
import logging
import gtk

from firmwaretools.pycompat import runLongProcess
from firmwaretools.trace_decorator import decorate, traceLog, getLog

moduleLog = getLog()
moduleVerboseLog = getLog(prefix="verbose.")


decorate(traceLog())
def getSelectionPaths(treeview):
    def func(model, path, iterator, data):
        model = None
        iterator = None
        data.append(path)

    paths = []
    treeselection = treeview.get_selection()
    treeselection.selected_foreach(func, paths)
    return paths

decorate(traceLog())
def gtkYield():
    # process gui events during long-running loops
    # so that we are more responsive
    while gtk.events_pending():
        gtk.main_iteration(False)


decorate(traceLog())
def runLongProcessGtk(function, args=None, kargs=None, waitLoopFunction=None):
    decorate(traceLog())
    def myFunc():
        # can access outer function variables
        if waitLoopFunction is not None:
            waitLoopFunction()
        gtkYield() # make sure current GUI is fully displayed

    return runLongProcess(function, args, kargs, waitLoopFunction=myFunc)