Commit d4b45764 authored by 's avatar

- Zope 2 permissions should not be unicode

parent 15b6dbda
......@@ -8,10 +8,18 @@ file HISTORY.txt.
after Zope 2.12.0 b3 (unreleased)
---------------------------------
Features Added
++++++++++++++
- Updated packages:
- zope.testing = 3.7.7
Bugs Fixed
++++++++++
- Five: Fixed the permissions creation feature added in Zope 2.12.0a2.
Zope 2.12.0 b3 (2009/07/15)
---------------------------
......
......@@ -166,16 +166,17 @@ def create_permission_from_permission_directive(permission, event):
"""When a new IPermission utility is registered (via the <permission />
directive), create the equivalent Zope2 style permission.
"""
global _registeredPermissions
zope2_permission = permission.title
# Zope 2 uses string, not unicode yet
zope2_permission = str(permission.title)
roles = ('Manager',)
if not _registeredPermissions.has_key(zope2_permission):
_registeredPermissions[zope2_permission] = 1
Products.__ac_permissions__ += ((zope2_permission, (), roles,),)
mangled = pname(zope2_permission)
setattr(ApplicationDefaultPermissions, mangled, roles)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment