This file is indexed.

/usr/share/pyshared/UiQT4/desPixmap.py is in eficas 2.0.3-1-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
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file '/tmp/oo/EficasV1/UiQT4/desPixmap.ui'
#
# Created: Mon Jun 21 09:54:20 2010
#      by: PyQt4 UI code generator 4.4.2
#
# WARNING! All changes made in this file will be lost!

from PyQt4 import QtCore, QtGui

class Ui_LabelPixmap(object):
    def setupUi(self, LabelPixmap):
        LabelPixmap.setObjectName("LabelPixmap")
        LabelPixmap.resize(400,300)
        self.gridLayout = QtGui.QGridLayout(LabelPixmap)
        self.gridLayout.setObjectName("gridLayout")
        self.labelPix = QtGui.QLabel(LabelPixmap)
        self.labelPix.setObjectName("labelPix")
        self.gridLayout.addWidget(self.labelPix,0,0,1,1)

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

    def retranslateUi(self, LabelPixmap):
        LabelPixmap.setWindowTitle(QtGui.QApplication.translate("LabelPixmap", "PDF de la loi", None, QtGui.QApplication.UnicodeUTF8))


if __name__ == "__main__":
    import sys
    app = QtGui.QApplication(sys.argv)
    LabelPixmap = QtGui.QDialog()
    ui = Ui_LabelPixmap()
    ui.setupUi(LabelPixmap)
    LabelPixmap.show()
    sys.exit(app.exec_())