source: products/quintagroup.plonecaptchas/branches/split2packs/quintagroup/plonecaptchas/configure.zcml @ 3218

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

#175: Add join_form support in plone4

File size: 3.0 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_join_form_30" />
20    <cmf:registerDirectory name="captchas_join_form_31_32" />
21    <cmf:registerDirectory name="captchas_join_form_33" />
22    <cmf:registerDirectory name="captchas_join_form_40" />
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="join_form_plone_40"
62        title="Plone Captchas Join Form for plone-4.0"
63        directory="profiles/join_form_plone_40"
64        description="This product adds captcha support to Plone."
65        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
66        provides="Products.GenericSetup.interfaces.EXTENSION"
67        />
68
69    <gs:registerProfile
70        name="uninstall"
71        title="Uninstall Plone Captchas"
72        directory="profiles/uninstall"
73        description="Uninstall Plone Captchas product."
74        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
75        provides="Products.GenericSetup.interfaces.EXTENSION"
76        />
77
78</configure>
Note: See TracBrowser for help on using the repository browser.