PluginRefactoringRope.py

branch
eric7
changeset 373
c7cf0c06c92e
parent 370
9d246420f284
child 374
958f34e97952
equal deleted inserted replaced
370:9d246420f284 373:c7cf0c06c92e
20 # Start-Of-Header 20 # Start-Of-Header
21 name = "Refactoring Rope Plugin" 21 name = "Refactoring Rope Plugin"
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 22 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
23 autoactivate = True 23 autoactivate = True
24 deactivateable = True 24 deactivateable = True
25 version = "1.1.0" 25 version = "1.1.1"
26 className = "RefactoringRopePlugin" 26 className = "RefactoringRopePlugin"
27 packageName = "RefactoringRope" 27 packageName = "RefactoringRope"
28 internalPackages = "rope" 28 internalPackages = "rope"
29 shortDescription = "Refactoring and Code Assist using the Rope library." 29 shortDescription = "Refactoring and Code Assist using the Rope library."
30 longDescription = ( 30 longDescription = (
113 data = { 113 data = {
114 "ropeAutoCompletionPage": [ 114 "ropeAutoCompletionPage": [
115 QCoreApplication.translate("RefactoringRopePlugin", "Rope"), 115 QCoreApplication.translate("RefactoringRopePlugin", "Rope"),
116 os.path.join("RefactoringRope", "ConfigurationPage", 116 os.path.join("RefactoringRope", "ConfigurationPage",
117 "preferences-refactoring-{0}".format(iconSuffix)), 117 "preferences-refactoring-{0}".format(iconSuffix)),
118 createAutoCompletionPage, "editorAutocompletionPage", None], 118 createAutoCompletionPage, "1editorAutocompletionPage", None],
119 "ropeCallTipsPage": [ 119 "ropeCallTipsPage": [
120 QCoreApplication.translate("RefactoringRopePlugin", "Rope"), 120 QCoreApplication.translate("RefactoringRopePlugin", "Rope"),
121 os.path.join("RefactoringRope", "ConfigurationPage", 121 os.path.join("RefactoringRope", "ConfigurationPage",
122 "preferences-refactoring-{0}".format(iconSuffix)), 122 "preferences-refactoring-{0}".format(iconSuffix)),
123 createCallTipsPage, "editorCalltipsPage", None], 123 createCallTipsPage, "1editorCalltipsPage", None],
124 "ropeMouseClickHandlerPage": [ 124 "ropeMouseClickHandlerPage": [
125 QCoreApplication.translate("RefactoringRopePlugin", "Rope"), 125 QCoreApplication.translate("RefactoringRopePlugin", "Rope"),
126 os.path.join("RefactoringRope", "ConfigurationPage", 126 os.path.join("RefactoringRope", "ConfigurationPage",
127 "preferences-refactoring-{0}".format(iconSuffix)), 127 "preferences-refactoring-{0}".format(iconSuffix)),
128 createMouseClickHandlerPage, "1editorMouseClickHandlers", None], 128 createMouseClickHandlerPage, "1editorMouseClickHandlers", None],

eric ide

mercurial