11 Apr
2003
11 Apr
'03
3:20 p.m.
I'm having problems running this example script from the Zope Book, Advanced Scripting Chapter, p. 183 """ Returns all sub-objects that have a given status property. """ results=[] for object in context.objectValues(): if object.getProperty('status') == status: results.append(object) return results It seems to be starting an endless loop or something, the browser can sit for a half an hour and still not change. Jamie White Jamie@brobus.net