~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        <allow
29
29
            interface="lp.services.webservice.interfaces.IWebServiceApplication" />
30
30
        <allow interface='lazr.restful.interfaces.IServiceRootResource' />
31
 
        <allow interface='canonical.launchpad.webapp.interfaces.ICanonicalUrlData' />
 
31
        <allow interface='lp.services.webapp.interfaces.ICanonicalUrlData' />
32
32
    </securedutility>
33
33
 
34
34
    <!-- Registration for the class that manages an entry's byte
64
64
   <adapter
65
65
       for="zope.schema.interfaces.IChoice
66
66
            zope.publisher.interfaces.http.IHTTPRequest
67
 
            canonical.launchpad.webapp.vocabulary.SQLObjectVocabularyBase"
 
67
            lp.services.webapp.vocabulary.SQLObjectVocabularyBase"
68
68
       provides="lazr.restful.interfaces.IFieldMarshaller"
69
 
       factory="canonical.launchpad.webapp.marshallers.choiceMarshallerError"
 
69
       factory="lp.services.webapp.marshallers.choiceMarshallerError"
70
70
       />
71
71
   <adapter
72
72
       for="lazr.restful.interfaces.IReferenceChoice
73
73
            zope.publisher.interfaces.http.IHTTPRequest
74
 
            canonical.launchpad.webapp.vocabulary.SQLObjectVocabularyBase"
 
74
            lp.services.webapp.vocabulary.SQLObjectVocabularyBase"
75
75
       provides="lazr.restful.interfaces.IFieldMarshaller"
76
76
       factory="lazr.restful.marshallers.ObjectLookupFieldMarshaller"
77
77
       />
78
78
 
79
79
   <!-- The API documentation -->
80
80
    <browser:page
81
 
      for="canonical.launchpad.webapp.interfaces.ILaunchpadApplication"
 
81
      for="lp.services.webapp.interfaces.ILaunchpadApplication"
82
82
      name="+apidoc"
83
83
      class="lp.app.browser.launchpad.LaunchpadAPIDocFolder"
84
84
      attribute="__call__"