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

Last change on this file since 2044 was 2044, checked in by mylan, 14 years ago

#182: Added captcha protection of contact-info form

File size: 2.6 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 dependent packages -->
10    <include package="quintagroup.captcha.core" />
11
12    <i18n:registerTranslations directory="locales" />
13
14    <five:registerPackage package="." initialize=".initialize" />
15
16    <!-- File System Directory Views registration -->
17    <cmf:registerDirectory name="captchas_discussion" />
18    <cmf:registerDirectory name="captchas_sendto_form" />
19    <cmf:registerDirectory name="captchas_contact_info" />
20    <cmf:registerDirectory name="captchas_join_form_30" />
21    <cmf:registerDirectory name="captchas_join_form_31_32" />
22    <cmf:registerDirectory name="captchas_join_form_33" />
23
24    <gs:registerProfile
25        name="default"
26        title="Plone Captchas"
27        directory="profiles/default"
28        description="This product adds captcha support to Plone."
29        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
30        provides="Products.GenericSetup.interfaces.EXTENSION"
31        />
32
33    <gs:registerProfile
34        name="join_form_plone_30"
35        title="Plone Captchas Join Form for plone-3.0"
36        directory="profiles/join_form_plone_30"
37        description="This product adds captcha support to Plone."
38        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
39        provides="Products.GenericSetup.interfaces.EXTENSION"
40        />
41
42    <gs:registerProfile
43        name="join_form_plone_31_32"
44        title="Plone Captchas Join Form for plone-3.1 - plone-3.2"
45        directory="profiles/join_form_plone_31_32"
46        description="This product adds captcha support to Plone."
47        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
48        provides="Products.GenericSetup.interfaces.EXTENSION"
49        />
50
51    <gs:registerProfile
52        name="join_form_plone_33"
53        title="Plone Captchas Join Form for plone-3.3"
54        directory="profiles/join_form_plone_33"
55        description="This product adds captcha support to Plone."
56        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
57        provides="Products.GenericSetup.interfaces.EXTENSION"
58        />
59
60    <gs:registerProfile
61        name="uninstall"
62        title="Uninstall Plone Captchas"
63        directory="profiles/uninstall"
64        description="Uninstall Plone Captchas product."
65        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
66        provides="Products.GenericSetup.interfaces.EXTENSION"
67        />
68
69</configure>
Note: See TracBrowser for help on using the repository browser.