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
Line 
1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:five="http://namespaces.zope.org/five"
4    xmlns:i18n="http://namespaces.zope.org/i18n"
5    xmlns:cmf="http://namespaces.zope.org/cmf"
6    xmlns:gs="http://namespaces.zope.org/genericsetup"
7    i18n_domain="quintagroup.plonecaptchas">
8
9    <include package=".browser" />
10
11    <i18n:registerTranslations directory="locales" />
12
13    <five:registerPackage package="." initialize=".initialize" />
14
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" />
20    <cmf:registerDirectory name="plone_captchas" recursive="true" />
21
22    <gs:registerProfile
23        name="default"
24        title="Plone Captchas"
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
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
40</configure>
Note: See TracBrowser for help on using the repository browser.