Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
d4b45764
Commit
d4b45764
authored
Jul 19, 2009
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Zope 2 permissions should not be unicode
parent
15b6dbda
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
6 deletions
+15
-6
doc/CHANGES.rst
doc/CHANGES.rst
+8
-0
src/Products/Five/security.py
src/Products/Five/security.py
+7
-6
No files found.
doc/CHANGES.rst
View file @
d4b45764
...
...
@@ -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)
---------------------------
...
...
src/Products/Five/security.py
View file @
d4b45764
...
...
@@ -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
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment