~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugnomination.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:
19
19
from zope.publisher.interfaces import implements
20
20
 
21
21
from lp import _
 
22
from lp.services.webapp import (
 
23
    canonical_url,
 
24
    LaunchpadView,
 
25
    )
 
26
from lp.services.webapp.authorization import check_permission
 
27
from lp.services.webapp.interfaces import (
 
28
    ILaunchBag,
 
29
    IPrimaryContext,
 
30
    )
22
31
from lp.app.browser.launchpadform import (
23
32
    action,
24
33
    custom_widget,
31
40
    IBugNominationForm,
32
41
    )
33
42
from lp.bugs.interfaces.cve import ICveSet
34
 
from lp.services.webapp import (
35
 
    canonical_url,
36
 
    LaunchpadView,
37
 
    )
38
 
from lp.services.webapp.authorization import check_permission
39
 
from lp.services.webapp.interfaces import (
40
 
    ILaunchBag,
41
 
    IPrimaryContext,
42
 
    )
43
43
 
44
44
 
45
45
class BugNominationPrimaryContext: