~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
from zope.component import getUtility
15
15
 
16
16
from lp import _
 
17
from lp.services.webapp import (
 
18
    action,
 
19
    canonical_url,
 
20
    LaunchpadEditFormView,
 
21
    LaunchpadView,
 
22
    Navigation,
 
23
    )
17
24
from lp.registry.interfaces.distribution import IDistribution
18
25
from lp.registry.interfaces.karma import (
19
26
    IKarmaAction,
22
29
from lp.registry.interfaces.product import IProduct
23
30
from lp.registry.interfaces.projectgroup import IProjectGroup
24
31
from lp.services.propertycache import cachedproperty
25
 
from lp.services.webapp import (
26
 
    action,
27
 
    canonical_url,
28
 
    LaunchpadEditFormView,
29
 
    LaunchpadView,
30
 
    Navigation,
31
 
    )
32
32
 
33
33
 
34
34
TOP_CONTRIBUTORS_LIMIT = 20