~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bug.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-23 09:54:33 UTC
  • mfrom: (14486.6.4 drop-obsolete-config-items)
  • Revision ID: launchpad@pqm.canonical.com-20111223095433-amgcz7yu4tsxrypz
[r=wgrant][no-qa] Drop various obsolete config definitions that were
        recently dropped from prod.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
from zope.schema import Choice
60
60
from zope.security.interfaces import Unauthorized
61
61
 
62
 
from lp import _
63
 
from lp.services.searchbuilder import (
 
62
from canonical.launchpad import _
 
63
from canonical.launchpad.searchbuilder import (
64
64
    any,
65
65
    greater_than,
66
66
    )
67
 
from lp.services.webapp import (
 
67
from canonical.launchpad.webapp import (
68
68
    canonical_url,
69
69
    ContextMenu,
70
70
    LaunchpadView,
74
74
    stepthrough,
75
75
    structured,
76
76
    )
77
 
from lp.services.webapp.authorization import (
 
77
from canonical.launchpad.webapp.authorization import (
78
78
    check_permission,
79
79
    precache_permission_for_objects,
80
80
    )
81
 
from lp.services.webapp.interfaces import (
 
81
from canonical.launchpad.webapp.interfaces import (
82
82
    ICanonicalUrlData,
83
83
    ILaunchBag,
84
84
    )