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
RevLine 
[1154]1<configure
2    xmlns="http://namespaces.zope.org/zope"
[2876]3    xmlns:five="http://namespaces.zope.org/five"
[1181]4    xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
[1154]5    i18n_domain="quintagroup.dropdownmenu">
6
[2876]7  <!-- This need for QI for possibility to find "uninstall"
8       method in then ./Extensions/install.py external method -->
9  <five:registerPackage package="." />
10
[1179]11  <!-- Include configuration for dependencies listed in setup.py -->
[3082]12  <include package="plone.app.registry" />
[1154]13
[1180]14  <!-- Include internal packages -->
[1181]15  <include package=".browser" />
[1180]16
[1179]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
[1180]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
[2876]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
[1154]45</configure>
Note: See TracBrowser for help on using the repository browser.