source: products/quintagroup.gauth/trunk/quintagroup/gauth/configure.zcml

Last change on this file was 2616, checked in by mylan, 14 years ago

Fix uninstallation tests

File size: 1.0 KB
Line 
1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:five="http://namespaces.zope.org/five"
4    xmlns:i18n="http://namespaces.zope.org/i18n"
5    xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
6    i18n_domain="quintagroup.gauth">
7
8
9  <!-- This need for QI for possibility to find "uninstall"
10       method in then ./Extensions/install.py external method -->
11  <five:registerPackage package="." />
12
13  <include package=".browser" />
14
15  <genericsetup:registerProfile
16      name="default"
17      title="quintagroup.gauth"
18      directory="profiles/default"
19      description="Installs the quintagroup.gauth package"
20      provides="Products.GenericSetup.interfaces.EXTENSION"
21      />
22
23  <genericsetup:registerProfile
24      name="uninstall"
25      title="Uninstall quintagroup.gauth"
26      directory="profiles/uninstall"
27      description="Uninstalls the quintagroup.gauth package"
28      provides="Products.GenericSetup.interfaces.EXTENSION"
29      />
30
31  <!-- -*- extra stuff goes here -*- -->
32 
33</configure>
Note: See TracBrowser for help on using the repository browser.