~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/interfaces/branch.py

  • Committer: Ian Booth
  • Date: 2011-08-24 08:57:25 UTC
  • mto: This revision was merged to the branch mainline in revision 13814.
  • Revision ID: ian.booth@canonical.com-20110824085725-5h2i47ke8mv4b2e5
Introduce explicitly_private property and add text to privacy portlet

Show diffs side-by-side

added added

removed removed

Lines of Context:
248
248
            required=True,
249
249
            readonly=False))
250
250
 
 
251
    explicitly_private = Bool(
 
252
        title=_("Explicitly Private"),
 
253
        description=_("This branch is explicitly marked private as opposed "
 
254
        "to being private because it is stacked on a private branch."))
 
255
 
251
256
 
252
257
class IBranchAnyone(Interface):
253
258
    """Attributes of IBranch that can be changed by launchpad.AnyPerson."""