source: products/quintagroup.captcha.core/trunk/quintagroup/captcha/core/configure.zcml @ 1953

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

#172: Update installation profile

File size: 1.2 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.captcha.core">
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="captcha_core" recursive="true" />
18
19    <gs:registerProfile
20        name="default"
21        title="Plone Captchas"
22        directory="profiles/default"
23        description="This product adds captcha support to Plone."
24        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
25        provides="Products.GenericSetup.interfaces.EXTENSION"
26        />
27
28    <gs:registerProfile
29        name="uninstall"
30        title="Uninstall Plone Captchas"
31        directory="profiles/uninstall"
32        description="Uninstall Plone Captchas product."
33        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
34        provides="Products.GenericSetup.interfaces.EXTENSION"
35        />
36
37</configure>
Note: See TracBrowser for help on using the repository browser.