source: products/quintagroup.quills.extras/tags/1.3.10/quintagroup/quills/extras/configure.zcml

Last change on this file was 897, checked in by mylan, 17 years ago

Fix incorrect notification bug.

File size: 1.3 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    xmlns:zcml="http://namespaces.zope.org/zcml"
7    i18n_domain="quintagroup.quills.extras">
8
9  <include package=".browser" />
10
11  <include package=".portlets" />
12
13  <cmf:registerDirectory name="quills_extras"/>
14
15  <adapter
16      zcml:condition="installed quintagroup.canonicalpath"
17      for="quills.core.interfaces.IPossibleWeblogEntry"
18      provides="quintagroup.canonicalpath.interfaces.ICanonicalPath"
19      factory=".adapters.quillsCanonicalPathAdapter"
20      />
21
22  <adapter
23      zcml:condition="installed quintagroup.canonicalpath"
24      for="quills.core.interfaces.IWeblogEntry"
25      provides="quintagroup.canonicalpath.interfaces.ICanonicalPath"
26      factory=".adapters.quillsCanonicalPathAdapter"
27      />
28
29  <!-- profiles -->
30  <genericsetup:registerProfile
31      name="default"
32      title="quintagroup.quills.extras"
33      directory="profiles/default"
34      description="Extension profile which extends quills paroduct."
35      provides="Products.GenericSetup.interfaces.EXTENSION"
36      for="Products.CMFPlone.interfaces.IPloneSiteRoot"
37      />
38
39</configure>
Note: See TracBrowser for help on using the repository browser.