~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/person.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:
136
136
    UnknownRecipientError,
137
137
    )
138
138
from lp.services.verification.interfaces.logintoken import ILoginTokenSet
139
 
from canonical.launchpad.webapp import (
 
139
from lp.services.webapp import (
140
140
    ApplicationMenu,
141
141
    canonical_url,
142
142
    ContextMenu,
149
149
    stepto,
150
150
    structured,
151
151
    )
152
 
from canonical.launchpad.webapp.authorization import check_permission
153
 
from canonical.launchpad.webapp.batching import BatchNavigator
154
 
from canonical.launchpad.webapp.interfaces import (
 
152
from lp.services.webapp.authorization import check_permission
 
153
from lp.services.webapp.batching import BatchNavigator
 
154
from lp.services.webapp.interfaces import (
155
155
    ILaunchBag,
156
156
    IOpenLaunchBag,
157
157
    )
158
 
from canonical.launchpad.webapp.login import logoutPerson
159
 
from canonical.launchpad.webapp.menu import get_current_view
160
 
from canonical.launchpad.webapp.publisher import LaunchpadView
 
158
from lp.services.webapp.login import logoutPerson
 
159
from lp.services.webapp.menu import get_current_view
 
160
from lp.services.webapp.publisher import LaunchpadView
161
161
from lp.answers.browser.questiontarget import SearchQuestionsView
162
162
from lp.answers.enums import QuestionParticipation
163
163
from lp.answers.interfaces.questioncollection import IQuestionSet