]> git.donarmstrong.com Git - debbugs.git/commitdiff
add forwarded information; update bzr ignore
authorDon Armstrong <don@donarmstrong.com>
Sat, 16 Aug 2008 20:09:19 +0000 (13:09 -0700)
committerDon Armstrong <don@donarmstrong.com>
Sat, 16 Aug 2008 20:09:19 +0000 (13:09 -0700)
.bzrignore [new file with mode: 0644]
templates/en_US/cgi/bugreport_buginfo.tmpl

diff --git a/.bzrignore b/.bzrignore
new file mode 100644 (file)
index 0000000..0b9634c
--- /dev/null
@@ -0,0 +1,4 @@
+Makefile.perl
+Makefile.perl.old
+build-stamp
+install-stamp
index 2e9b1825b7b68410a1f78818756c982735b6a1f1..8affad181f70ae0fb54f52a9ca6ff83439aa8c4c 100644 (file)
      $output .= q(<p>Bug is archived. No further changes may be made.<p>)
   }
   $output
+}{ my $output = '';
+ if (length($status{forwarded})) {
+    $output = "<p>Forwarded to " . 
+              join(', ',
+                  map {maybelink($_)}
+                   split /\,\s+/,$status{forwarded}
+                 )."</p>\n";
+ }
+ $output;
 }{ my $output = '';
   if (exists $status{summary} and defined $status{summary} and length $status{summary}) {
      $output .= q(<p>Summary: ).html_escape($status{summary}).q(</p>);