1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
xmlns:i18n="http://namespaces.zope.org/i18n"
xmlns:xmlrpc="http://namespaces.zope.org/xmlrpc"
i18n_domain="launchpad">
<include
package=".browser"/>
<!-- LaunchpadStatistic -->
<class
class="lp.services.statistics.model.statistics.LaunchpadStatistic">
<allow
interface="lp.services.statistics.interfaces.statistic.ILaunchpadStatistic"/>
</class>
<!-- LaunchpadStatisticSet -->
<securedutility
class="lp.services.statistics.model.statistics.LaunchpadStatisticSet"
provides="lp.services.statistics.interfaces.statistic.ILaunchpadStatisticSet">
<allow
interface="lp.services.statistics.interfaces.statistic.ILaunchpadStatisticSet"/>
</securedutility>
</configure>
|