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.fields/themis/fields/configure.zcml

27 lines
769 B
XML

<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:zcml="http://namespaces.zope.org/zcml"
xmlns:i18n="http://namespaces.zope.org/i18n"
i18n_domain="themis.fields">
<!-- Configure plone.supermodel support if available -->
<include zcml:condition="installed plone.supermodel"
file="handlers.zcml"
/>
<i18n:registerTranslations directory="locales" />
<!-- Configure z3c.form widget if z3c.form is installed -->
<include zcml:condition="installed z3c.form"
file="widgets.zcml"
/>
<!-- Configure plone.schemaeditor field factory if installed -->
<include zcml:condition="installed plone.schemaeditor"
file="editors.zcml"
/>
<include file="behaviors.zcml"/>
</configure>