This file is indexed.

/usr/lib/python2.7/dist-packages/qctlib/ui_select.py is in qct 1.7-3.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'qctlib/select.ui'
#
# Created by: PyQt4 UI code generator 4.11.4
#
# WARNING! All changes made in this file will be lost!

from PyQt4 import QtCore, QtGui

try:
    _fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
    def _fromUtf8(s):
        return s

try:
    _encoding = QtGui.QApplication.UnicodeUTF8
    def _translate(context, text, disambig):
        return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
    def _translate(context, text, disambig):
        return QtGui.QApplication.translate(context, text, disambig)

class Ui_ChangeDialog(object):
    def setupUi(self, ChangeDialog):
        ChangeDialog.setObjectName(_fromUtf8("ChangeDialog"))
        ChangeDialog.resize(495, 356)
        self.vboxlayout = QtGui.QVBoxLayout(ChangeDialog)
        self.vboxlayout.setObjectName(_fromUtf8("vboxlayout"))
        self.hboxlayout = QtGui.QHBoxLayout()
        self.hboxlayout.setObjectName(_fromUtf8("hboxlayout"))
        spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
        self.hboxlayout.addItem(spacerItem)
        self.keepButton = QtGui.QPushButton(ChangeDialog)
        self.keepButton.setObjectName(_fromUtf8("keepButton"))
        self.hboxlayout.addWidget(self.keepButton)
        self.shelveButton = QtGui.QPushButton(ChangeDialog)
        self.shelveButton.setObjectName(_fromUtf8("shelveButton"))
        self.hboxlayout.addWidget(self.shelveButton)
        spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
        self.hboxlayout.addItem(spacerItem1)
        self.vboxlayout.addLayout(self.hboxlayout)
        self.textEdit = QtGui.QTextEdit(ChangeDialog)
        self.textEdit.setObjectName(_fromUtf8("textEdit"))
        self.vboxlayout.addWidget(self.textEdit)
        self.buttonBox = QtGui.QDialogButtonBox(ChangeDialog)
        self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
        self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.NoButton|QtGui.QDialogButtonBox.Ok)
        self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
        self.vboxlayout.addWidget(self.buttonBox)

        self.retranslateUi(ChangeDialog)
        QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), ChangeDialog.accept)
        QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), ChangeDialog.reject)
        QtCore.QMetaObject.connectSlotsByName(ChangeDialog)

    def retranslateUi(self, ChangeDialog):
        ChangeDialog.setWindowTitle(_translate("ChangeDialog", "Select Changes for Commit", None))
        self.keepButton.setText(_translate("ChangeDialog", "Keep", None))
        self.shelveButton.setText(_translate("ChangeDialog", "Shelve", None))