[Zope] ObjectManager and method doc strings
David Beech
dbeech@bigpond.net.au
Mon, 22 Jul 2002 08:30:59 +1000
Thanks Chris, I was hoping tho' to be able to traverse the
object tree by calling an objectIds type of method from outside
Zope. The idea is to navigate around the tree and use webdav
to edit source - an IDE kind of thing.
A script looks like the best way, a least security is preserved.
cheers
David
On Mon, 22 Jul 2002 00:42, you wrote:
> objectIds,, objectValues, etc used to be accessible through
> the web, but these methods were de-wedbified for security
> purposes. A Python Script should do the trick:
>
> return context.objectIds()
>
> > In order to do things like:
> >
> > http://192.168.1.190:10080/tssadmin/objectIds
> >
> > and see the object ids, OFS/ObjectManager.py needs doc
> > strings in the methods that we want to call.
> >
> > It seems that the Zope distribution code doesn't have these
> > doc strings for methods like objectIds, objectItems etc.
> >
> > Is this a security feature or is there another (preferred)
> > way to execute methods like objectIds?
> >