14 May
2002
14 May
'02
3:26 p.m.
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