From 357f471deb25f928f1846689e064bd7aa57b46b6 Mon Sep 17 00:00:00 2001 From: helmutm Date: Sat, 26 Apr 2008 16:41:17 +0000 Subject: [PATCH] added catalog package with a simple variation of hurry.query and a keyword index git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2551 fd906abe-77d9-0310-91a1-e0d9ade77398 --- catalog/README.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/catalog/README.txt b/catalog/README.txt index 3b48988..e4a6b33 100644 --- a/catalog/README.txt +++ b/catalog/README.txt @@ -192,7 +192,9 @@ Keyword Index Queries >>> k1 = ('', 'k1') >>> displayQuery(AnyOf(k1, 'plone')) [5] - >>> displayQuery(AllOf(k1, ['plone', 'zope', 'zms'])) + >>> displayQuery(AllOf(k1, ['plone', 'zop'])) [] + >>> displayQuery(AnyOf(k1, ['plone', 'zop'])) + [5] >>> displayQuery(AllOf(k1, ['plone', 'zope'])) [5]