15 |
15 |
16 from eric7 import Preferences |
16 from eric7 import Preferences |
17 from eric7.EricWidgets.EricApplication import ericApp |
17 from eric7.EricWidgets.EricApplication import ericApp |
18 from eric7.Plugins.VcsPlugins.vcsPySvn.SvnUtilities import getConfigPath, getServersPath |
18 from eric7.Plugins.VcsPlugins.vcsPySvn.SvnUtilities import getConfigPath, getServersPath |
19 from eric7.Preferences.Shortcuts import readShortcuts |
19 from eric7.Preferences.Shortcuts import readShortcuts |
20 from eric7.UI import Info |
20 from eric7.__version__ import VersionOnly |
21 |
21 |
22 # Start-Of-Header |
22 # Start-Of-Header |
23 __header__ = { |
23 __header__ = { |
24 "name": "PySvn Plugin", |
24 "name": "PySvn Plugin", |
25 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
25 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
26 "autoactivate": False, |
26 "autoactivate": False, |
27 "deactivateable": True, |
27 "deactivateable": True, |
28 "version": Info.VersionOnly, |
28 "version": VersionOnly, |
29 "pluginType": "version_control", |
29 "pluginType": "version_control", |
30 "pluginTypename": "PySvn", |
30 "pluginTypename": "PySvn", |
31 "className": "VcsPySvnPlugin", |
31 "className": "VcsPySvnPlugin", |
32 "packageName": "__core__", |
32 "packageName": "__core__", |
33 "shortDescription": "Implements the PySvn version control interface.", |
33 "shortDescription": "Implements the PySvn version control interface.", |