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
ab3c4d27
Commit
ab3c4d27
authored
Jul 05, 2008
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport LP #245649 fix.
parent
6a96c204
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
7 deletions
+12
-7
doc/CHANGES.txt
doc/CHANGES.txt
+4
-1
lib/python/AccessControl/Permission.py
lib/python/AccessControl/Permission.py
+2
-1
lib/python/OFS/ObjectManager.py
lib/python/OFS/ObjectManager.py
+2
-1
lib/python/Products/__init__.py
lib/python/Products/__init__.py
+0
-2
lib/python/ZClasses/Basic.py
lib/python/ZClasses/Basic.py
+4
-2
No files found.
doc/CHANGES.txt
View file @
ab3c4d27
...
...
@@ -8,7 +8,10 @@ Zope Changes
Bugs fixed
- fixed outdated transaction.commit(1) call in
- Launchpad #245649: the Products package is now a proper
"namespace package" under the rules specified by setuptools.
- Fixed outdated transaction.commit(1) call in
ZODBMountPoint.SimpleTrailblazer
- Launchpad #239636: Ensure that HEAD requests lock an empty body
...
...
lib/python/AccessControl/Permission.py
View file @
ab3c4d27
...
...
@@ -129,8 +129,9 @@ def registerPermissions(permissions, defaultDefault=('Manager',)):
else
:
perm
,
methods
,
default
=
setting
_registeredPermissions
[
perm
]
=
1
Products_permissions
=
getattr
(
Products
,
'__ac_permissions__'
,
())
Products
.
__ac_permissions__
=
(
Products
.
__ac_permissions__
+
((
perm
,(),
default
),))
Products
_permissions
+
((
perm
,
(),
default
),))
mangled
=
pname
(
perm
)
# get mangled permission name
if
not
hasattr
(
Globals
.
ApplicationDefaultPermissions
,
mangled
):
setattr
(
Globals
.
ApplicationDefaultPermissions
,
...
...
lib/python/OFS/ObjectManager.py
View file @
ab3c4d27
...
...
@@ -250,7 +250,8 @@ class ObjectManager(
return
meta_types
def
_subobject_permissions
(
self
):
return
(
Products
.
__ac_permissions__
+
Products_permissions
=
getattr
(
Products
,
'__ac_permissions__'
,
())
return
(
Products_permissions
+
self
.
aq_acquire
(
'_getProductRegistryData'
)(
'ac_permissions'
)
)
...
...
lib/python/Products/__init__.py
View file @
ab3c4d27
...
...
@@ -10,8 +10,6 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
__ac_permissions__
=
()
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try
:
__import__
(
'pkg_resources'
).
declare_namespace
(
__name__
)
...
...
lib/python/ZClasses/Basic.py
View file @
ab3c4d27
...
...
@@ -189,9 +189,10 @@ class ZClassPermissionsSheet(OFS.PropertySheets.PropertySheet,
manage
=
Globals
.
DTMLFile
(
'dtml/classPermissions'
,
globals
())
def
possible_permissions
(
self
):
Products_permissions
=
getattr
(
Products
,
'__ac_permissions__'
,
())
r
=
map
(
lambda
p
:
p
[
0
],
Products
.
__ac_permissions__
+
Products
_permissions
+
self
.
aq_acquire
(
'_getProductRegistryData'
)(
'ac_permissions'
)
)
r
.
sort
()
...
...
@@ -199,9 +200,10 @@ class ZClassPermissionsSheet(OFS.PropertySheets.PropertySheet,
def
manage_edit
(
self
,
selected
=
[],
REQUEST
=
None
):
"Remove some permissions"
Products_permissions
=
getattr
(
Products
,
'__ac_permissions__'
,
())
r
=
[]
for
p
in
(
Products
.
__ac_permissions__
+
Products
_permissions
+
self
.
aq_acquire
(
'_getProductRegistryData'
)(
'ac_permissions'
)):
if
p
[
0
]
in
selected
:
r
.
append
(
p
)
...
...
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