]> git.donarmstrong.com Git - debbugs.git/blob - cgi/bugreport.cgi
merge changes from dla source tree
[debbugs.git] / cgi / bugreport.cgi
1 #!/usr/bin/perl -wT
2
3 use warnings;
4 use strict;
5 use POSIX qw(strftime tzset);
6 use MIME::Parser;
7 use MIME::Decoder;
8 use IO::Scalar;
9 use IO::File;
10
11 use Debbugs::Config qw(:globals :text);
12
13 # for read_log_records
14 use Debbugs::Log;
15 use Debbugs::MIME qw(convert_to_utf8 decode_rfc1522 create_mime_message);
16 use Debbugs::CGI qw(:url :html :util);
17 use Debbugs::Common qw(buglog getmaintainers);
18 use Debbugs::Packages qw(getpkgsrc);
19 use Debbugs::Status qw(splitpackages get_bug_status isstrongseverity);
20
21 use Scalar::Util qw(looks_like_number);
22 use CGI::Simple;
23 my $q = new CGI::Simple;
24
25 my %param = cgi_parameters(query => $q,
26                            single => [qw(bug msg att boring terse),
27                                       qw(reverse mbox mime trim),
28                                       qw(mboxstat mboxmaint archive),
29                                       qw(repeatmerged)
30                                      ],
31                            default => {msg       => '',
32                                        boring    => 'no',
33                                        terse     => 'no',
34                                        reverse   => 'no',
35                                        mbox      => 'no',
36                                        mime      => 'no',
37                                        mboxstat  => 'no',
38                                        mboxmaint => 'no',
39                                        archive   => 'no',
40                                        repeatmerged => 'yes',
41                                       },
42                           );
43 # This is craptacular.
44
45 my $tail_html;
46
47 my $ref = $param{bug} or quitcgi("No bug number");
48 $ref =~ /(\d+)/ or quitcgi("Invalid bug number");
49 $ref = $1;
50 my $short = "#$ref";
51 my $msg = $param{'msg'};
52 my $att = $param{'att'};
53 my $boring = $param{'boring'} eq 'yes';
54 my $terse = $param{'terse'} eq 'yes';
55 my $reverse = $param{'reverse'} eq 'yes';
56 my $mbox = $param{'mbox'} eq 'yes';
57 my $mime = $param{'mime'} eq 'yes';
58
59 my $trim_headers = ($param{trim} || ($msg?'no':'yes')) eq 'yes';
60
61 my $mbox_status_message = $param{mboxstat} eq 'yes';
62 my $mbox_maint = $param{mboxmaint} eq 'yes';
63 $mbox = 1 if $mbox_status_message or $mbox_maint;
64
65
66 # Not used by this script directly, but fetch these so that pkgurl() and
67 # friends can propagate them correctly.
68 my $archive = $param{'archive'} eq 'yes';
69 my $repeatmerged = $param{'repeatmerged'} eq 'yes';
70
71 my $buglog = buglog($ref);
72
73 if (defined $ENV{REQUEST_METHOD} and $ENV{REQUEST_METHOD} eq 'HEAD' and not defined($att) and not $mbox) {
74     print "Content-Type: text/html; charset=utf-8\n";
75     my @stat = stat $buglog;
76     if (@stat) {
77         my $mtime = strftime '%a, %d %b %Y %T GMT', gmtime($stat[9]);
78         print "Last-Modified: $mtime\n";
79     }
80     print "\n";
81     exit 0;
82 }
83
84 sub display_entity ($$$$\$\@);
85 sub display_entity ($$$$\$\@) {
86     my $entity = shift;
87     my $ref = shift;
88     my $top = shift;
89     my $xmessage = shift;
90     my $this = shift;
91     my $attachments = shift;
92
93     my $head = $entity->head;
94     my $disposition = $head->mime_attr('content-disposition');
95     $disposition = 'inline' if not defined $disposition or $disposition eq '';
96     my $type = $entity->effective_type;
97     my $filename = $entity->head->recommended_filename;
98     $filename = '' unless defined $filename;
99     $filename = decode_rfc1522($filename);
100
101     if ($top and not $terse) {
102          my $header = $entity->head;
103          $$this .= "<pre class=\"headers\">\n";
104          if ($trim_headers) {
105               my @headers;
106               foreach (qw(From To Cc Subject Date)) {
107                    my $head_field = $head->get($_);
108                    next unless defined $head_field and $head_field ne '';
109                    push @headers, qq(<b>$_:</b> ) . html_escape(decode_rfc1522($head_field));
110               }
111               $$this .= join(qq(), @headers) unless $terse;
112          } else {
113               $$this .= html_escape(decode_rfc1522($entity->head->stringify));
114          }
115          $$this .= "</pre>\n";
116     }
117
118     unless (($top and $type =~ m[^text(?:/plain)?(?:;|$)]) or
119             ($type =~ m[^multipart/])) {
120         push @$attachments, $entity;
121         my @dlargs = ($ref, msg=>$xmessage, att=>$#$attachments);
122         push @dlargs, (filename=>$filename) if $filename ne '';
123         my $printname = $filename;
124         $printname = 'Message part ' . ($#$attachments + 1) if $filename eq '';
125         $$this .= '<pre class="mime">[<a href="' . bug_url(@dlargs) . qq{">$printname</a> } .
126                   "($type, $disposition)]</pre>\n";
127
128         if ($msg and defined($att) and $att eq $#$attachments) {
129             my $head = $entity->head;
130             chomp(my $type = $entity->effective_type);
131             my $body = $entity->stringify_body;
132             print "Content-Type: $type";
133             my ($charset) = $head->get('Content-Type:') =~ m/charset\s*=\s*\"?([\w-]+)\"?/i;
134             print qq(; charset="$charset") if defined $charset;
135             print "\n";
136             if ($filename ne '') {
137                 my $qf = $filename;
138                 $qf =~ s/"/\\"/g;
139                 $qf =~ s[.*/][];
140                 print qq{Content-Disposition: inline; filename="$qf"\n};
141             }
142             print "\n";
143             my $decoder = new MIME::Decoder($head->mime_encoding);
144             $decoder->decode(new IO::Scalar(\$body), \*STDOUT);
145             exit(0);
146         }
147     }
148
149     return if not $top and $disposition eq 'attachment' and not defined($att);
150     return unless ($type =~ m[^text/?] and
151                    $type !~ m[^text/(?:html|enriched)(?:;|$)]) or
152                   $type =~ m[^application/pgp(?:;|$)] or
153                   $entity->parts;
154
155     if ($entity->is_multipart) {
156         my @parts = $entity->parts;
157         foreach my $part (@parts) {
158             display_entity($part, $ref, 0, $xmessage,
159                            $$this, @$attachments);
160             $$this .= "\n";
161         }
162     } elsif ($entity->parts) {
163         # We must be dealing with a nested message.
164         $$this .= "<blockquote>\n";
165         my @parts = $entity->parts;
166         foreach my $part (@parts) {
167             display_entity($part, $ref, 1, $xmessage,
168                            $$this, @$attachments);
169             $$this .= "\n";
170         }
171         $$this .= "</blockquote>\n";
172     } else {
173          if (not $terse) {
174               my $content_type = $entity->head->get('Content-Type:') || "text/html";
175               my ($charset) = $content_type =~ m/charset\s*=\s*\"?([\w-]+)\"?/i;
176               my $body = $entity->bodyhandle->as_string;
177               $body = convert_to_utf8($body,$charset) if defined $charset;
178               $body = html_escape($body);
179               # Add links to URLs
180               $body =~ s,((ftp|http|https)://[\S~-]+?/?)((\&gt\;)?[)]?[']?[:.\,]?(\s|$)),<a href=\"$1\">$1</a>$3,go;
181               # Add links to bug closures
182               $body =~ s[(closes:\s*(?:bug)?\#?\s?\d+(?:,?\s*(?:bug)?\#?\s?\d+)*)
183                         ][my $temp = $1; $temp =~ s{(\d+)}{qq(<a href=").bug_url($1).qq(">$1</a>)}ge; $temp;]gxie;
184               $$this .= qq(<pre class="message">$body</pre>\n);
185          }
186     }
187 }
188
189 my %maintainer = %{getmaintainers()};
190 my %pkgsrc = %{getpkgsrc()};
191
192 my $indexentry;
193 my $showseverity;
194
195 my $tpack;
196 my $tmain;
197
198 my $dtime = strftime "%a, %e %b %Y %T UTC", gmtime;
199 $tail_html = $gHTMLTail;
200 $tail_html =~ s/SUBSTITUTE_DTIME/$dtime/;
201
202 my %status = %{get_bug_status(bug=>$ref)};
203 unless (%status) {
204     print <<EOF;
205 Content-Type: text/html; charset=utf-8
206
207 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
208 <html>
209 <head><title>$short - $gProject $gBug report logs</title></head>
210 <body>
211 <h1>$gProject $gBug report logs - $short</h1>
212 <p>There is no record of $gBug $short.
213 Try the <a href="http://$gWebDomain/">search page</a> instead.</p>
214 $tail_html</body></html>
215 EOF
216     exit 0;
217 }
218
219 $|=1;
220
221 $tpack = lc $status{'package'};
222 my @tpacks = splitpackages($tpack);
223
224 if  ($status{severity} eq 'normal') {
225         $showseverity = '';
226 } elsif (isstrongseverity($status{severity})) {
227         $showseverity = "Severity: <em class=\"severity\">$status{severity}</em>;\n";
228 } else {
229         $showseverity = "Severity: $status{severity};\n";
230 }
231
232 if (@{$status{found_versions}} or @{$status{fixed_versions}}) {
233      $indexentry.= q(<div style="float:right"><a href=").
234           version_url($status{package},
235                       $status{found_versions},
236                       $status{fixed_versions},
237                      ).
238           q("><img alt="version graph" src=").
239           version_url($status{package},
240                       $status{found_versions},
241                       $status{fixed_versions},
242                       2,
243                       2,
244                      ).qq{"></a></div>};
245 }
246
247
248 $indexentry .= "<div class=\"msgreceived\">\n";
249 $indexentry .= htmlize_packagelinks($status{package}, 0) . ";\n";
250
251 foreach my $pkg (@tpacks) {
252     my $tmaint = defined($maintainer{$pkg}) ? $maintainer{$pkg} : '(unknown)';
253     my $tsrc = defined($pkgsrc{$pkg}) ? $pkgsrc{$pkg} : '(unknown)';
254
255     $indexentry .=
256             htmlize_maintlinks(sub { $_[0] == 1 ? "Maintainer for $pkg is\n"
257                                             : "Maintainers for $pkg are\n" },
258                            $tmaint);
259     $indexentry .= ";\nSource for $pkg is\n".
260             '<a href="'.pkg_url(src=>$tsrc)."\">$tsrc</a>" if ($tsrc ne "(unknown)");
261     $indexentry .= ".\n";
262 }
263
264 $indexentry .= "<br>";
265 $indexentry .= htmlize_addresslinks("Reported by: ", \&submitterurl,
266                                 $status{originator}) . ";\n";
267 $indexentry .= sprintf "Date: %s.\n",
268                 (strftime "%a, %e %b %Y %T UTC", localtime($status{date}));
269
270 $indexentry .= "<br>Owned by: " . html_escape($status{owner}) . ".\n"
271               if length $status{owner};
272
273 $indexentry .= "</div>\n";
274
275 my @descstates;
276
277 $indexentry .= "<h3>$showseverity";
278 $indexentry .= sprintf "Tags: %s;\n", 
279                 html_escape(join(", ", sort(split(/\s+/, $status{tags}))))
280                         if length($status{tags});
281 $indexentry .= "<br>" if (length($showseverity) or length($status{tags}));
282
283 my @merged= split(/ /,$status{mergedwith});
284 if (@merged) {
285         my $descmerged = 'Merged with ';
286         my $mseparator = '';
287         for my $m (@merged) {
288                 $descmerged .= $mseparator."<a href=\"" . bug_url($m) . "\">#$m</a>";
289                 $mseparator= ",\n";
290         }
291         push @descstates, $descmerged;
292 }
293
294 if (@{$status{found_versions}}) {
295     my $foundtext = 'Found in ';
296     $foundtext .= (@{$status{found_versions}} == 1) ? 'version ' : 'versions ';
297     $foundtext .= join ', ', map html_escape($_), @{$status{found_versions}};
298     push @descstates, $foundtext;
299 }
300 if (@{$status{fixed_versions}}) {
301     my $fixedtext = '<strong>Fixed</strong> in ';
302     $fixedtext .= (@{$status{fixed_versions}} == 1) ? 'version ' : 'versions ';
303     $fixedtext .= join ', ', map html_escape($_), @{$status{fixed_versions}};
304     if (length($status{done})) {
305         $fixedtext .= ' by ' . html_escape(decode_rfc1522($status{done}));
306     }
307     push @descstates, $fixedtext;
308 }
309
310 if (@{$status{found_versions}} or @{$status{fixed_versions}}) {
311      push @descstates, '<a href="'.
312           version_url($status{package},
313                       $status{found_versions},
314                       $status{fixed_versions},
315                      ).qq{">Version Graph</a>};
316 }
317
318 if (length($status{done})) {
319     push @descstates, "<strong>Done:</strong> ".html_escape(decode_rfc1522($status{done}));
320 }
321
322 if (length($status{forwarded})) {
323     push @descstates, "<strong>Forwarded</strong> to ".maybelink($status{forwarded});
324 }
325
326
327 my @blockedby= split(/ /, $status{blockedby});
328 if (@blockedby && $status{"pending"} ne 'fixed' && ! length($status{done})) {
329     for my $b (@blockedby) {
330         my %s = %{get_bug_status($b)};
331         next if $s{"pending"} eq 'fixed' || length $s{done};
332         push @descstates, "Fix blocked by <a href=\"" . bug_url($b) . "\">#$b</a>: ".html_escape($s{subject});
333     }
334 }
335
336 my @blocks= split(/ /, $status{blocks});
337 if (@blocks && $status{"pending"} ne 'fixed' && ! length($status{done})) {
338     for my $b (@blocks) {
339         my %s = %{get_bug_status($b)};
340         next if $s{"pending"} eq 'fixed' || length $s{done};
341         push @descstates, "Blocking fix for <a href=\"" . bug_url($b) . "\">#$b</a>: ".html_escape($s{subject});
342     }
343 }
344
345 if ($buglog !~ m#^\Q$gSpoolDir/db#) {
346     push @descstates, "Bug is archived. No further changes may be made";
347 }
348
349 $indexentry .= join(";\n<br>", @descstates) . ".\n" if @descstates;
350 $indexentry .= "</h3>\n";
351
352 my $descriptivehead = $indexentry;
353
354 my $buglogfh;
355 if ($buglog =~ m/\.gz$/) {
356     my $oldpath = $ENV{'PATH'};
357     $ENV{'PATH'} = '/bin:/usr/bin';
358     $buglogfh = new IO::File "zcat $buglog |" or &quitcgi("open log for $ref: $!");
359     $ENV{'PATH'} = $oldpath;
360 } else {
361     $buglogfh = new IO::File "<$buglog" or &quitcgi("open log for $ref: $!");
362 }
363
364
365 my @records;
366 eval{
367      @records = read_log_records($buglogfh);
368 };
369 if ($@) {
370      quitcgi("Bad bug log for $gBug $ref. Unable to read records: $@");
371 }
372 undef $buglogfh;
373
374 =head2 handle_email_message
375
376      handle_email_message($record->{text},
377                           ref        => $bug_number,
378                           msg_number => $msg_number,
379                          );
380
381 Returns a decoded e-mail message and displays entities/attachments as
382 appropriate.
383
384
385 =cut
386
387 sub handle_email_message{
388      my ($email,%options) = @_;
389
390      my $output = '';
391      my $parser = new MIME::Parser;
392      # Because we are using memory, not tempfiles, there's no need to
393      # clean up here like in Debbugs::MIME
394      $parser->tmp_to_core(1);
395      $parser->output_to_core(1);
396      my $entity = $parser->parse_data( $email);
397      my @attachments = ();
398      display_entity($entity, $options{ref}, 1, $options{msg_number}, $output, @attachments);
399      return $output;
400
401 }
402
403 =head2 handle_record
404
405      push @log, handle_record($record,$ref,$msg_num);
406
407 Deals with a record in a bug log as returned by
408 L<Debbugs::Log::read_log_records>; returns the log information that
409 should be output to the browser.
410
411 =cut
412
413 sub handle_record{
414      my ($record,$bug_number,$msg_number,$seen_msg_ids) = @_;
415
416      my $output = '';
417      local $_ = $record->{type};
418      if (/html/) {
419           my $class = $record->{text} =~ /^<strong>(?:Acknowledgement|Reply|Information|Report|Notification)/ ? 'infmessage':'msgreceived';
420           $output .= decode_rfc1522($record->{text});
421           # Link to forwarded http:// urls in the midst of the report
422           # (even though these links already exist at the top)
423           $output =~ s,((?:ftp|http|https)://[\S~-]+?/?)([\)\'\:\.\,]?(?:\s|\.<|$)),<a href=\"$1\">$1</a>$2,go;
424           # Add links to the cloned bugs
425           $output =~ s{(Bug )(\d+)( cloned as bugs? )(\d+)(?:\-(\d+)|)}{$1.bug_links($2).$3.bug_links($4,$5)}eo;
426           # Add links to merged bugs
427           $output =~ s{(?<=Merged )([\d\s]+)(?=\.)}{join(' ',map {bug_links($_)} (split /\s+/, $1))}eo;
428           # Add links to blocked bugs
429           $output =~ s{(?<=Blocking bugs)(?:( of )(\d+))?( (?:added|set to|removed):\s+)([\d\s\,]+)}
430                       {(defined $2?$1.bug_links($2):'').$3.
431                             join(' ',map {bug_links($_)} (split /\,?\s+/, $4))}eo;
432           # Add links to reassigned packages
433           $output =~ s{(Bug reassigned from package \`)([^\']+)(' to \`)([^\']+)(')}
434           {$1.q(<a href=").pkg_url(pkg=>$2).qq(">$2</a>).$3.q(<a href=").pkg_url(pkg=>$4).qq(">$4</a>).$5}eo;
435           $output .= '<a href="' . bug_url($ref, msg => ($msg_number+1)) . '">Full text</a> and <a href="' .
436                bug_url($ref, msg => ($msg_number+1), mbox => 'yes') . '">rfc822 format</a> available.';
437
438           $output = qq(<div class="$class"><hr>\n<a name="$msg_number"></a>\n) . $output . "</div>\n";
439      }
440      elsif (/recips/) {
441           my ($msg_id) = $record->{text} =~ /^Message-Id:\s+<(.+)>/im;
442           if (defined $msg_id and exists $$seen_msg_ids{$msg_id}) {
443                return ();
444           }
445           elsif (defined $msg_id) {
446                $$seen_msg_ids{$msg_id} = 1;
447           }
448           $output .= qq(<hr><p class="msgreceived"><a name="$msg_number"></a>\n);
449           $output .= 'View this message in <a href="' . bug_url($ref, msg=>$msg_number, mbox=>'yes') . '">rfc822 format</a></p>';
450           $output .= handle_email_message($record->{text},
451                                     ref        => $bug_number,
452                                     msg_number => $msg_number,
453                                    );
454      }
455      elsif (/autocheck/) {
456           # Do nothing
457      }
458      elsif (/incoming-recv/) {
459           my ($msg_id) = $record->{text} =~ /^Message-Id:\s+<(.+)>/im;
460           if (defined $msg_id and exists $$seen_msg_ids{$msg_id}) {
461                return ();
462           }
463           elsif (defined $msg_id) {
464                $$seen_msg_ids{$msg_id} = 1;
465           }
466           # Incomming Mail Message
467           my ($received,$hostname) = $record->{text} =~ m/Received: \(at (\S+)\) by (\S+)\;/;
468           $output .= qq|<hr><p class="msgreceived"><a name="$msg_number"></a><a name="msg$msg_number">Message received</a> at |.
469                html_escape("$received\@$hostname") . q| (<a href="| . bug_url($ref, msg=>$msg_number) . '">full text</a>'.q|, <a href="| . bug_url($ref, msg=>$msg_number,mbox=>'yes') .'">mbox</a>)'.":</p>\n";
470           $output .= handle_email_message($record->{text},
471                                     ref        => $bug_number,
472                                     msg_number => $msg_number,
473                                    );
474      }
475      else {
476           die "Unknown record type $_";
477      }
478      return $output;
479 }
480
481 my $log='';
482 my $msg_num = 0;
483 my $skip_next = 0;
484 if (looks_like_number($msg) and ($msg-1) <= $#records) {
485      @records = ($records[$msg-1]);
486      $msg_num = $msg - 1;
487 }
488 my @log;
489 if ( $mbox ) {
490      my $date = strftime "%a %b %d %T %Y", localtime;
491      if (@records > 1) {
492           print qq(Content-Disposition: attachment; filename="bug_${ref}.mbox"\n);
493           print "Content-Type: text/plain\n\n";
494      }
495      else {
496           $msg_num++;
497           print qq(Content-Disposition: attachment; filename="bug_${ref}_message_${msg_num}.mbox"\n);
498           print "Content-Type: message/rfc822\n\n";
499      }
500      if ($mbox_status_message and @records > 1) {
501           my $status_message='';
502           my @status_fields = (retitle   => 'subject',
503                                package   => 'package',
504                                submitter => 'originator',
505                                severity  => 'severity',
506                                tag       => 'tags',
507                                owner     => 'owner',
508                                blocks    => 'blocks',
509                                forward   => 'forward',
510                               );
511           my ($key,$value);
512           while (($key,$value) = splice(@status_fields,0,2)) {
513                if (defined $status{$value} and length $status{$value}) {
514                     $status_message .= qq($key $ref $status{$value}\n);
515                }
516           }
517           print STDOUT qq(From unknown $date\n),
518                create_mime_message([From       => "$gBug#$ref <$ref\@$gEmailDomain>",
519                                     To         => "$gBug#$ref <$ref\@$gEmailDomain>",
520                                     Subject    => "Status: $status{subject}",
521                                     "Reply-To" => "$gBug#$ref <$ref\@$gEmailDomain>",
522                                    ],
523                                    <<END,);
524 $status_message
525 thanks
526
527
528 END
529      }
530      my $message_number=0;
531      my %seen_message_ids;
532      for my $record (@records) {
533           next if $record->{type} !~ /^(?:recips|incoming-recv)$/;
534           my $wanted_type = $mbox_maint?'recips':'incoming-recv';
535           # we want to include control messages anyway
536           my $record_wanted_anyway = 0;
537           my ($msg_id) = $record->{text} =~ /^Message-Id:\s+<(.+)>/im;
538           next if exists $seen_message_ids{$msg_id};
539           next if $msg_id =~/handler\..+\.ack(?:info|done)?\@/;
540           $record_wanted_anyway = 1 if $record->{text} =~ /^Received: \(at control\)/;
541           next if not $boring and not $record->{type} eq $wanted_type and not $record_wanted_anyway and @records > 1;
542           $seen_message_ids{$msg_id} = 1;
543           my @lines = split( "\n", $record->{text}, -1 );
544           if ( $lines[ 1 ] =~ m/^From / ) {
545                my $tmp = $lines[ 0 ];
546                $lines[ 0 ] = $lines[ 1 ];
547                $lines[ 1 ] = $tmp;
548           }
549           if ( !( $lines[ 0 ] =~ m/^From / ) ) {
550                unshift @lines, "From unknown $date";
551           }
552           map { s/^(>*From )/>$1/ } @lines[ 1 .. $#lines ];
553           print join( "\n", @lines ) . "\n";
554      }
555      exit 0;
556 }
557
558 else {
559      my %seen_msg_ids;
560      for my $record (@records) {
561           $msg_num++;
562           if ($skip_next) {
563                $skip_next = 0;
564                next;
565           }
566           $skip_next = 1 if $record->{type} eq 'html' and not $boring;
567           push @log, handle_record($record,$ref,$msg_num,\%seen_msg_ids);
568      }
569 }
570
571 @log = reverse @log if $reverse;
572 $log = join("\n",@log);
573
574
575 print "Content-Type: text/html; charset=utf-8\n\n";
576
577 my $title = html_escape($status{subject});
578
579 my $dummy2 = $gWebHostBugDir;
580
581 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
582 print <<END;
583 <HTML><HEAD>
584 <TITLE>$short - $title - $gProject $gBug report logs</TITLE>
585 <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
586 <link rel="stylesheet" href="$gWebHostBugDir/css/bugs.css" type="text/css">
587 <script type="text/javascript">
588 <!--
589 function toggle_infmessages()
590 {
591         allDivs=document.getElementsByTagName("div");
592         for (var i = 0 ; i < allDivs.length ; i++ )
593         {
594                 if (allDivs[i].className == "infmessage")
595                 {
596                         allDivs[i].style.display=(allDivs[i].style.display == 'none') ? 'block' : 'none';
597                 }
598         }
599 }
600 -->
601 </script>
602 </HEAD>
603 <BODY>
604 END
605 print "<H1>" . "$gProject $gBug report logs - <A HREF=\"mailto:$ref\@$gEmailDomain\">$short</A>" .
606       "<BR>" . $title . "</H1>\n";
607 print "$descriptivehead\n";
608
609 if (looks_like_number($msg)) {
610      printf qq(<p><a href="%s">Full log</a></p>),html_escape(bug_url($ref));
611 }
612 else {
613      print qq(<p><a href="mailto:$ref\@$gEmailDomain">Reply</a> ),
614           qq(or <a href="mailto:$ref-subscribe\@$gEmailDomain">subscribe</a> ),
615                qq(to this bug.</p>\n);
616      print qq(<p><a href="javascript:toggle_infmessages();">Toggle useless messages</a></p>);
617      printf qq(<div class="msgreceived"><p>View this report as an <a href="%s">mbox folder</a>, ).
618           qq(<a href="%s">status mbox</a>, <a href="%s">maintainer mbox</a></p></div>\n),
619                html_escape(bug_url($ref, mbox=>'yes')),
620                     html_escape(bug_url($ref, mbox=>'yes',mboxstatus=>'yes')),
621                          html_escape(bug_url($ref, mbox=>'yes',mboxmaint=>'yes'));
622 }
623 print "$log";
624 print "<HR>";
625 print "<p class=\"msgreceived\">Send a report that <a href=\"/cgi-bin/bugspam.cgi?bug=$ref\">this bug log contains spam</a>.</p>\n<HR>\n";
626 print $tail_html;
627
628 print "</BODY></HTML>\n";
629
630 exit 0;