15 |
15 |
16 from .Ui_SvnCommandDialog import Ui_SvnCommandDialog |
16 from .Ui_SvnCommandDialog import Ui_SvnCommandDialog |
17 |
17 |
18 import Utilities |
18 import Utilities |
19 |
19 |
|
20 |
20 class SvnCommandDialog(QDialog, Ui_SvnCommandDialog): |
21 class SvnCommandDialog(QDialog, Ui_SvnCommandDialog): |
21 """ |
22 """ |
22 Class implementing the Subversion command dialog. |
23 Class implementing the Subversion command dialog. |
23 |
24 |
24 It implements a dialog that is used to enter an |
25 It implements a dialog that is used to enter an |
25 arbitrary subversion command. It asks the user to enter |
26 arbitrary subversion command. It asks the user to enter |
26 the commandline parameters and the working directory. |
27 the commandline parameters and the working directory. |
27 """ |
28 """ |
28 def __init__(self, argvList, wdList, ppath, parent = None): |
29 def __init__(self, argvList, wdList, ppath, parent=None): |
29 """ |
30 """ |
30 Constructor |
31 Constructor |
31 |
32 |
32 @param argvList history list of commandline arguments (list of strings) |
33 @param argvList history list of commandline arguments (list of strings) |
33 @param wdList history list of working directories (list of strings) |
34 @param wdList history list of working directories (list of strings) |