This file is indexed.

/usr/lib/python2.7/dist-packages/hachoir_metadata/qt/dialog_ui.py is in python-hachoir-metadata 1.3.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
62
63
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'hachoir_metadata/qt/dialog.ui'
#
# Created: Thu Oct  2 21:06:51 2014
#      by: PyQt4 UI code generator 4.11.2
#
# 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_Form(object):
    def setupUi(self, Form):
        Form.setObjectName(_fromUtf8("Form"))
        Form.resize(441, 412)
        self.verticalLayout = QtGui.QVBoxLayout(Form)
        self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
        self.horizontalLayout_2 = QtGui.QHBoxLayout()
        self.horizontalLayout_2.setObjectName(_fromUtf8("horizontalLayout_2"))
        self.open_button = QtGui.QPushButton(Form)
        self.open_button.setObjectName(_fromUtf8("open_button"))
        self.horizontalLayout_2.addWidget(self.open_button)
        self.files_combo = QtGui.QComboBox(Form)
        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed)
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.files_combo.sizePolicy().hasHeightForWidth())
        self.files_combo.setSizePolicy(sizePolicy)
        self.files_combo.setObjectName(_fromUtf8("files_combo"))
        self.horizontalLayout_2.addWidget(self.files_combo)
        self.verticalLayout.addLayout(self.horizontalLayout_2)
        self.metadata_table = QtGui.QTableWidget(Form)
        self.metadata_table.setAlternatingRowColors(True)
        self.metadata_table.setShowGrid(False)
        self.metadata_table.setRowCount(0)
        self.metadata_table.setColumnCount(0)
        self.metadata_table.setObjectName(_fromUtf8("metadata_table"))
        self.verticalLayout.addWidget(self.metadata_table)
        self.quit_button = QtGui.QPushButton(Form)
        self.quit_button.setObjectName(_fromUtf8("quit_button"))
        self.verticalLayout.addWidget(self.quit_button)

        self.retranslateUi(Form)
        QtCore.QMetaObject.connectSlotsByName(Form)

    def retranslateUi(self, Form):
        Form.setWindowTitle(_translate("Form", "hachoir-metadata", None))
        self.open_button.setText(_translate("Form", "Open", None))
        self.quit_button.setText(_translate("Form", "Quit", None))