~launchpad-pqm/launchpad/devel

8687.15.30 by Karl Fogel
Add the license header block to all .zcml files.
1
<!-- Copyright 2009 Canonical Ltd.  This software is licensed under the
2
     GNU Affero General Public License version 3 (see the file LICENSE).
3
-->
4
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
5
<configure
6
    xmlns="http://namespaces.zope.org/zope"
7
    xmlns:i18n="http://namespaces.zope.org/i18n"
8
    i18n_domain="zope"
9
    >
10
11
  <!-- Meta configuration (new directives) -->
12
  <include package="zope.app" file="meta.zcml" />
7369.3.3 by Sidnei da Silva
- Load z3c.ptcompat and import page directive from it. Once you set PREFER_Z3C_PT on the environment, z3c.pt will be used, otherwise the standard zope.pagetemplate will be used.
13
  <includeOverrides package="z3c.ptcompat" file="meta.zcml" />
3258.4.1 by Steve Alexander
Disable trebuchet. Make XMLRPC work, with an (untested) self-check API.
14
  <include package="zope.app.publisher.xmlrpc" file="meta.zcml" />
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
15
16
  <!-- Note that we need to do this early, as later startup
17
       subscribers may break without fixups -->
18
6061.13.2 by Curtis Hovey
Include zope.component in zopeapi.zcml.
19
  <include package="zope.component" />
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
20
  <include package="zope.app.component" />
21
  <!-- We don't need generations, as they are zodb specific.
22
  <include package="zope.app.generations" file="subscriber.zcml" />
23
    -->
24
  <!-- Ordinary Application (non-view) configuration) -->
25
  <include package="zope.app.interface" />
26
  <include package="zope.app.security" />
6061.13.2 by Curtis Hovey
Include zope.component in zopeapi.zcml.
27
3973.1.76 by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines.
28
  <!--
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
29
  <include package="zope.app.observable" />
30
  <include package="zope.app.annotation" />
31
  <include package="zope.app.dependable" />
32
33
  <include package="zope.app" file="menus.zcml" />
34
  <include package="zope.app.location" />
3973.1.76 by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines.
35
  -->
36
  <!--
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
37
  <include package="zope.app.container" />
3973.1.76 by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines.
38
-->
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
39
  <include package="zope.app.publisher" />
2976.10.50 by Stuart Bishop
Factories for the publication machinery to lookup correct request type
40
41
  <include package="zope.app.publication" file="meta.zcml" />
3673.5.2 by Bjorn Tillenius
convert the xmlrpc server to WSGIHTTPServer.
42
  <!-- We don't need any of the default publications. -->
43
  <!-- include package="zope.app.publication" / -->
2976.10.50 by Stuart Bishop
Factories for the publication machinery to lookup correct request type
44
6061.2.20 by Curtis Hovey
Resolved merge conflicts. Added an XXX and condition to getTopLevelPublications.
45
  <!-- selected things from zope.traversing -->
3973.1.76 by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines.
46
<adapter
47
    for="*"
6061.2.20 by Curtis Hovey
Resolved merge conflicts. Added an XXX and condition to getTopLevelPublications.
48
    factory="zope.traversing.adapters.Traverser"
49
    provides="zope.traversing.interfaces.ITraverser" />
3973.1.76 by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines.
50
51
<adapter
52
    for="*"
6061.2.20 by Curtis Hovey
Resolved merge conflicts. Added an XXX and condition to getTopLevelPublications.
53
    factory="zope.traversing.adapters.DefaultTraversable"
54
    provides="zope.traversing.interfaces.ITraversable" />
3973.1.76 by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines.
55
<view
56
    name="view" type="*"
6061.2.20 by Curtis Hovey
Resolved merge conflicts. Added an XXX and condition to getTopLevelPublications.
57
    provides="zope.traversing.interfaces.ITraversable" for="*"
58
    factory="zope.traversing.namespace.view"
3973.1.76 by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines.
59
    />
60
61
<view
62
    name="resource" type="*"
6061.2.20 by Curtis Hovey
Resolved merge conflicts. Added an XXX and condition to getTopLevelPublications.
63
    provides="zope.traversing.interfaces.ITraversable" for="*"
64
    factory="zope.traversing.namespace.resource"
3973.1.76 by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines.
65
    />
6061.2.20 by Curtis Hovey
Resolved merge conflicts. Added an XXX and condition to getTopLevelPublications.
66
  <!-- end of selected things from zope.traversing -->
3973.1.76 by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines.
67
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
68
  <include package="zope.app.pagetemplate" />
2976.10.50 by Stuart Bishop
Factories for the publication machinery to lookup correct request type
69
  <include package="zope.app.zapi" />
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
70
71
  <!-- Views -->
72
  <include package="zope.app.http" />
73
74
  <!-- Translations -->
6912.5.20 by Curtis Hovey
Updated XXX comments that were missing their bug numbers.
75
  <!-- XXX Robert Collins 2004-11-23: it is not possible to include a
6912.5.19 by Curtis Hovey
Revised XXX comment metadata to remove anonmalies from the XXX report.
76
       'package' attribute in the registerTranslations directive.  This seems
77
       to be a shortcoming in the 'path' field design, where it can't be made
6916.1.1 by Curtis Hovey
Fixed comment formats to fidn missing persons, dates, and some bugs.
78
       relative to a package given in this directive.
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
79
  <i18n:registerTranslations package="zope.app" directory="translation_files" />
80
  -->
3973.1.92 by Steve Alexander
add registration of i18n adapters we use into zopeapp.zcml. move PlotKit_Packed.js to icing. pack FormatAndColor.js from MochiKit and move to icing. Change bugtarget-bugs.pt to use these.
81
  <!--
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
82
  <include package="zope.app.i18n" />
3973.1.92 by Steve Alexander
add registration of i18n adapters we use into zopeapp.zcml. move PlotKit_Packed.js to icing. pack FormatAndColor.js from MochiKit and move to icing. Change bugtarget-bugs.pt to use these.
83
  -->
84
85
  <!-- Setup charset negotiation -->
86
  <adapter factory="zope.publisher.http.HTTPCharsets"
87
      for="zope.publisher.interfaces.http.IHTTPRequest"
88
      provides="zope.i18n.interfaces.IUserPreferredCharsets"
89
      />
90
  <adapter factory="zope.app.publisher.browser.ModifiableBrowserLanguages"
91
      for="zope.publisher.interfaces.http.IHTTPRequest"
92
      provides="zope.i18n.interfaces.IModifiableUserPreferredLanguages"
93
      />
94
95
2976.10.50 by Stuart Bishop
Factories for the publication machinery to lookup correct request type
96
  <include package="zope.app.wsgi" />
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
97
3673.5.9 by Bjorn Tillenius
include default xmlrpc pre_marshallers
98
  <!-- Default XMLRPC pre-marshalling. -->
99
  <include package="zope.publisher" />
100
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
101
</configure>