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 |
||
1627
by Canonical.com Patch Queue Manager
Initial, very very hacky, zcml-for-scripts support. Also, got rid of vestigal principals.zcml. |
5 |
<configure xmlns="http://namespaces.zope.org/zope"> |
6 |
<include file="zopeapp.zcml" /> |
|
7 |
<include package="canonical" /> |
|
8 |
||
9 |
<include files="package-includes/*-meta.zcml" /> |
|
10 |
<includeOverrides file="override-meta.zcml" /> |
|
11 |
||
2125
by Canonical.com Patch Queue Manager
[r=bjornt] Cronscript refactorings |
12 |
<!-- Add a hook to configure the email stuff using ZCML stored outside |
13 |
of the launchpad tree --> |
|
14 |
<include files="../+*.zcml" /> |
|
15 |
||
1627
by Canonical.com Patch Queue Manager
Initial, very very hacky, zcml-for-scripts support. Also, got rid of vestigal principals.zcml. |
16 |
<!-- package-includes/*-configure.zcml contains package configuration |
17 |
shared between a normal launchpad instance and the test suite. |
|
9686.1.2
by Tim Penhey
Add the error log configuration to the scripts configuration file. |
18 |
package-includes/*-configure-normal.zcml and |
1627
by Canonical.com Patch Queue Manager
Initial, very very hacky, zcml-for-scripts support. Also, got rid of vestigal principals.zcml. |
19 |
package-includes/*-configure-testing.zcml contain configuration
|
20 |
that needs to be different between normal and test modes.
|
|
21 |
-->
|
|
22 |
<include files="package-includes/*-configure.zcml" />
|
|
23 |
<include files="package-includes/*-configure-normal.zcml" />
|
|
24 |
||
1927
by Canonical.com Patch Queue Manager
[trivial] Misc trivial fixes that didn't merge yesterday |
25 |
<!--
|
26 |
Overrides are currently disabled. Currently, nothing we
|
|
27 |
need to override is required for scripts, and enabling it
|
|
28 |
could cause issues with the Zope mail delivery system. In
|
|
29 |
particular, scripts would fire up a QueueProcessorThread
|
|
30 |
handing the same mail queue as the Z3 instance or other
|
|
31 |
scripts which would be bad
|
|
32 |
-->
|
|
33 |
<!-- <includeOverrides file="override-configure-normal.zcml" /> -->
|
|
9686.1.2
by Tim Penhey
Add the error log configuration to the scripts configuration file. |
34 |
<!-- Make sure that the scripts have access to to the error
|
35 |
reporting utility.
|
|
36 |
-->
|
|
37 |
<includeOverrides file="override-includes/errorlog-configure.zcml" />
|
|
1627
by Canonical.com Patch Queue Manager
Initial, very very hacky, zcml-for-scripts support. Also, got rid of vestigal principals.zcml. |
38 |
</configure>
|