[Zope] ZCatalog can't find anything
Eric Adam
octos@austin.rr.com
Tue, 14 May 2002 10:26:20 -0500
Ok. now that we're on the same page, why doesn't Find and Catalog find anything?
I get no errors returned and no found objects returned.
>If you have an object like this:
>
>class objToCatalog:
>
> meta_type = 'objToCatalog'
>
> title = 'This is my title'
> content = 'this is my content'
>
> def PrincipiaSearchSource(self):
> return self.title + ' ' + self.content
>
>Then you can use the "Find and Catalog" function to find all objects
>with meta_type 'objToCatalog'. And your vocabulary will contain the
>words: 'This', 'is', 'my', 'title', 'content'
>
>regards Max M
>