[Zope] Catalog search problem
Dieter Maurer
dieter@handshake.de
Fri, 7 Sep 2001 00:04:01 +0200 (CEST)
paul dunbar writes:
> I have a problem when searching my catalog.It has an index called "Author" which holds the
> name of a person who wrote a document.when i search the catalog for say "paul dunbar",i will
> get documents from authors like "paul" or "paul test" as well as paul dunbar.what i want to do
> is limit the matches to "paul dunbar"....
Missing operators between search times are "replaced" by
the default operator ("or"; in Zope 2.4, you can define
"and" as default operator).
To get almost what you want, enclose "paul dunbar" in quotes.
This will make a phrase search, quite near to a search
for "paul dunbar"...
Dieter