~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/librarian/browser.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-30 10:09:30 UTC
  • mfrom: (14606.2.8 apocalibrarian)
  • Revision ID: launchpad@pqm.canonical.com-20111230100930-kp3e0l6wakissewm
[r=wgrant][no-qa] Move canonical.librarian to
        lp.services.librarian(server).

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from zope.publisher.interfaces import NotFound
20
20
from zope.security.interfaces import Unauthorized
21
21
 
 
22
from lp.app.errors import GoneError
22
23
from lp.layers import WebServiceLayer
 
24
from lp.services.librarian.client import url_path_quote
 
25
from lp.services.librarian.interfaces import ILibraryFileAlias
23
26
from lp.services.webapp.authorization import check_permission
24
27
from lp.services.webapp.publisher import (
25
28
    canonical_url,
28
31
    stepthrough,
29
32
    )
30
33
from lp.services.webapp.url import urlappend
31
 
from canonical.librarian.client import url_path_quote
32
 
from lp.app.errors import GoneError
33
 
from lp.services.librarian.interfaces import ILibraryFileAlias
34
34
 
35
35
 
36
36
class LibraryFileAliasView(LaunchpadView):