plone.app.discussion/plone/app/discussion/catalog.py
Timo Stollenwerk ca7752714b remove comment_text index.
svn path=/plone.app.discussion/trunk/; revision=27249
2009-05-31 18:14:42 +00:00

19 lines
454 B
Python

"""Catalog indexers, using plone.indexer. These will populate standard catalog
indexes with values based on the IComment interface.
Also provide event handlers to actually catalog the comments.
"""
from plone.indexer import indexer
from plone.app.discussion.interfaces import IComment
@indexer(IComment)
def comment_title(object):
return object.title
@indexer(IComment)
def comment_searchable_text(object):
return object.title, object.text