ZCatalog object
A ZCatalog contains arbitrary index like references to Zope
objects. ZCatalog's can index either Field
values of object,
Text
values, or KeyWord
values:
ZCatalogs have three types of indexes:
The ZCatalog can maintain a table of extra data about cataloged objects. This information can be used on search result pages to show information about a search result.
The meta-data table schema is used to build the schema for ZCatalog Result objects. The objects have the same attributes as the column of the meta-data table.
ZCatalog does not store references to the objects themselves, but rather to a unique identifier that defines how to get to the object. In Zope, this unique identifier is the object's relative path to the ZCatalog (since two Zope objects cannot have the same URL, this is an excellent unique qualifier in Zope).
Add a ZCatalog object.
vocab_id
is the name of a Vocabulary object this catalog should
use. A value of None will cause the Catalog to create its own
private vocabulary.
Returns a sequence of names that correspond to columns in the meta-data table.
Search the catalog, the same way as searchResults
.
Uncatalogs the object with the unique identifier uid
.
Return a cataloged object given a 'datarecordid_'
Returns a sequence of names that correspond to indexes.
Return the path to a cataloged object given a 'datarecordid_'
Returns a sequence of actual index objects.
Re-index and re-read meta-data for all objects in the Catalog.
If the clear
flag is set, empty the catalog and re-fill it,
otherwise try to write minimal changes.
Search the catalog. Search terms can be passed in the REQUEST or as keyword arguments.
Search queries consist of a mapping of index names to search
parameters. You can either pass a mapping to searchResults as
the variable REQUEST
or you can use index names and search
parameters as keyword arguments to the method, in other words:
searchResults(title='Elvis Exposed', author='The Great Elvonso')
is the same as:
searchResults({'title' : 'Elvis Exposed', 'author : 'The Great Elvonso'})
In these examples, title
and author
are indexes. This
query will return any objects that have the title Elvis
Exposed AND also are authored by The Great Elvonso. Terms
that are passed as keys and values in a searchResults() call
are implicitly ANDed together. To OR two search results, call
searchResults() twice and add concatenate the results like this:
results = ( searchResults(title='Elvis Exposed') + searchResults(author='The Great Elvonso') )
This will return all objects that have the specified title OR the specified author.
There are some special index names you can pass to change the behavior of the search query:
reverse
or descending
.
Default behavior is to sort ascending.an empty query mapping (or a bogus REQUEST) returns all items in the catalog.
results from a query involving only field/keyword
indexes, e.g. {'id':'foo'} and no sort_on
will be
returned unsorted.
results from a complex query involving a field/keyword
index and a text index,
e.g. {'id':foo
,'PrincipiaSearchSource':'bar'} and no
sort_on
will be returned unsorted.
results from a simple text index query
e.g.{'PrincipiaSearchSource':'foo'} will be returned
sorted in descending order by score
. A text index
cannot beused as a sort_on
parameter, and attempting
to do so will raise an error.
Depending on the type of index you are querying, you may be able to provide more advanced search parameters that can specify range searches or wildcards. These features are documented in The Zope Book.
returns the unique values for a given FieldIndex named name
.
Catalogs the object obj
with the unique identifier uid
.