~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Steve Kowalik
  • Date: 2011-08-07 04:05:52 UTC
  • mto: This revision was merged to the branch mainline in revision 13626.
  • Revision ID: stevenk@ubuntu.com-20110807040552-mwnxo0flmhvl35e8
Correct the notification based on review comments, and remove request{,ed}
from the function names, switching to create{,d}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    ]
10
10
 
11
11
 
12
 
from lp import _
 
12
from canonical.launchpad import _
 
13
from canonical.launchpad.browser.librarian import FileNavigationMixin
 
14
from canonical.launchpad.webapp import Navigation
 
15
from canonical.launchpad.webapp.publisher import canonical_url
13
16
from lp.app.browser.tales import ObjectFormatterAPI
14
17
from lp.code.interfaces.diff import IPreviewDiff
15
18
from lp.services.browser_helpers import get_plural_text
16
 
from lp.services.librarian.browser import FileNavigationMixin
17
 
from lp.services.webapp import Navigation
18
 
from lp.services.webapp.publisher import canonical_url
19
19
 
20
20
 
21
21
class PreviewDiffNavigation(Navigation, FileNavigationMixin):