source: main/waeup.kofa/trunk/src/waeup/kofa/configure.zcml @ 9078

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

Merge changes from uli-autoinclude-less branch back into trunk.

  • 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="grokui.admin" />
15  <include package="hurry.zoperesource" />
16  <include package="megrok.layout" />
17  <include package="zc.sourcefactory" />
18  <include package="zope.app.authentication" />
19  <include package="zope.sendmail" />
20
21  <!-- Comment the following line if you don't want dolmen.beaker,
22       for instance on Windows if you were not able to compile it
23
24       We have to configure dolmen.beaker manually, because it is
25       not part of installation requirements and will therefore not
26       be found by the includeDependencies directive. -->
27  <include package="dolmen.beaker" file="configure.zcml" />
28
29  <include package="waeup.kofa" file="locales.zcml" />
30  <grok:grok package="waeup.kofa" />
31  <!-- The following configurations are large (or expected to become
32       large) and therefore 'outsourced' - the only ethical way to do
33       outsourcing ;-)
34  -->
35  <includeOverrides package="waeup.kofa.widgets" file="overrides.zcml" />
36  <includeOverrides package="waeup.kofa.utils" file="overrides.zcml" />
37
38</configure>
Note: See TracBrowser for help on using the repository browser.