~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/browser/launchpad.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:
60
60
from zope.traversing.interfaces import ITraversable
61
61
 
62
62
 
63
 
from lp.services.config import config
64
 
from lp import _
65
 
from lp.services.helpers import intOrZero
 
63
from canonical.config import config
 
64
from canonical.launchpad import _
 
65
from canonical.launchpad.helpers import intOrZero
66
66
from lp.services.statistics.interfaces.statistic import (
67
67
    ILaunchpadStatisticSet,
68
68
    )
70
70
from lp.services.temporaryblobstorage.interfaces import (
71
71
    ITemporaryStorageManager,
72
72
    )
73
 
from lp.layers import WebServiceLayer
74
 
from lp.services.webapp import (
 
73
from canonical.launchpad.layers import WebServiceLayer
 
74
from canonical.launchpad.webapp import (
75
75
    canonical_name,
76
76
    canonical_url,
77
77
    LaunchpadView,
80
80
    StandardLaunchpadFacets,
81
81
    stepto,
82
82
    )
83
 
from lp.services.webapp.authorization import check_permission
84
 
from lp.services.webapp.breadcrumb import Breadcrumb
85
 
from lp.services.webapp.interfaces import (
 
83
from canonical.launchpad.webapp.authorization import check_permission
 
84
from canonical.launchpad.webapp.breadcrumb import Breadcrumb
 
85
from canonical.launchpad.webapp.interfaces import (
86
86
    IBreadcrumb,
87
87
    ILaunchBag,
88
88
    ILaunchpadRoot,
89
89
    INavigationMenu,
90
90
    )
91
 
from lp.services.webapp.publisher import RedirectionView
92
 
from lp.services.webapp.url import urlappend
93
 
from lp.services.webapp.vhosts import allvhosts
 
91
from canonical.launchpad.webapp.publisher import RedirectionView
 
92
from canonical.launchpad.webapp.url import urlappend
 
93
from canonical.launchpad.webapp.vhosts import allvhosts
94
94
from canonical.lazr import (
95
95
    ExportedFolder,
96
96
    ExportedImageFolder,