/usr/share/pyshared/subdownloader/gui/about.py is in subdownloader 2.0.18-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 | #!/usr/bin/env python
# Copyright (c) 2010 SubDownloader Developers - See COPYING - GPLv3
from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import Qt, SIGNAL, QObject, QCoreApplication, \
QSettings, QVariant, QSize, QEventLoop, QString, \
QBuffer, QIODevice, QModelIndex,QDir
from PyQt4.QtGui import QPixmap, QErrorMessage, QLineEdit, \
QMessageBox, QFileDialog, QIcon, QDialog, QInputDialog,QDirModel, QItemSelectionModel
from PyQt4.Qt import qDebug, qFatal, qWarning, qCritical
from gui.about_ui import Ui_AboutDialog
import logging
log = logging.getLogger("subdownloader.gui.about")
class aboutDialog(QtGui.QDialog):
def __init__(self, parent):
QtGui.QDialog.__init__(self)
self.ui = Ui_AboutDialog()
self.ui.setupUi(self)
self._main = parent
settings = QSettings()
QObject.connect(self.ui.buttonClose, SIGNAL("clicked(bool)"), self.onButtonClose)
def onButtonClose(self):
self.reject()
|