7 Module implementing a dialog to enter the URLs for the svn diff command. |
7 Module implementing a dialog to enter the URLs for the svn diff command. |
8 """ |
8 """ |
9 |
9 |
10 import re |
10 import re |
11 |
11 |
|
12 import pysvn |
|
13 |
12 from PyQt6.QtCore import pyqtSlot |
14 from PyQt6.QtCore import pyqtSlot |
13 from PyQt6.QtWidgets import QDialog |
15 from PyQt6.QtWidgets import QDialog |
14 |
16 |
|
17 from eric7 import Utilities |
|
18 from eric7.EricWidgets import EricMessageBox |
15 from eric7.EricWidgets.EricApplication import ericApp |
19 from eric7.EricWidgets.EricApplication import ericApp |
16 from eric7.EricWidgets import EricMessageBox |
|
17 |
|
18 import pysvn |
|
19 |
20 |
20 from .Ui_SvnUrlSelectionDialog import Ui_SvnUrlSelectionDialog |
21 from .Ui_SvnUrlSelectionDialog import Ui_SvnUrlSelectionDialog |
21 |
|
22 from eric7 import Utilities |
|
23 |
22 |
24 |
23 |
25 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog): |
24 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog): |
26 """ |
25 """ |
27 Class implementing a dialog to enter the URLs for the svn diff command. |
26 Class implementing a dialog to enter the URLs for the svn diff command. |