This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
themis.config/themis/config/configure.zcml

42 lines
1.1 KiB
XML

<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:five="http://namespaces.zope.org/five"
xmlns:i18n="http://namespaces.zope.org/i18n"
xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
xmlns:browser="http://namespaces.zope.org/browser"
i18n_domain="themis.config">
<five:registerPackage package="." initialize=".initialize" />
<genericsetup:registerProfile
name="default"
title="themis.config"
directory="profiles/default"
description="Installs the themis.config package"
provides="Products.GenericSetup.interfaces.EXTENSION"
/>
<genericsetup:upgradeStep
title="Update registry"
source="*"
destination="1000"
handler=".upgrade.update_registry"
sortkey="1"
profile="themis.config:default"
/>
<browser:resource
name="themis.config.png"
image="icon.png"
/>
<browser:page
name="themis-controlpanel"
for="Products.CMFPlone.interfaces.IPloneSiteRoot"
class=".controlpanel.ThemisControlpanel"
template="controlpanel.pt"
permission="cmf.ManagePortal"
/>
</configure>