7 Module implementing a dialog to show the output of the svn log command process. |
7 Module implementing a dialog to show the output of the svn log command process. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt4.QtCore import * |
12 from PyQt4.QtCore import QTimer, QByteArray, QProcess, QRegExp, QUrl, pyqtSlot |
13 from PyQt4.QtGui import * |
13 from PyQt4.QtGui import QWidget, QLineEdit, QApplication, QTextCursor, QDialogButtonBox |
14 |
14 |
15 from E5Gui import E5MessageBox |
15 from E5Gui import E5MessageBox |
16 |
16 |
17 from .Ui_SvnLogDialog import Ui_SvnLogDialog |
17 from .Ui_SvnLogDialog import Ui_SvnLogDialog |
18 from .SvnDiffDialog import SvnDiffDialog |
18 from .SvnDiffDialog import SvnDiffDialog |