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