Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
c3a67c7e
Commit
c3a67c7e
authored
Apr 26, 2001
by
Michel Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added comments from ChrisM, more on index grammar
parent
7e607a85
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
1 deletion
+26
-1
lib/python/Products/ZCatalog/help/ZCatalog.py
lib/python/Products/ZCatalog/help/ZCatalog.py
+26
-1
No files found.
lib/python/Products/ZCatalog/help/ZCatalog.py
View file @
c3a67c7e
...
@@ -225,7 +225,6 @@ class ZCatalog:
...
@@ -225,7 +225,6 @@ class ZCatalog:
results = ( searchResults(title='Elvis Exposed') +
results = ( searchResults(title='Elvis Exposed') +
searchResults(author='The Great Elvonso') )
searchResults(author='The Great Elvonso') )
This will return all objects that have the specified title OR
This will return all objects that have the specified title OR
the specified author.
the specified author.
...
@@ -238,6 +237,32 @@ class ZCatalog:
...
@@ -238,6 +237,32 @@ class ZCatalog:
sort_order -- You can specify 'reverse' or 'descending'.
sort_order -- You can specify 'reverse' or 'descending'.
Default behavior is to sort ascending.
Default behavior is to sort ascending.
There are some rules to consider when querying this method:
- 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.
"""
"""
def
__call__
(
REQUEST
=
None
,
**
kw
):
def
__call__
(
REQUEST
=
None
,
**
kw
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment