6 """ |
6 """ |
7 Module implementing the base class of the VCS project helper. |
7 Module implementing the base class of the VCS project helper. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 import sys |
|
12 import shutil |
11 import shutil |
13 import copy |
12 import copy |
14 |
13 |
15 from PyQt4.QtCore import * |
14 from PyQt4.QtCore import * |
16 from PyQt4.QtGui import * |
15 from PyQt4.QtGui import * |
17 |
16 |
18 from E5Gui.E5Application import e5App |
17 from E5Gui.E5Application import e5App |
19 |
18 |
20 import VCS |
|
21 from .CommandOptionsDialog import vcsCommandOptionsDialog |
19 from .CommandOptionsDialog import vcsCommandOptionsDialog |
22 from .RepositoryInfoDialog import VcsRepositoryInfoDialog |
20 from .RepositoryInfoDialog import VcsRepositoryInfoDialog |
23 |
21 |
24 from E5Gui.E5Action import E5Action |
22 from E5Gui.E5Action import E5Action |
25 |
23 |
26 import Utilities |
|
27 import Preferences |
24 import Preferences |
28 |
25 |
29 class VcsProjectHelper(QObject): |
26 class VcsProjectHelper(QObject): |
30 """ |
27 """ |
31 Class implementing the base class of the VCS project helper. |
28 Class implementing the base class of the VCS project helper. |