~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2011-12-30 01:10:37 UTC
  • mto: (14606.3.6 apocaremains)
  • mto: This revision was merged to the branch mainline in revision 14608.
  • Revision ID: william.grant@canonical.com-20111230011037-3g35hpwgat0kv2dz
Move canonical.librarian.{client,utils} to lp.services.librarian.

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):