source: main/waeup.kofa/trunk/src/waeup/kofa/catalog.py @ 7906

Last change on this file since 7906 was 7819, checked in by Henrik Bettermann, 13 years ago

KOFA -> Kofa

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.1 KB
RevLine 
[7193]1## $Id: catalog.py 7819 2012-03-08 22:28:46Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
[5090]18"""Components to help cataloging and searching objects.
19"""
[3521]20import grok
[5091]21from grok import index
[3521]22from hurry.query import Eq
[5090]23from hurry.query.interfaces import IQuery
24from hurry.query.query import Query
25from zope.catalog.catalog import ResultSet
[5091]26from zope.component import getUtility
[5090]27from zope.intid.interfaces import IIntIds
28
[7811]29from waeup.kofa.app import University
30from waeup.kofa.interfaces import IQueryResultItem
[3521]31
[6447]32# not yet used
[7819]33class KofaQuery(Query):
[6207]34    """A hurry.query-like query that supports also ``apply``.
35    """
36    grok.implements(IQuery)
[4789]37
[6207]38    def apply(self, query):
39        """Get a catalog's BTree set of intids conforming to a query.
40        """
41        return query.apply()
[5090]42
[6207]43    def searchResults(self, query):
44        """Get a set of ZODB objects conforming to a query.
45        """
46        results = self.apply(query)
47        if results is not None:
48            uidutil = getUtility(IIntIds)
49            results = ResultSet(results, uidutil)
50        return results
[5090]51
[7819]52grok.global_utility(KofaQuery)
[5090]53
[6447]54# not yet used
[4789]55class QueryResultItem(object):
[6207]56    grok.implements(IQueryResultItem)
57    url = None
58    title = None
59    description = None
[6116]60
[6207]61    def __init__(self, context, view):
62        self.context = context
63        self.url = view.url(context)
64        self.title = context.title
65        self.description = ''
Note: See TracBrowser for help on using the repository browser.