~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/sprint.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:
33
33
from zope.component import getUtility
34
34
from zope.interface import implements
35
35
 
36
 
from lp import _
 
36
from canonical.launchpad import _
 
37
from canonical.launchpad.helpers import shortlist
 
38
from canonical.launchpad.webapp import (
 
39
    canonical_url,
 
40
    enabled_with_permission,
 
41
    GetitemNavigation,
 
42
    LaunchpadView,
 
43
    Link,
 
44
    Navigation,
 
45
    NavigationMenu,
 
46
    StandardLaunchpadFacets,
 
47
    )
 
48
from canonical.launchpad.webapp.batching import BatchNavigator
 
49
from canonical.launchpad.webapp.breadcrumb import Breadcrumb
37
50
from lp.app.browser.launchpadform import (
38
51
    action,
39
52
    custom_widget,
66
79
    )
67
80
from lp.registry.interfaces.person import IPersonSet
68
81
from lp.services.database.bulk import load_referencing
69
 
from lp.services.helpers import shortlist
70
82
from lp.services.propertycache import cachedproperty
71
 
from lp.services.webapp import (
72
 
    canonical_url,
73
 
    enabled_with_permission,
74
 
    GetitemNavigation,
75
 
    LaunchpadView,
76
 
    Link,
77
 
    Navigation,
78
 
    NavigationMenu,
79
 
    StandardLaunchpadFacets,
80
 
    )
81
 
from lp.services.webapp.batching import BatchNavigator
82
 
from lp.services.webapp.breadcrumb import Breadcrumb
83
83
 
84
84
 
85
85
class SprintFacets(StandardLaunchpadFacets):