~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugattachment.py

  • Committer: William Grant
  • Date: 2011-12-22 05:37:22 UTC
  • mto: This revision was merged to the branch mainline in revision 14581.
  • Revision ID: william.grant@canonical.com-20111222053722-gm6h9zi3lioz00ky
Move librarian stuff from canonical.launchpad to lp.services.librarian. canonical.librarian remains untouched.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from zope.contenttype import guess_content_type
21
21
from zope.interface import implements
22
22
 
23
 
from canonical.launchpad.browser.librarian import (
24
 
    FileNavigationMixin,
25
 
    ProxiedLibraryFileAlias,
26
 
    )
27
 
from canonical.launchpad.interfaces.librarian import (
28
 
    ILibraryFileAliasWithParent,
29
 
    )
30
23
from canonical.launchpad.webapp import (
31
24
    canonical_url,
32
25
    custom_widget,
50
43
    IBugAttachmentIsPatchConfirmationForm,
51
44
    IBugAttachmentSet,
52
45
    )
 
46
from lp.services.librarian.browser import (
 
47
    FileNavigationMixin,
 
48
    ProxiedLibraryFileAlias,
 
49
    )
 
50
from lp.services.librarian.interfaces import ILibraryFileAliasWithParent
53
51
 
54
52
 
55
53
class BugAttachmentContentCheck: