-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed security declaration for nonexistent method ZPythonScriptHTML…
…_changePrefs. Warnings on startup: ``` Class Products.CMFFormController.ControllerPythonScript.ControllerPythonScript has a security declaration for nonexistent method 'ZPythonScriptHTML_changePrefs' Class Products.CMFFormController.ControllerValidator.ControllerValidator has a security declaration for nonexistent method 'ZPythonScriptHTML_changePrefs' ``` This method was removed from `Products.PythonScripts` in version 4.2, from October 2018. Added `Products.PythonScripts>=4.2` as dependency.
- Loading branch information
1 parent
73dbde3
commit 24f5fe4
Showing
4 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Removed security declaration for nonexistent method ``ZPythonScriptHTML_changePrefs``. | ||
This method was removed from ``Products.PythonScripts`` in version 4.2, from October 2018. | ||
Added ``Products.PythonScripts>=4.2`` as dependency. | ||
[maurits] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,5 +49,6 @@ | |
'Acquisition', | ||
'transaction', | ||
'Zope2>=4.0.a2', | ||
'Products.PythonScripts>=4.2', | ||
], | ||
) |