~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 12:41:32 UTC
  • mfrom: (14578.2.5 librarian-services)
  • Revision ID: launchpad@pqm.canonical.com-20111222124132-s1yqnjjb1jl7384h
[r=wgrant][no-qa] Move most non-server librarian stuff from around
        the tree to lp.services.librarian. canonical.launchpad.{browser,
        database} are no longer.

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: