Skip to content
This repository has been archived by the owner on Sep 28, 2020. It is now read-only.

Commit

Permalink
updated to wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Pelletier committed Jun 12, 2000
1 parent 8cd490b commit e33de4a
Showing 1 changed file with 41 additions and 3 deletions.
44 changes: 41 additions & 3 deletions help/ObjectManagerItem.py
Expand Up @@ -46,6 +46,15 @@ def title_and_id(self):
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):
"""
Expand All @@ -60,7 +69,7 @@ def this(self):
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):
Expand All @@ -72,12 +81,41 @@ def absolute_url(self, relative=None):
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.
"""



0 comments on commit e33de4a

Please sign in to comment.