This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
themis.indexer/themis/indexer/configure.zcml

24 lines
888 B
XML

<configure xmlns="http://namespaces.zope.org/zope"
xmlns:grok="http://namespaces.zope.org/grok"
xmlns:i18n="http://namespaces.zope.org/i18n"
xmlns:plone="http://namespaces.plone.org/plone"
i18n_domain="themis.indexer">
<!-- Include configuration for dependencies listed in setup.py -->
<include package="z3c.autoinclude" file="meta.zcml" />
<includeDependencies package="." />
<!-- grok it -->
<include package="five.grok" />
<grok:grok package="." />
<!-- marker behavior for enabling indexer -->
<plone:behavior
title="Themis SearchableText indexer behavior"
description="Enables the dynamic SearchableText indexer for Themis fields"
provides="themis.indexer.behavior.IThemisFieldIndexer"
for="plone.dexterity.interfaces.IDexterityContent"
/>
</configure>