source: products/quintagroup.plonegooglesitemaps/tags/1.4.4/quintagroup/plonegooglesitemaps/profiles.zcml

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

#131: move genericsetup related configurations to profiles.zcml

File size: 2.4 KB
Line 
1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
4    i18n_domain="quintagroup.plonegooglesitemaps">
5
6    <!-- Register the installation GenericSetup extension profile -->
7    <genericsetup:registerProfile
8      name="default"
9      title="Plone Google Sitemaps"
10      directory="profiles/default"
11      description=""
12      provides="Products.GenericSetup.interfaces.EXTENSION"
13      />
14
15    <genericsetup:registerProfile
16      name="uninstall"
17      title="Uninstall Plone Google Sitemaps"
18      directory="profiles/uninstall"
19      description=""
20      provides="Products.GenericSetup.interfaces.EXTENSION"
21      />
22
23    <genericsetup:registerProfile
24      name="upgrade_1_0_to_1_1"
25      title="Upgrade Plone Google Sitemaps from 1.0 to 1.1"
26      directory="profiles/upgrade_1_0_to_1_1"
27      description=""
28      provides="Products.GenericSetup.interfaces.EXTENSION"
29      />
30
31    <genericsetup:registerProfile
32      name="upgrade_1_1_to_1_2"
33      title="Upgrade Plone Google Sitemaps from 1.1 to 1.2"
34      directory="profiles/upgrade_1_1_to_1_2"
35      description=""
36      provides="Products.GenericSetup.interfaces.EXTENSION"
37      />
38
39    <genericsetup:registerProfile
40      name="upgrade_1_2_to_1_3"
41      title="Upgrade Plone Google Sitemaps from 1.2 to 1.3"
42      directory="profiles/upgrade_1_2_to_1_3"
43      description=""
44      provides="Products.GenericSetup.interfaces.EXTENSION"
45      />
46
47    <genericsetup:upgradeStep
48      title="Upgrade Plone Google Sitemaps 1.0 to 1.1"
49      description="Upgrade quintagroup.plonegooglesitemaps 1.0 to 1.1"
50      source="*"
51      destination="1.1"
52      handler=".upgrades.upgrade_1_0_to_1_1"
53      sortkey="1"
54      profile="quintagroup.plonegooglesitemaps:default"
55      />
56
57    <genericsetup:upgradeStep
58      title="Upgrade Plone Google Sitemaps 1.1 to 1.2"
59      description="Upgrade quintagroup.plonegooglesitemaps 1.1 to 1.2"
60      source="*"
61      destination="1.2"
62      handler=".upgrades.upgrade_1_1_to_1_2"
63      sortkey="2"
64      profile="quintagroup.plonegooglesitemaps:default"
65      />
66
67    <genericsetup:upgradeStep
68      title="Upgrade Plone Google Sitemaps 1.2 to 1.3"
69      description="Upgrade quintagroup.plonegooglesitemaps 1.2 to 1.3"
70      source="*"
71      destination="1.3"
72      handler=".upgrades.upgrade_1_2_to_1_3"
73      sortkey="3"
74      profile="quintagroup.plonegooglesitemaps:default"
75      />
76
77</configure>
Note: See TracBrowser for help on using the repository browser.