~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-18 15:13:07 UTC
  • mto: This revision was merged to the branch mainline in revision 14547.
  • Revision ID: curtis.hovey@canonical.com-20111218151307-sdm2gzobt5tplbe0
Moved badges to lp.app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    Interface,
38
38
    )
39
39
 
 
40
from canonical.config import config
 
41
from canonical.launchpad.browser.librarian import ProxiedLibraryFileAlias
 
42
from canonical.launchpad.webapp import (
 
43
    canonical_url,
 
44
    LaunchpadView,
 
45
    )
 
46
from canonical.launchpad.webapp.breadcrumb import Breadcrumb
 
47
from canonical.launchpad.webapp.interfaces import ILaunchBag
40
48
from lp.bugs.interfaces.bugmessage import IBugComment
41
 
from lp.services.config import config
42
49
from lp.services.features import getFeatureFlag
43
 
from lp.services.librarian.browser import ProxiedLibraryFileAlias
44
 
from lp.services.webapp import (
45
 
    canonical_url,
46
 
    LaunchpadView,
47
 
    )
48
 
from lp.services.webapp.breadcrumb import Breadcrumb
49
 
from lp.services.webapp.interfaces import ILaunchBag
50
50
 
51
51
 
52
52
COMMENT_ACTIVITY_GROUPING_WINDOW = timedelta(minutes=5)