source: products/quintagroup.catalogupdater/trunk/quintagroup/catalogupdater/configure.zcml @ 1759

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

Added GS catalogupdater import handler and XMLAdapter for catalogupdate.xml files in the GS profile

File size: 954 bytes
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    i18n_domain="quintagroup.catalogupdater">
6
7    <include package=".exportimport" />
8
9    <utility factory=".utility.CatalogUpdaterUtility"
10             name="catalog_updater" />
11
12    <!-- Mark ZCatalog class with own interface for correct
13         working of GenericSetup import handler -->
14
15    <class class="Products.ZCatalog.ZCatalog.ZCatalog">
16      <implements interface=".interfaces.IUpdatableCatalog" />
17    </class>
18
19    <!-- register GenericSetup profile -->
20    <genericsetup:registerProfile
21      name="default"
22      title="quintagroup.catalogupdater"
23      directory="profiles/default"
24      description="Register Catalog Updater import step handler [quintagroup.catalogupdater]"
25      provides="Products.GenericSetup.interfaces.EXTENSION"
26      />
27   
28
29</configure>
Note: See TracBrowser for help on using the repository browser.