From a084ab4592720bd4c5ab2ff83ede2521d89a5cc1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Pin?= <benoit.pin@gmail.com> Date: Sat, 13 Nov 2010 11:20:12 +0100 Subject: [PATCH] =?utf8?q?Enregistrement=20du=20step=20=C2=AB=C2=A0plinn-v?= =?utf8?q?arious=C2=A0=C2=BB=20dans=20le=20nouveau=20style.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- configure.zcml | 3 ++- exportimport.zcml | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 exportimport.zcml diff --git a/configure.zcml b/configure.zcml index 4834bd0..6f7102f 100644 --- a/configure.zcml +++ b/configure.zcml @@ -2,10 +2,11 @@ xmlns="http://namespaces.zope.org/zope" xmlns:i18n="http://namespaces.zope.org/i18n"> <include file="content.zcml"/> + <include file="exportimport.zcml"/> <include file="profiles.zcml"/> <include file="directories.zcml"/> <include file="adapters.zcml"/> <include file="event.zcml"/> - + <i18n:registerTranslations directory="locales"/> </configure> diff --git a/exportimport.zcml b/exportimport.zcml new file mode 100644 index 0000000..9a3e8ea --- /dev/null +++ b/exportimport.zcml @@ -0,0 +1,17 @@ +<configure + xmlns="http://namespaces.zope.org/zope" + xmlns:genericsetup="http://namespaces.zope.org/genericsetup" + i18n_domain="cmf_default"> + + <genericsetup:importStep + name="various-plinn" + title="Various Plinn Settings" + description="Import various settings from Plinn products." + handler="Products.Plinn.setuphandlers.importVarious"> + <depends name="toolset"/> + <depends name="skins"/> + <depends name="typeinfo"/> + <depends name="workflow"/> + </genericsetup:importStep> + +</configure> -- 2.20.1