source: products/quintagroup.plonegooglesitemaps/branches/migratioin_product/quintagroup/plonegooglesitemaps/profiles.zcml @ 3565

Last change on this file since 3565 was 2837, checked in by mylan, 14 years ago

#230: Fix typos in GS profile and import step

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