source: main/waeup.kofa/branches/uli-autoinclude-less/src/waeup/kofa/configure.zcml @ 8871

Last change on this file since 8871 was 8871, checked in by uli, 12 years ago

Get rid of includeDependencies. It seems to be a problem when using
waeup.kofa from third packages.

We now configure all packages needed 'manually' if not configured
already by grok.

  • Property svn:style set to native
File size: 1.5 KB
Line 
1<configure xmlns="http://namespaces.zope.org/zope"
2           xmlns:grok="http://namespaces.zope.org/grok"
3           xmlns:i18n="http://namespaces.zope.org/i18n">
4
5  <!-- This will load and configure most packages we need. -->
6  <include package="grok" />
7
8  <!-- Meta configurations. -->
9  <include package="zope.sendmail" file="meta.zcml" />
10  <include package="waeup.kofa" file="meta.zcml" />
11
12  <!-- Extra packages we have to configure -->
13  <include package="grokcore.message" />
14  <include package="hurry.zoperesource" />
15  <include package="megrok.layout" />
16  <include package="zc.sourcefactory" />
17  <include package="zope.app.authentication" />
18  <include package="zope.sendmail" />
19
20  <!-- Comment the following line if you don't want dolmen.beaker,
21       for instance on Windows if you were not able to compile it
22
23       We have to configure dolmen.beaker manually, because it is
24       not part of installation requirements and will therefore not
25       be found by the includeDependencies directive. -->
26  <include package="dolmen.beaker" file="configure.zcml" />
27
28  <include package="waeup.kofa" file="locales.zcml" />
29  <grok:grok package="waeup.kofa" />
30  <!-- The following configurations are large (or expected to become
31       large) and therefore 'outsourced' - the only ethical way to do
32       outsourcing ;-)
33  -->
34  <includeOverrides package="waeup.kofa.widgets" file="overrides.zcml" />
35  <includeOverrides package="waeup.kofa.utils" file="overrides.zcml" />
36
37</configure>
Note: See TracBrowser for help on using the repository browser.