~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/librarian/ftests/test_web.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:
23
23
    flush_database_updates,
24
24
    session_store,
25
25
    )
26
 
from canonical.launchpad.database.librarian import (
27
 
    LibraryFileAlias,
28
 
    TimeLimitedToken,
29
 
    )
30
 
from canonical.launchpad.interfaces.librarian import ILibraryFileAliasSet
31
 
from lp.services.database.lpstorm import IMasterStore
32
26
from canonical.librarian.client import (
33
27
    get_libraryfilealias_download_path,
34
28
    LibrarianClient,
38
32
    LaunchpadFunctionalLayer,
39
33
    LaunchpadZopelessLayer,
40
34
    )
 
35
from lp.services.database.lpstorm import IMasterStore
 
36
from lp.services.librarian.interfaces import ILibraryFileAliasSet
 
37
from lp.services.librarian.model import (
 
38
    LibraryFileAlias,
 
39
    TimeLimitedToken,
 
40
    )
41
41
 
42
42
 
43
43
def uri_path_replace(url, old, new):