~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/specificationtarget.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:
25
25
    queryMultiAdapter,
26
26
    )
27
27
 
28
 
from lp import _
 
28
from canonical.config import config
 
29
from canonical.launchpad import _
 
30
from canonical.launchpad.helpers import shortlist
 
31
from canonical.launchpad.webapp import (
 
32
    canonical_url,
 
33
    LaunchpadView,
 
34
    )
 
35
from canonical.launchpad.webapp.authorization import check_permission
 
36
from canonical.launchpad.webapp.batching import BatchNavigator
 
37
from canonical.launchpad.webapp.breadcrumb import Breadcrumb
 
38
from canonical.launchpad.webapp.menu import (
 
39
    enabled_with_permission,
 
40
    Link,
 
41
    )
29
42
from lp.app.enums import service_uses_launchpad
30
43
from lp.app.interfaces.launchpad import IServiceUsage
31
44
from lp.blueprints.enums import (
44
57
    IProjectGroupSeries,
45
58
    )
46
59
from lp.registry.interfaces.role import IHasDrivers
47
 
from lp.services.config import config
48
 
from lp.services.helpers import shortlist
49
60
from lp.services.propertycache import cachedproperty
50
 
from lp.services.webapp import (
51
 
    canonical_url,
52
 
    LaunchpadView,
53
 
    )
54
 
from lp.services.webapp.authorization import check_permission
55
 
from lp.services.webapp.batching import BatchNavigator
56
 
from lp.services.webapp.breadcrumb import Breadcrumb
57
 
from lp.services.webapp.menu import (
58
 
    enabled_with_permission,
59
 
    Link,
60
 
    )
61
61
 
62
62
 
63
63
class HasSpecificationsMenuMixin: