mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
207 lines
5.6 KiB
Perl
Executable File
207 lines
5.6 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.0 (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.
|
|
|
|
use lib "../bonsai";
|
|
use Fcntl;
|
|
|
|
require "tbglobals.pl";
|
|
require 'lloydcgi.pl';
|
|
|
|
if (defined($args = $form{log})) {
|
|
|
|
($tree, $logfile) = split /\//, $args;
|
|
|
|
my $br = find_build_record($tree, $logfile);
|
|
$errorparser = $br->{errorparser};
|
|
$buildname = $br->{buildname};
|
|
$buildtime = $br->{buildtime};
|
|
} else {
|
|
$tree = $form{'tree'};
|
|
$logfile = $form{'logfile'};
|
|
$errorparser = $form{'errorparser'};
|
|
$buildname = $form{'buildname'};
|
|
$buildtime = $form{'buildtime'};
|
|
}
|
|
|
|
$enc_buildname = &url_encode($buildname);
|
|
|
|
$note = $form{'note'};
|
|
$who = $form{'who'};
|
|
|
|
$now = time;
|
|
$now_str = &print_time($now);
|
|
|
|
$|=1;
|
|
|
|
if( -r "$tree/ignorebuilds.pl" ){
|
|
require "$tree/ignorebuilds.pl";
|
|
}
|
|
|
|
print "Content-Type:text/html\n";
|
|
if ($ENV{"REQUEST_METHOD"} eq 'POST' && defined($form{'note'})) {
|
|
# Expire the cookie 5 months from now
|
|
print "Set-Cookie: email=$form{who}; expires="
|
|
. toGMTString(time + 86400 * 152) . "; path=/\n";
|
|
}
|
|
print "\n<HTML>\n";
|
|
|
|
if( $url = $form{"note"} ){
|
|
|
|
$note =~ s/\&/&/gi;
|
|
$note =~ s/\</</gi;
|
|
$note =~ s/\>/>/gi;
|
|
$enc_note = url_encode( $note );
|
|
|
|
open( NOTES,">>$tree/notes.txt");
|
|
flock(NOTES, LOCK_EX);
|
|
print NOTES "$buildtime|$buildname|$who|$now|$enc_note\n";
|
|
|
|
&LoadBuildTable;
|
|
|
|
foreach $element (keys %form) {
|
|
|
|
if(exists ${$build_name_index}{$element}) {
|
|
print NOTES "${$build_name_index}{$element}|$element|$who|$now|$enc_note\n";
|
|
} #EndIf
|
|
} #Endforeach
|
|
close(NOTES);
|
|
|
|
print "<H1>The following comment has been added to the log</h1>\n";
|
|
|
|
#print "$buildname \n $buildtime \n $errorparser \n $logfile \n $tree \n $enc_buildname \n";
|
|
print "<pre>\n[<b>$who - $now_str</b>]\n$note\n</pre>";
|
|
|
|
print"
|
|
<p><a href=\"showlog.cgi?tree=$tree\&buildname=$enc_buildname\&buildtime=$buildtime\&logfile=$logfile\&errorparser=$errorparser\">
|
|
Go back to the Error Log</a>
|
|
<a href=\"showbuilds.cgi?tree=$tree\">
|
|
<br>Go back to the build Page</a>";
|
|
|
|
# Build tinderbox static pages
|
|
$ENV{QUERY_STRING}="tree=$tree&static=1";
|
|
$ENV{REQUEST_METHOD}="GET";
|
|
system './showbuilds.cgi >/dev/null';
|
|
|
|
} else {
|
|
|
|
&GetBuildNameIndex;
|
|
|
|
@names = sort (keys %$build_name_index);
|
|
|
|
if ($buildname eq '' || $buildtime == 0) {
|
|
print "<h1>Invalid parameters</h1>\n";
|
|
die "\n";
|
|
}
|
|
|
|
#print "$buildname \n $buildtime \n $errorparser \n $logfile \n $tree \n $enc_buildname \n";
|
|
|
|
$emailvalue = '';
|
|
$emailvalue = " value='$cookie_jar{email}'" if defined($cookie_jar{email});
|
|
|
|
print qq(
|
|
<head><title>Add a Comment to $buildname log</title></head>
|
|
<body BGCOLOR="#FFFFFF" TEXT="#000000"LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000">
|
|
|
|
<table><tr><td>
|
|
<b><font size="+2">Add a Log Comment</font></b>
|
|
</td></tr><tr><td>
|
|
<b><code>$buildname</code></b>
|
|
</td></tr></table>
|
|
|
|
<form action='addnote.cgi' METHOD='post'>
|
|
|
|
<INPUT Type='hidden' name='buildname' value='${buildname}'>
|
|
<INPUT Type='hidden' name='buildtime' value='${buildtime}'>
|
|
<INPUT Type='hidden' name='errorparser' value='$errorparser'>
|
|
<INPUT Type='hidden' name='logfile' value='$logfile'>
|
|
<INPUT Type='hidden' name='tree' value='$tree'>
|
|
|
|
<table border=0 cellpadding=4 cellspacing=1>
|
|
<tr valign=top>
|
|
<td align=right>
|
|
<NOWRAP>Email address:</NOWRAP>
|
|
</td><td>
|
|
<INPUT Type='input' name='who' size=32$emailvalue><BR>
|
|
</td>
|
|
</tr><tr valign=top>
|
|
<td align=right>
|
|
Comment:
|
|
</td><td>
|
|
<TEXTAREA NAME=note ROWS=10 COLS=30 WRAP=HARD></textarea>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br><b><font size="+2">Addition Builds</font></b><br>
|
|
(Comment will be added to the most recent cycle.)<br>
|
|
);
|
|
|
|
for $other_build (@names){
|
|
if( $other_build ne "" ){
|
|
|
|
if (not exists ${$ignore_builds}{$other_build}) {
|
|
if( $other_build ne $buildname ){
|
|
print "<INPUT TYPE=checkbox NAME=\"$other_build\">";
|
|
print "$other_build<BR>\n";
|
|
}
|
|
} #EndIf
|
|
}
|
|
} #Endfor
|
|
|
|
print "<INPUT Type='submit' name='submit' value='Add Comment'><BR>
|
|
</form>\n</body>\n</html>";
|
|
}
|
|
|
|
sub GetBuildNameIndex {
|
|
local($mailtime, $buildtime, $buildname, $errorparser, $buildstatus, $logfile, $binaryname);
|
|
|
|
open(BUILDLOG, "$tree/build.dat") or die "Couldn't open build.dat: $!\n";
|
|
|
|
while(<BUILDLOG>) {
|
|
chomp;
|
|
($mailtime, $buildtime, $buildname, $errorparser, $buildstatus, $logfile, $binaryname) =
|
|
split( /\|/ );
|
|
|
|
$build_name_index->{$buildname} = 0;
|
|
|
|
} #EndWhile
|
|
close(BUILDLOG);
|
|
|
|
}
|
|
|
|
|
|
sub LoadBuildTable {
|
|
local($mailtime, $buildtime, $buildname, $errorparser, $buildstatus, $logfile, $binaryname);
|
|
|
|
open(BUILDLOG, "$tree/build.dat") or die "Couldn't open build.dat: $!\n";
|
|
|
|
while(<BUILDLOG>) {
|
|
chomp;
|
|
($mailtime, $buildtime, $buildname, $errorparser, $buildstatus, $logfile, $binaryname) =
|
|
split( /\|/ );
|
|
|
|
if ($buildtime > $build_name_index->{$buildname} ) {
|
|
$build_name_index->{$buildname} = $buildtime;
|
|
}
|
|
|
|
} #EndWhile
|
|
close(BUILDLOG);
|
|
|
|
}
|
|
|