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

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

Fix error in tests.

File size: 1.4 KB
RevLine 
[797]1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:five="http://namespaces.zope.org/five"
[846]4    xmlns:i18n="http://namespaces.zope.org/i18n"
[956]5    xmlns:cmf="http://namespaces.zope.org/cmf"
6    xmlns:gs="http://namespaces.zope.org/genericsetup"
[797]7    i18n_domain="quintagroup.plonecaptchas">
8
[870]9    <include package=".browser" />
10
[846]11    <i18n:registerTranslations directory="locales" />
[849]12
[846]13    <five:registerPackage package="." initialize=".initialize" />
[797]14
[956]15    <!-- File System Directory Views registration -->
16    <cmf:registerDirectory name="captchas" />
17    <cmf:registerDirectory name="captchas_discussion" />
18    <cmf:registerDirectory name="captchas_join_form" />
19    <cmf:registerDirectory name="captchas_sendto_form" />
[963]20    <cmf:registerDirectory name="plone_captchas" recursive="true" />
[956]21
22    <gs:registerProfile
23        name="default"
[963]24        title="Plone Captchas"
[956]25        directory="profiles/default"
26        description="This product adds captcha support to Plone."
27        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
28        provides="Products.GenericSetup.interfaces.EXTENSION"
29        />
30
[963]31    <gs:registerProfile
32        name="uninstall"
33        title="Uninstall Plone Captchas"
34        directory="profiles/uninstall"
35        description="Uninstall Plone Captchas product."
36        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
37        provides="Products.GenericSetup.interfaces.EXTENSION"
38        />
39
[797]40</configure>
Note: See TracBrowser for help on using the repository browser.