~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/browser/bazaar.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-09 09:23:38 UTC
  • mfrom: (14333.2.13 history-model)
  • Revision ID: launchpad@pqm.canonical.com-20111209092338-se7u5l0skqzaes1v
[r=jcsackett][bug=295214, 894836,
 898200] Keep sort button ob bug listing pages in sync with the
 displayed data

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
import bzrlib
16
16
from zope.component import getUtility
17
17
 
 
18
from canonical.config import config
 
19
from canonical.launchpad.webapp import (
 
20
    canonical_url,
 
21
    LaunchpadView,
 
22
    )
 
23
from canonical.launchpad.webapp.authorization import (
 
24
    precache_permission_for_objects,
 
25
    )
18
26
from lp.code.enums import CodeImportReviewStatus
19
27
from lp.code.interfaces.branch import (
20
28
    IBranchCloud,
23
31
from lp.code.interfaces.branchcollection import IAllBranches
24
32
from lp.code.interfaces.codeimport import ICodeImportSet
25
33
from lp.registry.interfaces.product import IProductSet
26
 
from lp.services.config import config
27
34
from lp.services.propertycache import cachedproperty
28
 
from lp.services.webapp import (
29
 
    canonical_url,
30
 
    LaunchpadView,
31
 
    )
32
 
from lp.services.webapp.authorization import precache_permission_for_objects
33
35
 
34
36
 
35
37
class BazaarApplicationView(LaunchpadView):