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 |