~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/browser/branchvisibilitypolicy.py

  • Committer: Tim Penhey
  • Date: 2010-11-23 23:22:27 UTC
  • mto: (11929.11.5 recipe-syntax)
  • mto: This revision was merged to the branch mainline in revision 11968.
  • Revision ID: tim.penhey@canonical.com-20101123232227-t81rrvhs4w15370d
Move launchpadform into lp.app.browser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
from canonical.launchpad import _
27
27
from canonical.launchpad.webapp import (
28
 
    action,
29
28
    canonical_url,
30
 
    custom_widget,
31
 
    LaunchpadFormView,
32
29
    LaunchpadView,
33
30
    )
34
31
from canonical.widgets.itemswidgets import (
35
32
    LabeledMultiCheckBoxWidget,
36
33
    LaunchpadRadioWidgetWithDescription,
37
34
    )
 
35
from lp.app.browser.launchpadform import (
 
36
    action,
 
37
    custom_widget,
 
38
    LaunchpadFormView,
 
39
    )
38
40
from lp.code.enums import (
39
41
    BranchVisibilityRule,
40
42
    TeamBranchVisibilityRule,
41
43
    )
42
 
from lp.code.interfaces.branchnamespace import IBranchNamespacePolicy
43
 
from lp.code.interfaces.branchtarget import IBranchTarget
44
44
from lp.code.interfaces.branchvisibilitypolicy import (
45
45
    IBranchVisibilityTeamPolicy,
46
46
    )