[Zope] Zope 'source'

Michel Pelletier michel@digicool.com
Fri, 14 Jan 2000 17:35:42 -0500


> -----Original Message-----
> From: Darcy Clark [mailto:darcyc@engin.umich.edu]
> Sent: Friday, January 14, 2000 4:57 PM
> To: zope@zope.org
> Subject: [Zope] Zope 'source'
> 
> 
> I was curious as to how the manage_workspace and other manage_ methods
> work, so I am wondering how to view the source for these 
> methods ? Where
> are they 'stored' ?

Usualy they are written in python and stored in lib/python/.

There is no one file that contains all the method you're looking for.
All objects define their own methods.  For example, all of the methods
attributable to a folder are found in lib/python/OFS/Folder.py.

-Michel