source: products/ploneorg.kudobounty/trunk/ploneorg/kudobounty/configure.zcml @ 3129

Last change on this file since 3129 was 3129, checked in by mylan, 13 years ago

Initial import of the 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:genericsetup="http://namespaces.zope.org/genericsetup"
5    xmlns:i18n="http://namespaces.zope.org/i18n"
6    i18n_domain="ploneorg.kudobounty">
7   
8  <five:registerPackage package="." initialize=".initialize" />
9
10  <!-- Include the sub-packages that use their own configure.zcml files. -->
11  <include package=".browser" />
12  <include package=".content" />
13 
14  <!-- Register the installation GenericSetup extension profile -->
15  <genericsetup:registerProfile
16      name="default"
17      title="Bounty Program"
18      directory="profiles/default"
19      description="Bounty Program logo display mechanism for the plone.org"
20      provides="Products.GenericSetup.interfaces.EXTENSION"
21      />
22
23  <genericsetup:importStep
24      name="ploneorg_kudobounty_importvarious"
25      title="Bounty Import Various"
26      description="Import Various Steps"
27      handler="ploneorg.kudobounty.setuphandlers.importVarious">
28    <depends name="content"/>
29    <depends name="typeinfo" />
30    <depends name="workflow"/>
31  </genericsetup:importStep>
32
33  <!-- -*- extra stuff goes here -*- -->
34
35</configure>
Note: See TracBrowser for help on using the repository browser.