~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/doc/bug-nomination.txt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-15 10:35:32 UTC
  • mfrom: (14517.1.3 new-bzr)
  • Revision ID: launchpad@pqm.canonical.com-20111215103532-q2m4uyk0r8ugiayx
[r=sinzui, poolie][bug=509016] Always load foreign plugins,
 but restrict probers to avoid accidentally opening foreign branches.
 (re-land)

Show diffs side-by-side

added added

removed removed

Lines of Context:
377
377
    >>> ubuntu_breezy_autotest_nomination.date_decided
378
378
    datetime...
379
379
 
380
 
If a nomination is declined, the bug can be re-nominated for the same target.
381
 
The decider and date declined are reset to None.
382
 
 
383
 
    >>> bug_one.canBeNominatedFor(ubuntu_breezy_autotest)
384
 
    True
385
 
    >>> breezy_nomination = bug_one.addNomination(
386
 
    ...     target=ubuntu_breezy_autotest, owner=no_privs)
387
 
    >>> ubuntu_breezy_autotest_nomination.isApproved()
388
 
    False
389
 
    >>> breezy_nomination.isDeclined()
390
 
    False
391
 
    >>> breezy_nomination.isProposed()
392
 
    True
393
 
    >>> print breezy_nomination.decider
394
 
    None
395
 
    >>> print breezy_nomination.date_decided
396
 
    None
397
 
 
398
380
 
399
381
== Automatic targeting of new source packages ==
400
382