~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

[r=bac][bug=777120] Fix the vocabulary of possible parents to use
        DSP. Fix initseries page to hide the rebuild option the
        distribution already has an initialized series.

Show diffs side-by-side

added added

removed removed

Lines of Context:
340
340
                      "on disk."),
341
341
        readonly=True, required=False)
342
342
 
 
343
    has_published_sources = Bool(
 
344
        title=_("Has Published Sources"),
 
345
        description=_("True if this distribution has sources published."),
 
346
        readonly=True, required=False)
 
347
 
343
348
    def getArchiveIDList(archive=None):
344
349
        """Return a list of archive IDs suitable for sqlvalues() or quote().
345
350