~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/model/distributionsourcepackagecache.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-09 09:23:38 UTC
  • mfrom: (14333.2.13 history-model)
  • Revision ID: launchpad@pqm.canonical.com-20111209092338-se7u5l0skqzaes1v
[r=jcsackett][bug=295214, 894836,
 898200] Keep sort button ob bug listing pages in sync with the
 displayed data

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
4
# pylint: disable-msg=E0611,W0212
14
14
    )
15
15
from zope.interface import implements
16
16
 
17
 
from lp.registry.model.sourcepackagename import SourcePackageName
18
 
from lp.services.database.decoratedresultset import DecoratedResultSet
19
 
from lp.services.database.lpstorm import IStore
20
 
from lp.services.database.sqlbase import (
 
17
from canonical.database.sqlbase import (
21
18
    SQLBase,
22
19
    sqlvalues,
23
20
    )
 
21
from canonical.launchpad.components.decoratedresultset import (
 
22
    DecoratedResultSet,
 
23
    )
 
24
from canonical.launchpad.interfaces.lpstorm import IStore
 
25
from lp.registry.model.sourcepackagename import SourcePackageName
24
26
from lp.soyuz.interfaces.distributionsourcepackagecache import (
25
27
    IDistributionSourcePackageCache,
26
28
    )
 
29
from lp.soyuz.model.sourcepackagerelease import SourcePackageRelease
27
30
from lp.soyuz.model.binarypackagerelease import BinaryPackageRelease
28
 
from lp.soyuz.model.sourcepackagerelease import SourcePackageRelease
29
31
 
30
32
 
31
33
class DistributionSourcePackageCache(SQLBase):