1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<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">
<browser:url
for="lp.services.statistics.interfaces.statistic.ILaunchpadStatisticSet"
path_expression="string:+statistics"
parent_utility="canonical.launchpad.webapp.interfaces.ILaunchpadRoot"/>
<browser:defaultView
for="lp.services.statistics.interfaces.statistic.ILaunchpadStatisticSet"
name="+index"/>
<browser:pages
for="lp.services.statistics.interfaces.statistic.ILaunchpadStatisticSet"
facet="overview"
class="lp.services.statistics.browser.launchpadstatistic.LaunchpadStatisticSet"
permission="launchpad.Admin">
<browser:page
name="+index"
template="../templates/launchpadstatisticset-index.pt"/>
</browser:pages>
</configure>
|