This file is indexed.

/usr/lib/python2.7/dist-packages/code_saturne/Pages/BatchRunningStopByIterationDialogForm.py is in code-saturne-data 4.3.3+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
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'BatchRunningStopByIterationDialogForm.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_BatchRunningStopByIterationDialogForm(object):
    def setupUi(self, BatchRunningStopByIterationDialogForm):
        BatchRunningStopByIterationDialogForm.setObjectName(_fromUtf8("BatchRunningStopByIterationDialogForm"))
        BatchRunningStopByIterationDialogForm.resize(292, 103)
        self.verticalLayout = QtGui.QVBoxLayout(BatchRunningStopByIterationDialogForm)
        self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
        self.groupBox = QtGui.QGroupBox(BatchRunningStopByIterationDialogForm)
        self.groupBox.setTitle(_fromUtf8(""))
        self.groupBox.setObjectName(_fromUtf8("groupBox"))
        self.gridLayout = QtGui.QGridLayout(self.groupBox)
        self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
        self.horizontalLayout = QtGui.QHBoxLayout()
        self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
        spacerItem = QtGui.QSpacerItem(13, 15, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
        self.horizontalLayout.addItem(spacerItem)
        self.label = QtGui.QLabel(self.groupBox)
        self.label.setObjectName(_fromUtf8("label"))
        self.horizontalLayout.addWidget(self.label)
        self.lineEditStopIter = QtGui.QLineEdit(self.groupBox)
        self.lineEditStopIter.setText(_fromUtf8(""))
        self.lineEditStopIter.setObjectName(_fromUtf8("lineEditStopIter"))
        self.horizontalLayout.addWidget(self.lineEditStopIter)
        spacerItem1 = QtGui.QSpacerItem(13, 17, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
        self.horizontalLayout.addItem(spacerItem1)
        self.gridLayout.addLayout(self.horizontalLayout, 0, 0, 1, 1)
        self.verticalLayout.addWidget(self.groupBox)
        self.buttonBox = QtGui.QDialogButtonBox(BatchRunningStopByIterationDialogForm)
        self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
        self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
        self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
        self.verticalLayout.addWidget(self.buttonBox)

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

    def retranslateUi(self, BatchRunningStopByIterationDialogForm):
        BatchRunningStopByIterationDialogForm.setWindowTitle(_translate("BatchRunningStopByIterationDialogForm", "Stop", None))
        self.label.setText(_translate("BatchRunningStopByIterationDialogForm", "Number of time step ", None))