~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/project.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
from zope.schema import Choice
44
44
 
45
45
from lp import _
46
 
from lp.services.feeds.browser import FeedsMixin
47
 
from lp.services.webapp import (
48
 
    ApplicationMenu,
49
 
    canonical_url,
50
 
    ContextMenu,
51
 
    enabled_with_permission,
52
 
    LaunchpadView,
53
 
    Link,
54
 
    Navigation,
55
 
    StandardLaunchpadFacets,
56
 
    stepthrough,
57
 
    structured,
58
 
    )
59
 
from lp.services.webapp.authorization import check_permission
60
 
from lp.services.webapp.breadcrumb import Breadcrumb
61
 
from lp.services.webapp.menu import NavigationMenu
62
46
from lp.answers.browser.question import QuestionAddView
63
47
from lp.answers.browser.questiontarget import (
64
48
    QuestionCollectionAnswersMenu,
103
87
    IProjectGroupSeries,
104
88
    IProjectGroupSet,
105
89
    )
 
90
from lp.services.feeds.browser import FeedsMixin
106
91
from lp.services.fields import (
107
92
    PillarAliases,
108
93
    PublicPersonChoice,
109
94
    )
110
95
from lp.services.propertycache import cachedproperty
 
96
from lp.services.webapp import (
 
97
    ApplicationMenu,
 
98
    canonical_url,
 
99
    ContextMenu,
 
100
    enabled_with_permission,
 
101
    LaunchpadView,
 
102
    Link,
 
103
    Navigation,
 
104
    StandardLaunchpadFacets,
 
105
    stepthrough,
 
106
    structured,
 
107
    )
 
108
from lp.services.webapp.authorization import check_permission
 
109
from lp.services.webapp.breadcrumb import Breadcrumb
 
110
from lp.services.webapp.menu import NavigationMenu
111
111
 
112
112
 
113
113
class ProjectNavigation(Navigation,