source: products/quintagroup.plonegooglesitemaps/trunk/quintagroup/plonegooglesitemaps/configure.zcml @ 2413

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

#131: Remove indexer registration, update newssitemap view, related tests

File size: 2.5 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    xmlns:cmf="http://namespaces.zope.org/cmf"
6    i18n_domain="quintagroup.plonegooglesitemaps">
7
8    <!-- Include dependent packages -->
9    <include package="quintagroup.canonicalpath" />
10    <include package="quintagroup.catalogupdater" />
11    <include package="archetypes.schemaextender" />
12
13    <five:registerPackage package="." initialize=".initialize" />
14
15    <cmf:registerDirectory name="skins" directory="skins" recursive="True" />
16
17    <!-- Include the sub-packages that use their own configure.zcml files. -->
18    <include package=".browser" />
19    <include package=".content" />
20
21    <!-- Register the installation GenericSetup extension profile -->
22    <genericsetup:registerProfile
23      name="default"
24      title="Plone Google Sitemaps"
25      directory="profiles/default"
26      description=""
27      provides="Products.GenericSetup.interfaces.EXTENSION"
28      />
29
30    <genericsetup:registerProfile
31      name="uninstall"
32      title="Uninstall Plone Google Sitemaps"
33      directory="profiles/uninstall"
34      description=""
35      provides="Products.GenericSetup.interfaces.EXTENSION"
36      />
37
38    <genericsetup:registerProfile
39      name="upgrade_1_0_to_1_1"
40      title="Upgrade Plone Google Sitemaps from 1.0 to 1.1"
41      directory="profiles/upgrade_1_0_to_1_1"
42      description=""
43      provides="Products.GenericSetup.interfaces.EXTENSION"
44      />
45
46    <genericsetup:registerProfile
47      name="upgrade_1_1_to_1_2"
48      title="Upgrade Plone Google Sitemaps from 1.1 to 1.2"
49      directory="profiles/upgrade_1_1_to_1_2"
50      description=""
51      provides="Products.GenericSetup.interfaces.EXTENSION"
52      />
53
54    <genericsetup:upgradeStep
55      title="Upgrade Plone Google Sitemaps 1.0 to 1.1"
56      description="Upgrade quintagroup.plonegooglesitemaps 1.0 to 1.1"
57      source="*"
58      destination="1.1"
59      handler=".upgrades.upgrade_1_0_to_1_1"
60      sortkey="1"
61      profile="quintagroup.plonegooglesitemaps:default"
62      />
63
64    <genericsetup:upgradeStep
65      title="Upgrade Plone Google Sitemaps 1.1 to 1.2"
66      description="Upgrade quintagroup.plonegooglesitemaps 1.1 to 1.2"
67      source="*"
68      destination="1.2"
69      handler=".upgrades.upgrade_1_1_to_1_2"
70      sortkey="2"
71      profile="quintagroup.plonegooglesitemaps:default"
72      />
73
74    <!-- -*- extra stuff goes here -*- -->
75
76    <subscriber handler=".handlers.pingGoogle"/>
77
78</configure>
Note: See TracBrowser for help on using the repository browser.