~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/distributionsourcepackage.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:
34
34
    )
35
35
 
36
36
from lp.services.helpers import shortlist
37
 
from canonical.launchpad.webapp import (
 
37
from lp.services.webapp import (
38
38
    action,
39
39
    canonical_url,
40
40
    LaunchpadEditFormView,
43
43
    redirection,
44
44
    StandardLaunchpadFacets,
45
45
    )
46
 
from canonical.launchpad.webapp.breadcrumb import Breadcrumb
47
 
from canonical.launchpad.webapp.interfaces import IBreadcrumb
48
 
from canonical.launchpad.webapp.menu import (
 
46
from lp.services.webapp.breadcrumb import Breadcrumb
 
47
from lp.services.webapp.interfaces import IBreadcrumb
 
48
from lp.services.webapp.menu import (
49
49
    ApplicationMenu,
50
50
    enabled_with_permission,
51
51
    Link,
52
52
    NavigationMenu,
53
53
    )
54
 
from canonical.launchpad.webapp.sorting import sorted_dotted_numbers
 
54
from lp.services.webapp.sorting import sorted_dotted_numbers
55
55
from lp.answers.browser.questiontarget import (
56
56
    QuestionTargetAnswersMenu,
57
57
    QuestionTargetFacetMixin,