5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to show the output of the svn proplist command process. |
7 Module implementing a dialog to show the output of the svn proplist command process. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtCore import * |
10 from PyQt4.QtCore import QTimer, QProcess, QRegExp, Qt |
11 from PyQt4.QtGui import * |
11 from PyQt4.QtGui import QWidget, QHeaderView, QDialogButtonBox, QTreeWidgetItem |
12 |
12 |
13 from E5Gui import E5MessageBox |
13 from E5Gui import E5MessageBox |
14 |
14 |
15 from .Ui_SvnPropListDialog import Ui_SvnPropListDialog |
15 from .Ui_SvnPropListDialog import Ui_SvnPropListDialog |
16 |
16 |