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

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

#172: Remove browser package with zope.formlib related Field and Widget - this part moved into quintagroup.formlib.captcha package

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    <i18n:registerTranslations directory="locales" />
10
11    <five:registerPackage package="." initialize=".initialize" />
12
13    <!-- File System Directory Views registration -->
14    <cmf:registerDirectory name="captchas" />
15    <cmf:registerDirectory name="captcha_core" recursive="true" />
16
17    <gs:registerProfile
18        name="default"
19        title="Quintagroup Captcha Core"
20        directory="profiles/default"
21        description="This product adds captcha support to Plone."
22        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
23        provides="Products.GenericSetup.interfaces.EXTENSION"
24        />
25
26    <gs:registerProfile
27        name="uninstall"
28        title="Uninstall Quintagroup Captcha Core"
29        directory="profiles/uninstall"
30        description="Uninstall Quintagroup Captcha Core product."
31        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
32        provides="Products.GenericSetup.interfaces.EXTENSION"
33        />
34
35</configure>
Note: See TracBrowser for help on using the repository browser.