~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/browser/branchsubscription.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:
15
15
from lazr.restful.utils import smartquote
16
16
from zope.interface import implements
17
17
 
18
 
from lp.app.browser.launchpadform import (
19
 
    action,
20
 
    LaunchpadEditFormView,
21
 
    LaunchpadFormView,
22
 
    )
23
 
from lp.code.enums import BranchSubscriptionNotificationLevel
24
 
from lp.code.interfaces.branchsubscription import IBranchSubscription
25
18
from lp.services.webapp import (
26
19
    canonical_url,
27
20
    LaunchpadView,
32
25
    )
33
26
from lp.services.webapp.interfaces import IPrimaryContext
34
27
from lp.services.webapp.menu import structured
 
28
from lp.app.browser.launchpadform import (
 
29
    action,
 
30
    LaunchpadEditFormView,
 
31
    LaunchpadFormView,
 
32
    )
 
33
from lp.code.enums import BranchSubscriptionNotificationLevel
 
34
from lp.code.interfaces.branchsubscription import IBranchSubscription
35
35
 
36
36
 
37
37
class BranchSubscriptionPrimaryContext: