~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/verification/configure.zcml

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-20 17:18:38 UTC
  • mfrom: (14557.1.20 login-token-apocalyse)
  • Revision ID: launchpad@pqm.canonical.com-20111220171838-t5bzp4y0hjmxxqze
[rs=sinzui][no-qa] migrate logintoken, launchpad statistics,
        and feeds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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:xmlrpc="http://namespaces.zope.org/xmlrpc"
 
6
    i18n_domain="launchpad">
 
7
    <include
 
8
        package=".browser"/>
 
9
    <facet
 
10
        facet="overview">
 
11
 
 
12
        <!-- LoginToken -->
 
13
 
 
14
        <class
 
15
            class="lp.services.verification.model.logintoken.LoginToken">
 
16
            <require
 
17
                permission="zope.Public"
 
18
                interface="lp.services.verification.interfaces.logintoken.ILoginToken"/>
 
19
        </class>
 
20
 
 
21
        <!-- LoginTokenSet -->
 
22
 
 
23
        <class
 
24
            class="lp.services.verification.model.logintoken.LoginTokenSet">
 
25
            <allow
 
26
                interface="lp.services.verification.interfaces.logintoken.ILoginTokenSet"/>
 
27
        </class>
 
28
        <securedutility
 
29
            class="lp.services.verification.model.logintoken.LoginTokenSet"
 
30
            provides="lp.services.verification.interfaces.logintoken.ILoginTokenSet">
 
31
            <allow
 
32
                interface="lp.services.verification.interfaces.logintoken.ILoginTokenSet"/>
 
33
        </securedutility>
 
34
    </facet>
 
35
</configure>