source: products/quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/configure.zcml @ 3220

Last change on this file since 3220 was 3082, checked in by kroman0, 13 years ago

Changed z3c.autoinclude includeDependencies to simple include to work in plone 3.2

File size: 1.6 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    i18n_domain="quintagroup.dropdownmenu">
6
7  <!-- This need for QI for possibility to find "uninstall"
8       method in then ./Extensions/install.py external method -->
9  <five:registerPackage package="." />
10
11  <!-- Include configuration for dependencies listed in setup.py -->
12  <include package="plone.app.registry" />
13
14  <!-- Include internal packages -->
15  <include package=".browser" />
16
17  <!-- Register the installation GenericSetup extension profile -->
18  <genericsetup:registerProfile
19      name="default"
20      title="Plone DropDown Menu"
21      description="DropDown Menu Product for Plone"
22      directory="profiles/default"
23      provides="Products.GenericSetup.interfaces.EXTENSION"
24      for="Products.CMFPlone.interfaces.IPloneSiteRoot"
25      />
26
27  <genericsetup:registerProfile
28      name="uninstall"
29      title="Uninstall Plone DropDown Menu"
30      description="Uninstall profile for DropDown Menu Product"
31      directory="profiles/uninstall"
32      provides="Products.GenericSetup.interfaces.EXTENSION"
33      for="Products.CMFPlone.interfaces.IPloneSiteRoot"
34      />
35
36  <genericsetup:importStep
37      name="quintagroup.dropdownmenu.uninstall"
38      title="Plone DropDown Menu Product: miscellaneous uninstallation steps"
39      description="Various uninstallation steps that are not handled by GS import/export handlers."
40      handler="quintagroup.dropdownmenu.setuphandlers.uninstall">
41    <!-- <depends name="skins"/> -->
42  </genericsetup:importStep>
43
44
45</configure>
Note: See TracBrowser for help on using the repository browser.