Re: [Zope] ZCatalog in python (getting closer)

2000-06-14 Thread ed colmar
I am getting closer to having a working catalog. Thanks everyone, all your hints have been really helpful. The catalog is automatically created when I add a new instance of my class to a folder My sub-classes now inherit: (CatalogAware, Persistent, Implicit, SimpleItem) It was the SimpleItem c

Re: [Zope] ZCatalog in python

2000-06-13 Thread R. David Murray
On Sun, 11 Jun 2000, Dieter Maurer wrote: > The Find machinery (and therefore, ZCatalog) uses the > method "objectItems" to locate the children of an object. > > If such a method does not exist or does not return the sequence > of children, the catalog will not find them. That shouldn't matter f

Re: [Zope] ZCatalog in python

2000-06-11 Thread Dieter Maurer
ed colmar writes: > I'm in a similar situation with Aaron, except my product is mostly python. > I emulated the cataloging in the PortalCatalog method, but left out the > permission check. When my product is added to a folder, the catalog gets > created, and has the indexes I set up. I