~launchpad-pqm/launchpad/devel

1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
1
<configure
2
    xmlns="http://namespaces.zope.org/zope"
3
    xmlns:i18n="http://namespaces.zope.org/i18n"
4
    i18n_domain="zope"
5
    >
6
7
  <!-- Meta configuration (new directives) -->
8
  <include package="zope.app" file="meta.zcml" />
9
10
  <!-- Note that we need to do this early, as later startup
11
       subscribers may break without fixups -->
12
13
  <include package="zope.app.component" />
14
  <!-- We don't need generations, as they are zodb specific.
15
  <include package="zope.app.generations" file="subscriber.zcml" />
16
    -->
17
  <!-- Ordinary Application (non-view) configuration) -->
18
  <include package="zope.app.interface" />
19
  <include package="zope.app.security" />
20
  <include package="zope.app.event" />
21
  <include package="zope.app.observable" />
22
  <include package="zope.app.annotation" />
23
  <include package="zope.app.dependable" />
24
25
  <!-- Not using app content, copy/paste, size
26
  <include package="zope.app.content" />
27
  <include package="zope.app.copypastemove" />
28
  <include package="zope.app.size" />
29
  -->
30
  <include package="zope.app" file="menus.zcml" />
31
  <include package="zope.app.location" />
32
  <include package="zope.app.container" />
33
34
  <include package="zope.app.publisher" />
35
  <include package="zope.app.traversing" />
36
  <include package="zope.app.pagetemplate" />
37
  <include package="zope.app.generations" />
38
39
  <!-- Views -->
40
  <include package="zope.app.http" />
41
42
  <!-- Translations -->
43
  <!-- XXX it is not possible to include a 'package' attribute in the
44
       registerTranslations directive.  This seems to be a shortcoming
45
       in the 'path' field design, where it can't be made relative to
46
       a package given in this directive.
47
  <i18n:registerTranslations package="zope.app" directory="translation_files" />
48
  -->
49
  <include package="zope.app.i18n" />
50
51
52
  <!-- Local Component Registration -->
53
  <include package="zope.app.registration" />
54
55
  <!-- Services -->
56
  <!-- <include package="zope.app.errorservice" /> -->
57
  <include package="zope.app.pluggableauth" />
58
  <include package="zope.app.site" />
59
  <include package="zope.app.adapter" />
60
  <include package="zope.app.utility" />
61
  <!-- not using principalannotation
62
  <include package="zope.app.principalannotation" />
63
    -->
64
  <!-- Utilities -->
65
66
  <!-- XXX removed as these aren't present in the beta release.
67
  <include package="zope.app.schema" />
68
  <include package="zope.app.uniqueid" />
69
    -->
70
71
  <!-- Misc. Service Manager objects -->
72
  <!-- We don't want service managers.
73
  <include package="zope.app.module" />
74
    -->
75
  <!-- Broken-object support -->
76
  <!-- We don't want broken object support; that's specific to the zodb.
77
  <include package="zope.app.broken" />
78
    -->
79
80
  <!-- Database boostrapping -->
81
  <!--  We don't want to use a normal zope3 zodb.
82
  <include package="zope.app.appsetup" />
83
    -->
84
85
86
87
  <!-- Additional packages -->
88
89
  <include package="zope.app.applicationcontrol" />
90
  <include package="zope.app.dublincore" />
91
92
  <!-- Content types -->
93
  <!--  Not using folders
94
  <include package="zope.app.folder" />
95
  -->
96
97
</configure>