~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

Merged fix-retest-colorize into redo-read-only-transactions-in-buildmaster, resolving several import conflicts.

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 canonical.launchpad.layers import WebServiceLayer
23
 
from canonical.launchpad.webapp.authorization import check_permission
24
 
from canonical.launchpad.webapp.publisher import (
 
22
from lp.app.errors import GoneError
 
23
from lp.layers import WebServiceLayer
 
24
from lp.services.librarian.client import url_path_quote
 
25
from lp.services.librarian.interfaces import ILibraryFileAlias
 
26
from lp.services.webapp.authorization import check_permission
 
27
from lp.services.webapp.publisher import (
25
28
    canonical_url,
26
29
    LaunchpadView,
27
30
    RedirectionView,
28
31
    stepthrough,
29
32
    )
30
 
from canonical.launchpad.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
 
33
from lp.services.webapp.url import urlappend
34
34
 
35
35
 
36
36
class LibraryFileAliasView(LaunchpadView):