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
This commit is contained in:
helmutm 2008-04-26 16:41:17 +00:00
parent 56a889540b
commit 357f471deb

View file

@ -192,7 +192,9 @@ Keyword Index Queries
>>> k1 = ('', 'k1') >>> k1 = ('', 'k1')
>>> displayQuery(AnyOf(k1, 'plone')) >>> displayQuery(AnyOf(k1, 'plone'))
[5] [5]
>>> displayQuery(AllOf(k1, ['plone', 'zope', 'zms'])) >>> displayQuery(AllOf(k1, ['plone', 'zop']))
[] []
>>> displayQuery(AnyOf(k1, ['plone', 'zop']))
[5]
>>> displayQuery(AllOf(k1, ['plone', 'zope'])) >>> displayQuery(AllOf(k1, ['plone', 'zope']))
[5] [5]