~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to zopeapp.zcml

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2004-06-23 09:15:21 UTC
  • mfrom: (unknown (missing))
  • Revision ID: Arch-1:rocketfuel@canonical.com%soyuz--devel--0--patch-5
merge latest changes
Patches applied:

 * robert.collins@canonical.com/soyuz--devel--0--patch-3
   add importd and buildbot module links

 * robert.collins@canonical.com/soyuz--devel--0--patch-4
   catch up with upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
  <!-- not using placeful error service
57
 
  <include package="zope.app.errorservice" />
58
 
    -->
59
 
  <include package="zope.app.pluggableauth" />
60
 
  <include package="zope.app.site" />
61
 
  <include package="zope.app.adapter" />
62
 
  <include package="zope.app.utility" />
63
 
  <!-- not using principalannotation
64
 
  <include package="zope.app.principalannotation" />
65
 
    -->
66
 
  <!-- Utilities -->
67
 
 
68
 
  <!-- XXX removed as these aren't present in the beta release.
69
 
  <include package="zope.app.schema" />
70
 
  <include package="zope.app.uniqueid" />
71
 
    -->
72
 
 
73
 
  <!-- Misc. Service Manager objects -->
74
 
  <!-- We don't want service managers.
75
 
  <include package="zope.app.module" />
76
 
    -->
77
 
  <!-- Broken-object support -->
78
 
  <!-- We don't want broken object support; that's specific to the zodb.
79
 
  <include package="zope.app.broken" />
80
 
    -->
81
 
 
82
 
  <!-- Database boostrapping -->
83
 
  <!--  We don't want to use a normal zope3 zodb.
84
 
  <include package="zope.app.appsetup" />
85
 
    -->
86
 
 
87
 
  <!-- Skins -->
88
 
 
89
 
  <include package="zope.app.basicskin" />
90
 
  <include package="zope.app.rotterdam" />
91
 
  <defaultSkin name="Rotterdam" />
92
 
 
93
 
 
94
 
  <!-- Additional packages -->
95
 
 
96
 
  <include package="zope.app.applicationcontrol" />
97
 
  <include package="zope.app.dublincore" />
98
 
  <include package="zope.app.introspector" />
99
 
 
100
 
 
101
 
  <!-- Content types -->
102
 
  <!--  Not using folders
103
 
  <include package="zope.app.folder" />
104
 
  -->
105
 
  <!-- Browser Configurations -->
106
 
  <include file="zopeappbrowser.zcml" />
107
 
 
108
 
</configure>
109
 
<!-- arch-tag: ae87fdb2-412e-42ab-9fe7-6394c74710da -->