~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-12-18 15:13:07 UTC
  • mto: This revision was merged to the branch mainline in revision 14547.
  • Revision ID: curtis.hovey@canonical.com-20111218151307-sdm2gzobt5tplbe0
Moved badges to lp.app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
2
 
     GNU Affero General Public License version 3 (see the file LICENSE).
3
 
-->
4
 
 
5
 
<configure
6
 
  xmlns="http://namespaces.zope.org/zope"
7
 
  xmlns:browser="http://namespaces.zope.org/browser"
8
 
  xmlns:xmlrpc="http://namespaces.zope.org/xmlrpc"
9
 
  >
10
 
 
11
 
  <securedutility
12
 
    class="lp.services.authserver.xmlrpc.AuthServerApplication"
13
 
    provides="lp.services.authserver.interfaces.IAuthServerApplication">
14
 
    <allow
15
 
      interface="lp.services.authserver.interfaces.IAuthServerApplication"/>
16
 
  </securedutility>
17
 
 
18
 
  <xmlrpc:view
19
 
    for="lp.services.authserver.interfaces.IAuthServerApplication"
20
 
    interface="lp.services.authserver.interfaces.IAuthServer"
21
 
    class="lp.services.authserver.xmlrpc.AuthServerAPIView"
22
 
    permission="zope.Public"
23
 
    />
24
 
 
25
 
</configure>
26