18 getConfigPath, |
18 getConfigPath, |
19 getServersPath, |
19 getServersPath, |
20 ) |
20 ) |
21 from eric7.Preferences.Shortcuts import readShortcuts |
21 from eric7.Preferences.Shortcuts import readShortcuts |
22 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities |
22 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities |
23 from eric7.UI import Info |
23 from eric7.__version__ import VersionOnly |
24 |
24 |
25 # Start-Of-Header |
25 # Start-Of-Header |
26 __header__ = { |
26 __header__ = { |
27 "name": "Subversion Plugin", |
27 "name": "Subversion Plugin", |
28 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
28 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
29 "autoactivate": False, |
29 "autoactivate": False, |
30 "deactivateable": True, |
30 "deactivateable": True, |
31 "version": Info.VersionOnly, |
31 "version": VersionOnly, |
32 "pluginType": "version_control", |
32 "pluginType": "version_control", |
33 "pluginTypename": "Subversion", |
33 "pluginTypename": "Subversion", |
34 "className": "VcsSubversionPlugin", |
34 "className": "VcsSubversionPlugin", |
35 "packageName": "__core__", |
35 "packageName": "__core__", |
36 "shortDescription": "Implements the Subversion version control interface.", |
36 "shortDescription": "Implements the Subversion version control interface.", |