source: products/quintagroup.quills.extras/trunk/quintagroup/quills/extras/configure.zcml @ 1579

Last change on this file since 1579 was 1314, checked in by mylan, 15 years ago

Add comments.gif image and register skins directory

File size: 1.4 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  <adapter
14      zcml:condition="installed quintagroup.canonicalpath"
15      for="quills.core.interfaces.IPossibleWeblogEntry"
16      provides="quintagroup.canonicalpath.interfaces.ICanonicalPath"
17      factory=".adapters.quillsCanonicalPathAdapter"
18      />
19
20  <adapter
21      zcml:condition="installed quintagroup.canonicalpath"
22      for="quills.core.interfaces.IWeblogEntry"
23      provides="quintagroup.canonicalpath.interfaces.ICanonicalPath"
24      factory=".adapters.quillsCanonicalPathAdapter"
25      />
26
27  <!-- profiles -->
28  <genericsetup:registerProfile
29      name="default"
30      title="quintagroup.quills.extras"
31      directory="profiles/default"
32      description="Extension profile which extends quills paroduct."
33      provides="Products.GenericSetup.interfaces.EXTENSION"
34      for="Products.CMFPlone.interfaces.IPloneSiteRoot"
35      />
36
37  <!-- register skins directory view -->
38  <cmf:registerDirectory
39       name=""
40       directory="skins"
41       recursive="True"
42       />
43
44</configure>
Note: See TracBrowser for help on using the repository browser.