~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/webapp/servers.py

  • Committer: William Grant
  • Date: 2011-12-30 07:32:58 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230073258-g76qf50dpdqcxzfb
Move the interfaces across too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
from zope.server.http.wsgihttpserver import PMDBWSGIHTTPServer
62
62
from zope.session.interfaces import ISession
63
63
 
 
64
from lp.app.errors import UnexpectedFormData
 
65
import lp.layers
64
66
from lp.services.config import config
65
 
from lp.xmlrpc.interfaces import IPrivateApplication
66
 
import lp.layers
 
67
from lp.services.features import get_relevant_feature_controller
 
68
from lp.services.features.flags import NullFeatureController
 
69
from lp.services.feeds.interfaces.application import IFeedsApplication
 
70
from lp.services.feeds.interfaces.feed import IFeed
 
71
from lp.services.oauth.interfaces import (
 
72
    IOAuthConsumerSet,
 
73
    IOAuthSignedRequest,
 
74
    TokenException,
 
75
    )
 
76
from lp.services.propertycache import cachedproperty
67
77
from lp.services.webapp.authentication import (
68
78
    check_oauth_signature,
69
79
    get_oauth_authorization,
97
107
    RedirectionView,
98
108
    )
99
109
from lp.services.webapp.vhosts import allvhosts
100
 
from canonical.lazr.interfaces.feed import IFeed
101
 
from lp.app.errors import UnexpectedFormData
102
 
from lp.services.features import get_relevant_feature_controller
103
 
from lp.services.features.flags import NullFeatureController
104
 
from lp.services.feeds.interfaces import IFeedsApplication
105
 
from lp.services.oauth.interfaces import (
106
 
    IOAuthConsumerSet,
107
 
    IOAuthSignedRequest,
108
 
    TokenException,
109
 
    )
110
 
from lp.services.propertycache import cachedproperty
111
110
from lp.services.webservice.interfaces import IWebServiceApplication
112
111
from lp.testopenid.interfaces.server import ITestOpenIDApplication
 
112
from lp.xmlrpc.interfaces import IPrivateApplication
113
113
 
114
114
 
115
115
class StepsToGo: