~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-12-29 05:29:36 UTC
  • mto: This revision was merged to the branch mainline in revision 14606.
  • Revision ID: curtis.hovey@canonical.com-20111229052936-c261pibg1p6ze6m4
Moved canonical.config to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
from zope.component import getUtility
27
27
 
 
28
from lp.services.webapp import (
 
29
    ApplicationMenu,
 
30
    canonical_url,
 
31
    enabled_with_permission,
 
32
    GetitemNavigation,
 
33
    LaunchpadView,
 
34
    Link,
 
35
    )
 
36
from lp.services.webapp.interfaces import ILaunchBag
28
37
from lp.app.browser.launchpadform import (
29
38
    action,
30
39
    LaunchpadFormView,
36
45
    ISignedCodeOfConduct,
37
46
    ISignedCodeOfConductSet,
38
47
    )
39
 
from lp.services.webapp import (
40
 
    ApplicationMenu,
41
 
    canonical_url,
42
 
    enabled_with_permission,
43
 
    GetitemNavigation,
44
 
    LaunchpadView,
45
 
    Link,
46
 
    )
47
 
from lp.services.webapp.interfaces import ILaunchBag
48
48
 
49
49
 
50
50
class SignedCodeOfConductSetNavigation(GetitemNavigation):