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

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

Switch from skins to browser resources

File size: 1.3 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 required packages -->
11  <include package="plone.app.registry" />
12  <include package="collective.portlet.collectionmultiview" />
13
14
15  <!-- Include the sub-packages that use their own configure.zcml files. -->
16  <include package=".browser" />
17  <include package=".content" />
18
19  <!-- Register the installation GenericSetup extension profile -->
20  <genericsetup:registerProfile
21      name="default"
22      title="Bounty Program"
23      directory="profiles/default"
24      description="Bounty Program logo display mechanism for the plone.org"
25      provides="Products.GenericSetup.interfaces.EXTENSION"
26      />
27
28  <genericsetup:importStep
29      name="ploneorg_kudobounty_importvarious"
30      title="Bounty Import Various"
31      description="Import Various Steps"
32      handler="ploneorg.kudobounty.setuphandlers.importVarious">
33    <depends name="content"/>
34    <depends name="typeinfo" />
35    <depends name="workflow"/>
36  </genericsetup:importStep>
37
38  <!-- -*- extra stuff goes here -*- -->
39
40</configure>
Note: See TracBrowser for help on using the repository browser.