~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/specification.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:
72
72
    SimpleVocabulary,
73
73
    )
74
74
 
 
75
from canonical.config import config
75
76
from lp import _
 
77
from lp.services.webapp import (
 
78
    canonical_url,
 
79
    LaunchpadView,
 
80
    Navigation,
 
81
    stepthrough,
 
82
    stepto,
 
83
    )
 
84
from lp.services.webapp.authorization import check_permission
 
85
from lp.services.webapp.menu import (
 
86
    ContextMenu,
 
87
    enabled_with_permission,
 
88
    Link,
 
89
    NavigationMenu,
 
90
    )
76
91
from lp.app.browser.launchpad import AppFrontPageSearchView
77
92
from lp.app.browser.launchpadform import (
78
93
    action,
108
123
from lp.code.interfaces.branchnamespace import IBranchNamespaceSet
109
124
from lp.registry.interfaces.distribution import IDistribution
110
125
from lp.registry.interfaces.product import IProduct
111
 
from lp.services.config import config
112
126
from lp.services.propertycache import cachedproperty
113
 
from lp.services.webapp import (
114
 
    canonical_url,
115
 
    LaunchpadView,
116
 
    Navigation,
117
 
    stepthrough,
118
 
    stepto,
119
 
    )
120
 
from lp.services.webapp.authorization import check_permission
121
 
from lp.services.webapp.menu import (
122
 
    ContextMenu,
123
 
    enabled_with_permission,
124
 
    Link,
125
 
    NavigationMenu,
126
 
    )
127
127
 
128
128
 
129
129
class INewSpecification(Interface):