~launchpad-pqm/launchpad/devel

6201.3.8 by Brad Crittenden
Moved salesforce proxy wrapper to utilities and provide zcml to hook it up. Added an ISalesforceVoucherProxy interface. No longer get the wrapper directly in the test but now use getUtility. Added override zcml for using a test class.
1
<configure
2
    xmlns="http://namespaces.zope.org/zope"
3
    xmlns:browser="http://namespaces.zope.org/browser"
4
    xmlns:i18n="http://namespaces.zope.org/i18n"
5
    xmlns:zope="http://namespaces.zope.org/zope"
6
    i18n_domain="launchpad">
7
6061.16.1 by Curtis Hovey
Removed deprecation warning supression code. Updated ZCML, tests, and code to use
8
    <class class="canonical.launchpad.utilities.SalesforceVoucherProxy">
6201.3.8 by Brad Crittenden
Moved salesforce proxy wrapper to utilities and provide zcml to hook it up. Added an ISalesforceVoucherProxy interface. No longer get the wrapper directly in the test but now use getUtility. Added override zcml for using a test class.
9
        <allow interface="canonical.launchpad.interfaces.ISalesforceVoucherProxy" />
6061.16.1 by Curtis Hovey
Removed deprecation warning supression code. Updated ZCML, tests, and code to use
10
    </class>
6201.3.8 by Brad Crittenden
Moved salesforce proxy wrapper to utilities and provide zcml to hook it up. Added an ISalesforceVoucherProxy interface. No longer get the wrapper directly in the test but now use getUtility. Added override zcml for using a test class.
11
6061.16.1 by Curtis Hovey
Removed deprecation warning supression code. Updated ZCML, tests, and code to use
12
    <class class="canonical.launchpad.utilities.Voucher">
6201.3.8 by Brad Crittenden
Moved salesforce proxy wrapper to utilities and provide zcml to hook it up. Added an ISalesforceVoucherProxy interface. No longer get the wrapper directly in the test but now use getUtility. Added override zcml for using a test class.
13
        <allow attributes="id project status term __str__" />
6061.16.1 by Curtis Hovey
Removed deprecation warning supression code. Updated ZCML, tests, and code to use
14
    </class>
6201.3.8 by Brad Crittenden
Moved salesforce proxy wrapper to utilities and provide zcml to hook it up. Added an ISalesforceVoucherProxy interface. No longer get the wrapper directly in the test but now use getUtility. Added override zcml for using a test class.
15
16
   <securedutility
17
        class="canonical.launchpad.ftests.salesforce.TestSalesforceVoucherProxy"
18
        provides="canonical.launchpad.interfaces.ISalesforceVoucherProxy">
19
        <allow interface="canonical.launchpad.interfaces.ISalesforceVoucherProxy" />
20
    </securedutility>
21
22
</configure>