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