5 |
5 |
6 """ |
6 """ |
7 Module implementing the subversion repository browser dialog. |
7 Module implementing the subversion repository browser dialog. |
8 """ |
8 """ |
9 |
9 |
|
10 import os |
10 import re |
11 import re |
11 import os |
12 |
12 |
13 from PyQt6.QtCore import QProcess, Qt, QTimer, pyqtSlot |
13 from PyQt6.QtCore import pyqtSlot, Qt, QTimer, QProcess |
|
14 from PyQt6.QtWidgets import ( |
14 from PyQt6.QtWidgets import ( |
|
15 QDialog, |
|
16 QDialogButtonBox, |
15 QHeaderView, |
17 QHeaderView, |
16 QLineEdit, |
18 QLineEdit, |
17 QDialog, |
|
18 QDialogButtonBox, |
|
19 QTreeWidgetItem, |
19 QTreeWidgetItem, |
20 ) |
20 ) |
21 |
21 |
|
22 from eric7 import Preferences |
|
23 from eric7.EricGui import EricPixmapCache |
|
24 from eric7.EricGui.EricOverrideCursor import EricOverrideCursorProcess |
22 from eric7.EricWidgets import EricMessageBox |
25 from eric7.EricWidgets import EricMessageBox |
23 from eric7.EricGui.EricOverrideCursor import EricOverrideCursorProcess |
26 from eric7.Globals import strToQByteArray |
24 |
27 |
25 from .Ui_SvnRepoBrowserDialog import Ui_SvnRepoBrowserDialog |
28 from .Ui_SvnRepoBrowserDialog import Ui_SvnRepoBrowserDialog |
26 |
|
27 from eric7.EricGui import EricPixmapCache |
|
28 |
|
29 from eric7 import Preferences |
|
30 from eric7.Globals import strToQByteArray |
|
31 |
29 |
32 |
30 |
33 class SvnRepoBrowserDialog(QDialog, Ui_SvnRepoBrowserDialog): |
31 class SvnRepoBrowserDialog(QDialog, Ui_SvnRepoBrowserDialog): |
34 """ |
32 """ |
35 Class implementing the subversion repository browser dialog. |
33 Class implementing the subversion repository browser dialog. |