source: products/quintagroup.plonegooglesitemaps/branches/1.1_fix/quintagroup/plonegooglesitemaps/configure.zcml

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

#135: Added quintagroup.canonicalpath as required package

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: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
11    <five:registerPackage package="." initialize=".initialize" />
12
13    <cmf:registerDirectory name="skins" directory="skins" recursive="True" />
14
15    <!-- Include the sub-packages that use their own configure.zcml files. -->
16    <include package=".browser" />
17    <include package=".content" />
18
19    <!-- Register the installation GenericSetup extension profile -->
20    <genericsetup:registerProfile
21      name="default"
22      title="Plone Google Sitemaps"
23      directory="profiles/default"
24      description=""
25      provides="Products.GenericSetup.interfaces.EXTENSION"
26      />
27
28    <!-- -*- extra stuff goes here -*- -->
29
30    <subscriber handler=".handlers.pingGoogle"/>
31
32</configure>
Note: See TracBrowser for help on using the repository browser.