mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
109e63ad8f
Thanks to Josh Soref <timeless@bemail.org> for the original patch. Bug #321336 r=bear
201 lines
5.7 KiB
Perl
Executable File
201 lines
5.7 KiB
Perl
Executable File
#!/usr/bonsaitools/bin/perl --
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
#
|
|
# The contents of this file are subject to the Netscape Public
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
# implied. See the License for the specific language governing
|
|
# rights and limitations under the License.
|
|
#
|
|
# The Original Code is the Tinderbox build tool.
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
|
# Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
|
|
require "tbglobals.pl";
|
|
require 'header.pl';
|
|
|
|
use Date::Parse;
|
|
use Date::Format;
|
|
|
|
my $TIMEFORMAT = "%D %T";
|
|
|
|
# Process the form arguments
|
|
%form = ();
|
|
&split_cgi_args();
|
|
|
|
$| = 1;
|
|
|
|
print "Content-type: text/html\n\n<HTML>\n";
|
|
|
|
my $tree = $form{'tree'};
|
|
my $start = $form{'start'};
|
|
my $end = $form{'end'};
|
|
|
|
sub str2timeAndCheck {
|
|
my ($str) = (@_);
|
|
my $result = str2time($str);
|
|
if (defined $result && $result > 7000000) {
|
|
return $result;
|
|
}
|
|
print "<p><font color=red>Can't parse as a date: $str</font><p>\n";
|
|
return 0;
|
|
}
|
|
|
|
if ($form{terse}) {
|
|
|
|
if (defined $tree && defined $start && defined $end) {
|
|
my $first = str2timeAndCheck($start);
|
|
my $last = str2timeAndCheck($end);
|
|
if ($first > 0 && $last > 0) {
|
|
if (open(IN, "<", "$tree/notes.txt")) {
|
|
my %stats;
|
|
while (<IN>) {
|
|
chop;
|
|
my ($nbuildtime,$nbuildname,$nwho,$nnow,$nenc_note)
|
|
= split /\|/;
|
|
if ($nnow >= $first && $nnow <= $last) {
|
|
my $note = &url_decode($nenc_note);
|
|
$nbuildtime = print_time($nbuildtime);
|
|
$nnow = print_time($nnow);
|
|
print "$nbuildname ";
|
|
print "$nwho ";
|
|
print "$note ";
|
|
print "\n";
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
print "There does not appear to be a tree " .
|
|
"named '$tree'.";
|
|
}
|
|
}
|
|
|
|
} elsif ($form{text}) {
|
|
|
|
my $header = "<PRE>\nBuild Time\t\tBuild Name\t\t\tWho\t\t\tNote Time\t\t\tNote\n" .
|
|
"----------------------------------------------------------------------------------------------------------------------------\n";
|
|
|
|
if (defined $tree && defined $start && defined $end) {
|
|
my $first = str2timeAndCheck($start);
|
|
my $last = str2timeAndCheck($end);
|
|
if ($first > 0 && $last > 0) {
|
|
if (open(IN, "<", "$tree/notes.txt")) {
|
|
print "<PRE>Notes for $tree\n\nfrom " .
|
|
time2str($TIMEFORMAT, $first) . " to " .
|
|
time2str($TIMEFORMAT, $last) . "\n</PRE>";
|
|
my %stats;
|
|
print "$header\n";
|
|
while (<IN>) {
|
|
chop;
|
|
my ($nbuildtime,$nbuildname,$nwho,$nnow,$nenc_note)
|
|
= split /\|/;
|
|
if ($nnow >= $first && $nnow <= $last) {
|
|
my $note = &url_decode($nenc_note);
|
|
$nbuildtime = print_time($nbuildtime);
|
|
$nnow = print_time($nnow);
|
|
print "$nbuildtime\t";
|
|
print "$nbuildname\t";
|
|
print "$nwho\t";
|
|
print "$nnow\t\t";
|
|
print "$note\t";
|
|
print "\n";
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
print "<p><font color=red>There does not appear to be a tree " .
|
|
"named '$tree'.</font><p>";
|
|
}
|
|
}
|
|
print "\n</PRE>";
|
|
|
|
} else {
|
|
|
|
my $header = "<table border=1><th>Build time</th><th>Build name</th><th>Who</th><th>Note time</th><th>Note</th>";
|
|
|
|
if (defined $tree && defined $start && defined $end) {
|
|
my $first = str2timeAndCheck($start);
|
|
my $last = str2timeAndCheck($end);
|
|
if ($first > 0 && $last > 0) {
|
|
if (open(IN, "<", "$tree/notes.txt")) {
|
|
print "<hr><center><h1>Notes for $tree</H1><H3>from " .
|
|
time2str($TIMEFORMAT, $first) . " to " .
|
|
time2str($TIMEFORMAT, $last) . "</H3></center>\n";
|
|
my %stats;
|
|
print "$header\n";
|
|
while (<IN>) {
|
|
chop;
|
|
my ($nbuildtime,$nbuildname,$nwho,$nnow,$nenc_note)
|
|
= split /\|/;
|
|
if ($nnow >= $first && $nnow <= $last) {
|
|
my $note = &url_decode($nenc_note);
|
|
$nbuildtime = print_time($nbuildtime);
|
|
$nnow = print_time($nnow);
|
|
print "<tr>";
|
|
print "<td>$nbuildtime</td>";
|
|
print "<td>$nbuildname</td>";
|
|
print "<td>$nwho</td>";
|
|
print "<td>$nnow</td>";
|
|
print "<td>$note</td>";
|
|
print "</tr>\n";
|
|
if (++$count % 100 == 0) {
|
|
print "</table>$header\n";
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
} else {
|
|
print "<p><font color=red>There does not appear to be a tree " .
|
|
"named '$tree'.</font><p>";
|
|
}
|
|
}
|
|
print "</table>\n";
|
|
}
|
|
}
|
|
|
|
|
|
if (!defined $tree) {
|
|
$tree = "";
|
|
}
|
|
|
|
if (!defined $start) {
|
|
$start = time2str($TIMEFORMAT, time() - 7*24*60*60); # One week ago.
|
|
}
|
|
|
|
|
|
if (!defined $end) {
|
|
$end = time2str($TIMEFORMAT, time()); # #now
|
|
}
|
|
|
|
print qq|
|
|
<form>
|
|
<table>
|
|
<tr>
|
|
<th align=right>Tree:</th>
|
|
<td><input name=tree size=30 value="$tree"></td>
|
|
</tr>
|
|
<tr>
|
|
<th align=right>Start time:</th>
|
|
<td><input name=start size=30 value="$start"></td>
|
|
</tr>
|
|
<tr>
|
|
<th align=right>End time:</th>
|
|
<td><input name=end size=30 value="$end"></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<INPUT TYPE=\"submit\" VALUE=\"View Notes \">
|
|
|
|
</form>
|
|
|;
|