This file is indexed.

/usr/share/pyshared/pyacidobasic/Ui_prelevement.py is in python-acidobasic 2.2-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
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'prelevement.ui'
#
# Created: Sun Jul  1 04:41:24 2012
#      by: PyQt4 UI code generator 4.9.3
#
# WARNING! All changes made in this file will be lost!

from PyQt4 import QtCore, QtGui

try:
    _fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
    _fromUtf8 = lambda s: s

class Ui_Dialog(object):
    def setupUi(self, Dialog):
        Dialog.setObjectName(_fromUtf8("Dialog"))
        Dialog.resize(333, 165)
        Dialog.setModal(True)
        self.buttonBox = QtGui.QDialogButtonBox(Dialog)
        self.buttonBox.setGeometry(QtCore.QRect(40, 110, 251, 32))
        self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
        self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
        self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
        self.labelPrelevement = QtGui.QLabel(Dialog)
        self.labelPrelevement.setGeometry(QtCore.QRect(20, 20, 341, 16))
        self.labelPrelevement.setObjectName(_fromUtf8("labelPrelevement"))
        self.layoutWidget = QtGui.QWidget(Dialog)
        self.layoutWidget.setGeometry(QtCore.QRect(21, 40, 269, 56))
        self.layoutWidget.setObjectName(_fromUtf8("layoutWidget"))
        self.formLayout = QtGui.QFormLayout(self.layoutWidget)
        self.formLayout.setMargin(0)
        self.formLayout.setObjectName(_fromUtf8("formLayout"))
        self.label_2 = QtGui.QLabel(self.layoutWidget)
        self.label_2.setObjectName(_fromUtf8("label_2"))
        self.formLayout.setWidget(0, QtGui.QFormLayout.LabelRole, self.label_2)
        self.lineEditC = QtGui.QLineEdit(self.layoutWidget)
        self.lineEditC.setObjectName(_fromUtf8("lineEditC"))
        self.formLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.lineEditC)
        self.label_3 = QtGui.QLabel(self.layoutWidget)
        self.label_3.setObjectName(_fromUtf8("label_3"))
        self.formLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.label_3)
        self.lineEditV = QtGui.QLineEdit(self.layoutWidget)
        self.lineEditV.setObjectName(_fromUtf8("lineEditV"))
        self.formLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.lineEditV)

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

    def retranslateUi(self, Dialog):
        Dialog.setWindowTitle(QtGui.QApplication.translate("Dialog", "Définition d\'un prélèvement", None, QtGui.QApplication.UnicodeUTF8))
        self.labelPrelevement.setText(QtGui.QApplication.translate("Dialog", "Prélèvement : ", None, QtGui.QApplication.UnicodeUTF8))
        self.label_2.setText(QtGui.QApplication.translate("Dialog", "Concentration (mol/L)", None, QtGui.QApplication.UnicodeUTF8))
        self.lineEditC.setText(QtGui.QApplication.translate("Dialog", "0.1", None, QtGui.QApplication.UnicodeUTF8))
        self.label_3.setText(QtGui.QApplication.translate("Dialog", "Volume (mL)", None, QtGui.QApplication.UnicodeUTF8))
        self.lineEditV.setText(QtGui.QApplication.translate("Dialog", "10.0", None, QtGui.QApplication.UnicodeUTF8))