~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/model/distroseriessourcepackagerelease.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
11
11
    'DistroSeriesSourcePackageRelease',
12
12
    ]
13
13
 
 
14
from lazr.delegates import delegates
14
15
from operator import itemgetter
15
 
 
16
 
from lazr.delegates import delegates
17
16
from storm.expr import (
18
17
    And,
19
18
    Desc,
23
22
from zope.interface import implements
24
23
from zope.security.proxy import removeSecurityProxy
25
24
 
 
25
from canonical.database.sqlbase import sqlvalues
 
26
from canonical.launchpad.components.decoratedresultset import (
 
27
    DecoratedResultSet,
 
28
    )
26
29
from lp.registry.interfaces.distroseries import IDistroSeries
27
 
from lp.services.database.decoratedresultset import DecoratedResultSet
28
 
from lp.services.database.sqlbase import sqlvalues
29
30
from lp.soyuz.enums import PackagePublishingStatus
30
31
from lp.soyuz.interfaces.distroseriessourcepackagerelease import (
31
32
    IDistroSeriesSourcePackageRelease,