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.
plone.formwidget.captcha/plone/formwidget/captcha/browser/configure.zcml

20 lines
482 B
XML

<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
i18n_domain="collective.captcha">
<browser:view
name="captcha"
for="*"
permission="zope.Public"
provides=".interfaces.ICaptchaView"
allowed_attributes="image audio"
class=".captcha.Captcha">
<browser:page name="image" attribute="image" />
<browser:page name="audio" attribute="audio" />
</browser:view>
</configure>