~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/sprint.py

  • Committer: Curtis Hovey
  • Date: 2011-12-29 05:29:36 UTC
  • mto: This revision was merged to the branch mainline in revision 14606.
  • Revision ID: curtis.hovey@canonical.com-20111229052936-c261pibg1p6ze6m4
Moved canonical.config to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
from zope.interface import implements
35
35
 
36
36
from lp import _
 
37
from lp.services.helpers import shortlist
 
38
from lp.services.webapp import (
 
39
    canonical_url,
 
40
    enabled_with_permission,
 
41
    GetitemNavigation,
 
42
    LaunchpadView,
 
43
    Link,
 
44
    Navigation,
 
45
    NavigationMenu,
 
46
    StandardLaunchpadFacets,
 
47
    )
 
48
from lp.services.webapp.batching import BatchNavigator
 
49
from lp.services.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):