source: products/quintagroup.plonecaptchas/tags/3.0/quintagroup/plonecaptchas/configure.zcml @ 3659

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

#183: Removed the package localisation as needless for now

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