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 |
||
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. |
5 |
<configure
|
6 |
xmlns="http://namespaces.zope.org/zope" |
|
7 |
xmlns:browser="http://namespaces.zope.org/browser" |
|
8 |
xmlns:i18n="http://namespaces.zope.org/i18n" |
|
9 |
xmlns:zope="http://namespaces.zope.org/zope" |
|
10 |
i18n_domain="launchpad"> |
|
11 |
||
11090.3.10
by Brad Crittenden
Move salesforce to lp.services |
12 |
<class class="lp.services.salesforce.proxy.SalesforceVoucherProxy"> |
13 |
<allow interface="lp.services.salesforce.interfaces.ISalesforceVoucherProxy" /> |
|
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 |
|
11090.3.10
by Brad Crittenden
Move salesforce to lp.services |
16 |
<class class="lp.services.salesforce.proxy.Voucher"> |
17 |
<allow attributes="id voucher_id project status term_months __str__" /> |
|
6061.16.1
by Curtis Hovey
Removed deprecation warning supression code. Updated ZCML, tests, and code to use |
18 |
</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. |
19 |
|
20 |
<securedutility
|
|
11090.3.10
by Brad Crittenden
Move salesforce to lp.services |
21 |
class="lp.services.salesforce.tests.proxy.TestSalesforceVoucherProxy" |
22 |
provides="lp.services.salesforce.interfaces.ISalesforceVoucherProxy"> |
|
23 |
<allow interface="lp.services.salesforce.interfaces.ISalesforceVoucherProxy" /> |
|
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. |
24 |
</securedutility>
|
25 |
||
26 |
</configure>
|