source: main/waeup.sirp/trunk/src/waeup/sirp/catalog.py @ 7323

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

Replace the term 'WAeUP' by SIRP which is a WAeUP product.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.1 KB
Line 
1## $Id: catalog.py 7321 2011-12-10 06:15:17Z 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##
18"""Components to help cataloging and searching objects.
19"""
20import grok
21from grok import index
22from hurry.query import Eq
23from hurry.query.interfaces import IQuery
24from hurry.query.query import Query
25from zope.catalog.catalog import ResultSet
26from zope.component import getUtility
27from zope.intid.interfaces import IIntIds
28
29from waeup.sirp.app import University
30from waeup.sirp.interfaces import IQueryResultItem
31
32# not yet used
33class SIRPQuery(Query):
34    """A hurry.query-like query that supports also ``apply``.
35    """
36    grok.implements(IQuery)
37
38    def apply(self, query):
39        """Get a catalog's BTree set of intids conforming to a query.
40        """
41        return query.apply()
42
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
51
52grok.global_utility(SIRPQuery)
53
54# not yet used
55class QueryResultItem(object):
56    grok.implements(IQueryResultItem)
57    url = None
58    title = None
59    description = None
60
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.