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
2ded236c
Commit
2ded236c
authored
Jul 05, 2013
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add permissions to some unprotected methods of 'OFS.ObjectManager'
Fixes LP #1094221.
parent
95884453
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/OFS/ObjectManager.py
src/OFS/ObjectManager.py
+7
-0
No files found.
src/OFS/ObjectManager.py
View file @
2ded236c
...
...
@@ -293,6 +293,7 @@ class ObjectManager(CopyContainer,
raise
AttributeError
,
id
return
default
security
.
declareProtected
(
access_contents_information
,
'hasObject'
)
def
hasObject
(
self
,
id
):
"""Indicate whether the folder has an item by ID.
...
...
@@ -432,6 +433,7 @@ class ObjectManager(CopyContainer,
# Return a tuple of mappings containing subobject meta-data
return
tuple
(
d
.
copy
()
for
d
in
self
.
_objects
)
security
.
declareProtected
(
access_contents_information
,
'objectIds_d'
)
def
objectIds_d
(
self
,
t
=
None
):
if
hasattr
(
self
,
'_reserved_names'
):
n
=
self
.
_reserved_names
else
:
n
=
()
...
...
@@ -442,9 +444,11 @@ class ObjectManager(CopyContainer,
if
id
not
in
n
:
a
(
id
)
return
r
security
.
declareProtected
(
access_contents_information
,
'objectValues_d'
)
def
objectValues_d
(
self
,
t
=
None
):
return
map
(
self
.
_getOb
,
self
.
objectIds_d
(
t
))
security
.
declareProtected
(
access_contents_information
,
'objectItems_d'
)
def
objectItems_d
(
self
,
t
=
None
):
r
=
[]
a
=
r
.
append
...
...
@@ -452,6 +456,7 @@ class ObjectManager(CopyContainer,
for
id
in
self
.
objectIds_d
(
t
):
a
((
id
,
g
(
id
)))
return
r
security
.
declareProtected
(
access_contents_information
,
'objectMap_d'
)
def
objectMap_d
(
self
,
t
=
None
):
if
hasattr
(
self
,
'_reserved_names'
):
n
=
self
.
_reserved_names
else
:
n
=
()
...
...
@@ -462,6 +467,7 @@ class ObjectManager(CopyContainer,
if
d
[
'id'
]
not
in
n
:
a
(
d
.
copy
())
return
r
security
.
declareProtected
(
access_contents_information
,
'superValues'
)
def
superValues
(
self
,
t
):
# Return all of the objects of a given type located in
# this object and containing objects.
...
...
@@ -531,6 +537,7 @@ class ObjectManager(CopyContainer,
if
REQUEST
is
not
None
:
return
self
.
manage_main
(
self
,
REQUEST
,
update_menu
=
1
)
security
.
declareProtected
(
access_contents_information
,
'tpValues'
)
def
tpValues
(
self
):
# Return a list of subobjects, used by tree tag.
r
=
[]
...
...
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