Doing something to all objects of a given Meta Type
Created by .
Last modified on 2003/10/03.
Say you want to do something to all objects of a given metatype, like update
them for example, you can do this in a Python Script (I used an External
Method, but they should be the same):
stuff = context.ZopeFind(context,obj_metatypes=['Squishdot Site'])
Stuff is now a list of tuples. Each tuple is of the form
(object_id,actual_object)
|