~launchpad-pqm/launchpad/devel

1627 by Canonical.com Patch Queue Manager
Initial, very very hacky, zcml-for-scripts support. Also, got rid of vestigal principals.zcml.
1
<configure xmlns="http://namespaces.zope.org/zope">
2
    <include file="zopeapp.zcml" />
3
    <include package="canonical" />
4
5
    <include files="package-includes/*-meta.zcml" />
6
    <includeOverrides file="override-meta.zcml" />
7
8
    <!-- package-includes/*-configure.zcml contains package configuration
9
        shared between a normal launchpad instance and the test suite.
10
        package-includes/*-configure-normal.zcml and 
11
        package-includes/*-configure-testing.zcml contain configuration
12
        that needs to be different between normal and test modes.
13
    -->
14
    <include files="package-includes/*-configure.zcml" />
15
    <include files="package-includes/*-configure-normal.zcml" />
16
1927 by Canonical.com Patch Queue Manager
[trivial] Misc trivial fixes that didn't merge yesterday
17
    <!--
18
        Overrides are currently disabled. Currently, nothing we
19
        need to override is required for scripts, and enabling it
20
        could cause issues with the Zope mail delivery system. In
21
        particular, scripts would fire up a QueueProcessorThread
22
        handing the same mail queue as the Z3 instance or other
23
        scripts which would be bad
24
    -->
25
    <!-- <includeOverrides file="override-configure-normal.zcml" /> -->
1627 by Canonical.com Patch Queue Manager
Initial, very very hacky, zcml-for-scripts support. Also, got rid of vestigal principals.zcml.
26
</configure>