Description
What Zope security permissions you have available for your Plone coding
Each permission name is a string.
To see available permissions, click Security tab at your site root in Zope Management Interface.
In programming, use pseudoconstants instead of permission string values:
For available ZCML permission mappings see:
Products/Five/permissions.zcml
- Permissions such as cmf.ModifyPortalContent, zope2.View
zope/security/permissions.zcml
- zope.Public
or search for the string <permission in *.zcml files in the eggs folder of your Plone development deployment.
Example using UNIX grep tool:
grep -C 3 -Ri --include=*.zcml "<permission" *
Permissions are shown by their verbose name in the ZMI.
More info:
The source code of this file is hosted on GitHub. Everyone can update and fix errors in this document with few clicks - no downloads needed.
For basic information about updating this manual and Sphinx format please see Writing and updating the manual guide.