This file is indexed.

/usr/share/pyshared/weboob/applications/qhavedate/ui/events_ui.py is in weboob-qt 0.g-1.

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 'events.ui'
#
# Created: Wed Oct 23 03:28:18 2013
#      by: PyQt4 UI code generator 4.10.3
#
# 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_Events(object):
    def setupUi(self, Events):
        Events.setObjectName(_fromUtf8("Events"))
        Events.resize(497, 318)
        self.verticalLayout = QtGui.QVBoxLayout(Events)
        self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
        self.horizontalLayout_2 = QtGui.QHBoxLayout()
        self.horizontalLayout_2.setObjectName(_fromUtf8("horizontalLayout_2"))
        self.typeBox = QtGui.QComboBox(Events)
        self.typeBox.setObjectName(_fromUtf8("typeBox"))
        self.horizontalLayout_2.addWidget(self.typeBox)
        self.refreshButton = QtGui.QToolButton(Events)
        self.refreshButton.setText(_fromUtf8(""))
        icon = QtGui.QIcon()
        icon.addPixmap(QtGui.QPixmap(_fromUtf8("../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../usr/share/icons/oxygen/16x16/actions/view-refresh.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
        self.refreshButton.setIcon(icon)
        self.refreshButton.setObjectName(_fromUtf8("refreshButton"))
        self.horizontalLayout_2.addWidget(self.refreshButton)
        self.verticalLayout.addLayout(self.horizontalLayout_2)
        self.eventsList = QtGui.QTreeWidget(Events)
        self.eventsList.setEditTriggers(QtGui.QAbstractItemView.NoEditTriggers)
        self.eventsList.setAlternatingRowColors(True)
        self.eventsList.setIconSize(QtCore.QSize(64, 64))
        self.eventsList.setRootIsDecorated(False)
        self.eventsList.setAnimated(True)
        self.eventsList.setObjectName(_fromUtf8("eventsList"))
        self.verticalLayout.addWidget(self.eventsList)

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

    def retranslateUi(self, Events):
        Events.setWindowTitle(_translate("Events", "Form", None))
        self.eventsList.setSortingEnabled(True)
        self.eventsList.headerItem().setText(0, _translate("Events", "Contact", None))
        self.eventsList.headerItem().setText(1, _translate("Events", "Date", None))
        self.eventsList.headerItem().setText(2, _translate("Events", "Type", None))
        self.eventsList.headerItem().setText(3, _translate("Events", "Message", None))