eric6/Plugins/PluginVcsPySvn.py

changeset 7256
4ef3b78ebb4e
parent 7229
53054eb5b15a
child 7360
9190402e4505
equal deleted inserted replaced
7255:d595f6f9cbf8 7256:4ef3b78ebb4e
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."
34 longDescription = \ 34 longDescription = (
35 """This plugin provides the PySvn version control interface.""" 35 """This plugin provides the PySvn version control interface."""
36 )
36 pyqtApi = 2 37 pyqtApi = 2
37 # End-Of-Header 38 # End-Of-Header
38 39
39 error = "" 40 error = ""
40 41
103 104
104 @param configDlg reference to the configuration dialog (QDialog) 105 @param configDlg reference to the configuration dialog (QDialog)
105 @return reference to the configuration page 106 @return reference to the configuration page
106 """ 107 """
107 global subversionCfgPluginObject 108 global subversionCfgPluginObject
108 from VcsPlugins.vcsPySvn.ConfigurationPage.SubversionPage import \ 109 from VcsPlugins.vcsPySvn.ConfigurationPage.SubversionPage import (
109 SubversionPage 110 SubversionPage
111 )
110 if subversionCfgPluginObject is None: 112 if subversionCfgPluginObject is None:
111 subversionCfgPluginObject = VcsPySvnPlugin(None) 113 subversionCfgPluginObject = VcsPySvnPlugin(None)
112 page = SubversionPage(subversionCfgPluginObject) 114 page = SubversionPage(subversionCfgPluginObject)
113 return page 115 return page
114 116

eric ide

mercurial