[Zope-dev] help with external method

Erik Enge erik@thingamy.net
Fri, 29 Jun 2001 15:37:51 +0200 (CEST)


On Fri, 29 Jun 2001, Edgardo Zulian wrote:

> I'm just new with Zope, and I m trying to make an external method with
> python that return me the names of the "files" that are in an especific
> folder of the Zope i.e:"the folder:  Root Folder/function_repository"..

I'm not quite sure what you want to do, but you could try to add a a DTML
Method in the folder which contained this:

<dtml-in "objectValues()">
 <dtml-var id>
</dtml-in>

This would print all the "names" (I guess you ment id's) of the objects in
that folder.

HTH.