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
ff4b54a2
Commit
ff4b54a2
authored
Jun 12, 2000
by
Michel Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated to wiki
parent
3759ad60
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
3 deletions
+41
-3
lib/python/Products/OFSP/help/ObjectManagerItem.py
lib/python/Products/OFSP/help/ObjectManagerItem.py
+41
-3
No files found.
lib/python/Products/OFSP/help/ObjectManagerItem.py
View file @
ff4b54a2
...
...
@@ -46,6 +46,15 @@ class ObjectManagerItem:
Permission -- 'Allways accessable'
"""
def
manage_workspace
(
self
):
"""
This is the web method that is called when a user selects an
item in a object manager contents view or in the Zope
Management navigation view.
"""
def
this
(
self
):
"""
...
...
@@ -60,7 +69,7 @@ class ObjectManagerItem:
you are in a method of a non-item subobject of an item and you
need to get the item outside of the context of the subobject.
Permission --
XXX None XXX
Permission --
"""
def
absolute_url
(
self
,
relative
=
None
):
...
...
@@ -72,12 +81,41 @@ class ObjectManagerItem:
virtual hosts are being used, then the path returned is a
logical, rather than a physical path.
Permission --
XXX None XXX
Permission --
Allways available
"""
def
getPhysicalRoot
(
self
):
"""
Returns the top-level Zope Application object.
Permission --
XXX None XXX
Permission --
Python only
"""
def
getPhysicalPath
(
self
):
"""
Get the path of an object from the root, ignoring virtual
hosts.
Permission -- Python only
"""
def
unrestrictedTraverse
(
self
,
path
,
default
=
None
):
"""
Return the object obtained by traversing the given path from
the object on which the method was called. This method begins
with "unrestricted" because (almost) no security checks are
performed.
"""
def
restrictedTraverse
(
self
,
path
,
default
=
None
):
"""
Return the object obtained by traversing the given path from
the object on which the method was called, performing security
checks along the way.
"""
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