This file is indexed.

/usr/lib/python2.7/dist-packages/code_saturne/Pages/VerifyExistenceLabelDialogForm.py is in code-saturne-data 4.2.0+repack-1build1.

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
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'VerifyExistenceLabelDialogForm.ui'
#
# Created by: PyQt4 UI code generator 4.11.4
#
# 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_VerifyExistenceLabelDialogForm(object):
    def setupUi(self, VerifyExistenceLabelDialogForm):
        VerifyExistenceLabelDialogForm.setObjectName(_fromUtf8("VerifyExistenceLabelDialogForm"))
        VerifyExistenceLabelDialogForm.resize(314, 114)
        self.gridlayout = QtGui.QGridLayout(VerifyExistenceLabelDialogForm)
        self.gridlayout.setObjectName(_fromUtf8("gridlayout"))
        self.groupBox = QtGui.QGroupBox(VerifyExistenceLabelDialogForm)
        self.groupBox.setObjectName(_fromUtf8("groupBox"))
        self.gridlayout1 = QtGui.QGridLayout(self.groupBox)
        self.gridlayout1.setObjectName(_fromUtf8("gridlayout1"))
        self.lineEdit = QtGui.QLineEdit(self.groupBox)
        self.lineEdit.setObjectName(_fromUtf8("lineEdit"))
        self.gridlayout1.addWidget(self.lineEdit, 0, 0, 1, 1)
        self.gridlayout.addWidget(self.groupBox, 0, 0, 1, 1)
        self.buttonBox = QtGui.QDialogButtonBox(VerifyExistenceLabelDialogForm)
        self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
        self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.NoButton|QtGui.QDialogButtonBox.Ok)
        self.buttonBox.setCenterButtons(True)
        self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
        self.gridlayout.addWidget(self.buttonBox, 1, 0, 1, 1)
        spacerItem = QtGui.QSpacerItem(16, 16, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
        self.gridlayout.addItem(spacerItem, 2, 0, 1, 1)

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

    def retranslateUi(self, VerifyExistenceLabelDialogForm):
        VerifyExistenceLabelDialogForm.setWindowTitle(_translate("VerifyExistenceLabelDialogForm", "Dialog", None))
        self.groupBox.setTitle(_translate("VerifyExistenceLabelDialogForm", "This label already exists: choose an another one", None))