source: products/quintagroup.plonecaptchas/trunk/quintagroup/plonecaptchas/browser/configure.zcml @ 993

Last change on this file since 993 was 871, checked in by crchemist, 17 years ago

Fixed http://projects.quintagroup.com/products/ticket/77 ticket

File size: 598 bytes
Line 
1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:browser="http://namespaces.zope.org/browser"
4    i18n_domain="quintagroup.plonecaptchas">
5
6    <browser:view
7        name="captcha"
8        for="*"
9        permission="zope2.Public"
10        provides=".interfaces.ICaptchaView"
11        class=".view.Captcha"
12        />
13
14    <view
15        type="zope.publisher.interfaces.browser.IBrowserRequest"
16        for=".interfaces.ICaptcha"
17        provides="zope.app.form.interfaces.IInputWidget"
18        factory=".widget.CaptchaWidget"
19        permission="zope.Public"
20        />
21
22</configure>
Note: See TracBrowser for help on using the repository browser.