This file is indexed.

/usr/share/pyshared/UiQT4/OptionsPdf.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
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file '/tmp/oo/EficasV1/UiQT4/OptionsPdf.ui'
#
# Created: Mon Jun 21 09:54:18 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_desPdf(object):
    def setupUi(self, desPdf):
        desPdf.setObjectName("desPdf")
        desPdf.resize(538,142)
        self.textLabel1_2 = QtGui.QLabel(desPdf)
        self.textLabel1_2.setGeometry(QtCore.QRect(20,10,280,20))
        self.textLabel1_2.setWordWrap(False)
        self.textLabel1_2.setObjectName("textLabel1_2")
        self.BCancel = QtGui.QPushButton(desPdf)
        self.BCancel.setGeometry(QtCore.QRect(450,90,70,31))
        self.BCancel.setObjectName("BCancel")
        self.LERepPdf = QtGui.QLineEdit(desPdf)
        self.LERepPdf.setGeometry(QtCore.QRect(20,40,501,31))
        self.LERepPdf.setObjectName("LERepPdf")
        self.Bok = QtGui.QPushButton(desPdf)
        self.Bok.setGeometry(QtCore.QRect(350,90,70,31))
        self.Bok.setObjectName("Bok")

        self.retranslateUi(desPdf)
        desPdf.setTabOrder(self.LERepPdf,self.Bok)
        desPdf.setTabOrder(self.Bok,self.BCancel)

    def retranslateUi(self, desPdf):
        desPdf.setWindowTitle(QtGui.QApplication.translate("desPdf", "desPdf", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_2.setText(QtGui.QApplication.translate("desPdf", "Lecteur Pdf", None, QtGui.QApplication.UnicodeUTF8))
        self.BCancel.setText(QtGui.QApplication.translate("desPdf", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
        self.LERepPdf.setText(QtGui.QApplication.translate("desPdf", "acroread", None, QtGui.QApplication.UnicodeUTF8))
        self.Bok.setText(QtGui.QApplication.translate("desPdf", "Ok", None, QtGui.QApplication.UnicodeUTF8))


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