~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/interfaces/person.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-09-21 03:09:33 UTC
  • mfrom: (7675.1045.811 db-devel)
  • Revision ID: launchpad@pqm.canonical.com-20110921030933-mfkdkkkb99sskvrt
Merging db-stable at revno 10994

Show diffs side-by-side

added added

removed removed

Lines of Context:
1234
1234
        """
1235
1235
 
1236
1236
    def getLatestMaintainedPackages():
1237
 
        """Return `SourcePackagePublishingHistory`s related to SPRs maintained
1238
 
        by this person.
 
1237
        """Return `SourcePackageRelease`s maintained by this person.
1239
1238
 
1240
 
        This method will only include the latest source package publishings
 
1239
        This method will only include the latest source package release
1241
1240
        for each source package name, distribution series combination.
1242
1241
        """
1243
1242
 
1244
1243
    def getLatestUploadedButNotMaintainedPackages():
1245
 
        """Return `SourcePackagePublishingHistory`s created by this person
1246
 
        but not maintained by him.
 
1244
        """Return `SourcePackageRelease`s created by this person but
 
1245
        not maintained by him.
1247
1246
 
1248
 
        This method will only include the latest source package publishings
 
1247
        This method will only include the latest source package release
1249
1248
        for each source package name, distribution series combination.
1250
1249
        """
1251
1250
 
1252
1251
    def getLatestUploadedPPAPackages():
1253
 
        """Return `SourcePackagePublishingHistory`s related to SPRs uploaded
1254
 
        by this person to any PPA.
 
1252
        """Return `SourcePackageRelease`s uploaded by this person to any PPA.
1255
1253
 
1256
 
        This method will only include the latest source package publishings
 
1254
        This method will only include the latest source package release
1257
1255
        for each source package name, distribution series combination.
1258
1256
        """
1259
1257