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

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

Remove all plone-form related skin-layers, with all dependent registrations and cleanups

File size: 1.2 KB
RevLine 
[797]1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:five="http://namespaces.zope.org/five"
[846]4    xmlns:i18n="http://namespaces.zope.org/i18n"
[956]5    xmlns:cmf="http://namespaces.zope.org/cmf"
6    xmlns:gs="http://namespaces.zope.org/genericsetup"
[797]7    i18n_domain="quintagroup.plonecaptchas">
8
[870]9    <include package=".browser" />
10
[846]11    <i18n:registerTranslations directory="locales" />
[849]12
[846]13    <five:registerPackage package="." initialize=".initialize" />
[797]14
[956]15    <!-- File System Directory Views registration -->
16    <cmf:registerDirectory name="captchas" />
[1945]17    <cmf:registerDirectory name="captcha_core" recursive="true" />
[956]18
19    <gs:registerProfile
20        name="default"
[963]21        title="Plone Captchas"
[956]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
[963]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
[797]37</configure>
Note: See TracBrowser for help on using the repository browser.