~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/model/publishing.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:
49
49
    SQLBase,
50
50
    sqlvalues,
51
51
    )
52
 
from canonical.launchpad.browser.librarian import ProxiedLibraryFileAlias
53
 
from canonical.launchpad.database.librarian import (
54
 
    LibraryFileAlias,
55
 
    LibraryFileContent,
56
 
    )
57
 
from lp.services.database.lpstorm import IMasterStore
58
52
from canonical.launchpad.webapp.errorlog import (
59
53
    ErrorReportingUtility,
60
54
    ScriptRequest,
71
65
from lp.registry.interfaces.person import validate_public_person
72
66
from lp.registry.interfaces.pocket import PackagePublishingPocket
73
67
from lp.services.database.decoratedresultset import DecoratedResultSet
 
68
from lp.services.database.lpstorm import IMasterStore
 
69
from lp.services.librarian.browser import ProxiedLibraryFileAlias
 
70
from lp.services.librarian.model import (
 
71
    LibraryFileAlias,
 
72
    LibraryFileContent,
 
73
    )
74
74
from lp.services.propertycache import (
75
75
    cachedproperty,
76
76
    get_property_cache,