~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugcomment.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:
37
37
    Interface,
38
38
    )
39
39
 
40
 
from lp.bugs.interfaces.bugmessage import IBugComment
41
 
from lp.services.config import config
42
 
from lp.services.features import getFeatureFlag
43
 
from lp.services.librarian.browser import ProxiedLibraryFileAlias
 
40
from canonical.config import config
44
41
from lp.services.webapp import (
45
42
    canonical_url,
46
43
    LaunchpadView,
47
44
    )
48
45
from lp.services.webapp.breadcrumb import Breadcrumb
49
46
from lp.services.webapp.interfaces import ILaunchBag
 
47
from lp.bugs.interfaces.bugmessage import IBugComment
 
48
from lp.services.features import getFeatureFlag
 
49
from lp.services.librarian.browser import ProxiedLibraryFileAlias
50
50
 
51
51
 
52
52
COMMENT_ACTIVITY_GROUPING_WINDOW = timedelta(minutes=5)