~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • 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:
64
64
from canonical.config import config
65
65
from lp.xmlrpc.interfaces import IPrivateApplication
66
66
import lp.layers
67
 
from canonical.launchpad.webapp.authentication import (
 
67
from lp.services.webapp.authentication import (
68
68
    check_oauth_signature,
69
69
    get_oauth_authorization,
70
70
    )
71
 
from canonical.launchpad.webapp.authorization import (
 
71
from lp.services.webapp.authorization import (
72
72
    LAUNCHPAD_SECURITY_POLICY_CACHE_KEY,
73
73
    )
74
 
from canonical.launchpad.webapp.errorlog import ErrorReportRequest
75
 
from canonical.launchpad.webapp.interfaces import (
 
74
from lp.services.webapp.errorlog import ErrorReportRequest
 
75
from lp.services.webapp.interfaces import (
76
76
    FinishReadOnlyRequestEvent,
77
77
    IAPIDocRoot,
78
78
    IBasicLaunchpadRequest,
85
85
    IPlacelessLoginSource,
86
86
    OAuthPermission,
87
87
    )
88
 
from canonical.launchpad.webapp.notifications import (
 
88
from lp.services.webapp.notifications import (
89
89
    NotificationList,
90
90
    NotificationRequest,
91
91
    NotificationResponse,
92
92
    )
93
 
from canonical.launchpad.webapp.opstats import OpStats
94
 
from canonical.launchpad.webapp.publication import LaunchpadBrowserPublication
95
 
from canonical.launchpad.webapp.publisher import (
 
93
from lp.services.webapp.opstats import OpStats
 
94
from lp.services.webapp.publication import LaunchpadBrowserPublication
 
95
from lp.services.webapp.publisher import (
96
96
    get_current_browser_request,
97
97
    RedirectionView,
98
98
    )
99
 
from canonical.launchpad.webapp.vhosts import allvhosts
 
99
from lp.services.webapp.vhosts import allvhosts
100
100
from canonical.lazr.interfaces.feed import IFeed
101
101
from lp.app.errors import UnexpectedFormData
102
102
from lp.services.features import get_relevant_feature_controller