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