From: Don Armstrong Date: Thu, 6 Jul 2006 00:41:09 +0000 (-0700) Subject: * merge in changes to support cloned bugs in blockers X-Git-Tag: release/2.6.0~604^2~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5d8d5d314e52611061b683979ba2e9a9b16388b3;p=debbugs.git * merge in changes to support cloned bugs in blockers --- diff --git a/html/server-refcard.html.in b/html/server-refcard.html.in index 838e8ffe..c1f09b85 100644 --- a/html/server-refcard.html.in +++ b/html/server-refcard.html.in @@ -90,6 +90,20 @@ you, the person doing the reopen. $gHTMLSeverityDesc +

Synopsis of bug submission and followup addresses

+ + +

Other pages: diff --git a/scripts/service.in b/scripts/service.in index fdf1fa80..50bb4cd1 100755 --- a/scripts/service.in +++ b/scripts/service.in @@ -719,13 +719,19 @@ END my $bugnum = $2; my $blockers = $4; $addsub = "add"; $addsub = "sub" if ($1 eq "un"); - + if ($bugnum =~ m/^-\d+$/ && defined $clonebugs{$bugnum}) { + $bugnum = $clonebugs{$bugnum}; + } + my @okayblockers; my @badblockers; foreach my $b (split /[\s,]+/, $blockers) { $b=~s/^\#//; if ($b=~/[0-9]+/) { $ref=$b; + if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) { + $ref = $clonebugs{$ref}; + } if (&getbug) { push @okayblockers, $b;