~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-12-28 17:03:06 UTC
  • mto: This revision was merged to the branch mainline in revision 14605.
  • Revision ID: curtis.hovey@canonical.com-20111228170306-n9fz94h85ckaoaf3
Separate test-authoring classes from test-running classes.

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
46
62
from lp.answers.browser.question import QuestionAddView
47
63
from lp.answers.browser.questiontarget import (
48
64
    QuestionCollectionAnswersMenu,
87
103
    IProjectGroupSeries,
88
104
    IProjectGroupSet,
89
105
    )
90
 
from lp.services.feeds.browser import FeedsMixin
91
106
from lp.services.fields import (
92
107
    PillarAliases,
93
108
    PublicPersonChoice,
94
109
    )
95
110
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,