+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-
-use Digest::SHA1 qw(sha1_hex);
-use MIME::Base64;
-use DBI;
-use DBD::Pg;
-use Data::Dumper;
-use Mail::Send;
-use Safe;
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport
- $all_stat $fail_stat $change_stat $green_stat
-);
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-die "no dbname" unless $dbname;
-die "no dbuser" unless $dbuser;
-
-# don't use configged dbuser/dbpass
-
-$dbuser=""; $dbpass="";
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-my $db = DBI->connect($dsn,$dbuser,$dbpass);
-
-die $DBI::errstr unless $db;
-
-my $clear_old = $db->do(q[
-
- DELETE FROM alerts
- WHERE sysname IN
- (SELECT name FROM buildsystems WHERE no_alerts)
- ]);
-
-
-my $sth = $db->prepare(q[
-
- SELECT DISTINCT ON (sysname, branch)
- sysname, branch,
- extract(epoch from snapshot at time zone 'GMT')::int as snapshot,
- conf_sum as config
- FROM build_status s join buildsystems b on (s.sysname = b.name)
- WHERE NOT b.no_alerts and
- snapshot > current_timestamp - interval '30 days'
- ORDER BY sysname, branch, snapshot desc
-
- ]);
-
-$sth->execute;
-
-my @last_heard;
-
-while (my $row = $sth->fetchrow_hashref)
-{
- push(@last_heard, $row);
-}
-
-$sth->finish;
-
-my $sql = q[
-
- SELECT sysname, branch,
- extract(epoch from first_alert) as first_alert,
- extract(epoch from last_notification) as last_notification
- FROM alerts
-
- ];
-
-my $alerts = $db->selectall_hashref($sql,['sysname','branch']);
-
-my @need_cleared;
-my @need_alerts;
-
-my $clear_sth = $db->prepare(q[
-
- DELETE FROM alerts
- WHERE sysname = ?
- AND branch = ?
- ]);
-
-my $update_sth = $db->prepare(q[
-
- UPDATE alerts
- SET last_notification = timestamp '1970-01-01' + ( interval '1 second' * $1)
- WHERE sysname = $2
- AND branch = $3
- ]);
-
-my $insert_sth = $db->prepare(q[
-
- INSERT INTO alerts ( sysname, branch, first_alert, last_notification )
- VALUES ($1, $2,
- timestamp '1970-01-01' + ( interval '1 second' * $3),
- timestamp '1970-01-01' + ( interval '1 second' * $4))
- ]);
-
-
-my $now = time;
-my $lts = scalar(localtime);
-print "starting alert run: $lts\n";
-
-foreach my $sysbranch (@last_heard)
-{
- # eval the config in a Safe container to protect ourselves
- my $container = new Safe;
- my $sconf = $sysbranch->{config};
- unless ($sconf =~ s/.*(\$Script_Config)/$1/ms )
- {
- $sconf = '$Script_Config={};';
- }
- my $client_conf = $container->reval("$sconf;");
-
- my %client_alert_settings = %{ $client_conf->{alerts} || {} };
- my $setting = $client_alert_settings{$sysbranch->{branch}};
- unless ($setting && $setting->{alert_after} && $setting->{alert_every})
- {
- # if no valid setting, clear any alert and keep going
- if ($alerts->{$sysbranch->{sysname}}->{$sysbranch->{branch}})
- {
- $clear_sth->execute($sysbranch->{sysname},$sysbranch->{branch});
- push(@need_cleared,[$sysbranch]);
- }
- next;
- }
- # ok, we have valid settings. should the alert be on?
- my $hours_since_heard = ($now - $sysbranch->{snapshot}) / 3600;
- # yep
- print
- "have settings for $sysbranch->{sysname}:$sysbranch->{branch} ",
- "hours since heard = $hours_since_heard, ",
- "setting = $setting->{alert_after} / $setting->{alert_every} \n";
-
- if ($hours_since_heard > $setting->{alert_after})
- {
- my $known_alert =
- $alerts->{$sysbranch->{sysname}}->{$sysbranch->{branch}};
- if ($known_alert &&
- ($now - (3600 * $setting->{alert_every})) >
- $known_alert->{last_notification})
- {
- # check if it's too old - 15 days and twice initial seems plenty
- if ($hours_since_heard > 360 &&
- $hours_since_heard > 2 * $setting->{alert_after} )
- {
- print "alert is too old ... giving up\n";
- next;
- }
-
- # old alert, but time to alert again
- print "alert is on, but time to alert again\n";
- $update_sth->execute($now,
- $sysbranch->{sysname},
- $sysbranch->{branch},
- );
- push(@need_alerts,[$sysbranch,$setting]);
- print "alert updated\n";
- }
- elsif ( ! $known_alert )
- {
- # new alert
- print "new alert needed\n";
- $insert_sth->execute($sysbranch->{sysname},
- $sysbranch->{branch},
- $now,$now);
- print "new record inserted\n";
- push(@need_alerts,[$sysbranch,$setting]);
- }
- }
- # nope, so clear the alert if it exists
- elsif ($alerts->{$sysbranch->{sysname}}->{$sysbranch->{branch}})
- {
- print "clear exisiting alerts";
- $clear_sth->execute($sysbranch->{sysname},$sysbranch->{branch});
- push(@need_cleared,[$sysbranch,$setting]);
- }
-
-}
-
-print "start emails\n";
-
-my $addr_sth = $db->prepare(q[
-
- SELECT owner_email
- FROM buildsystems
- WHERE name = ?
- ]);
-
-
-my $me = `id -un`; chomp $me;
-
-my $host = `hostname`; chomp $host;
-
-
-
-foreach my $clearme (@need_cleared)
-{
- my ($sysbranch, $setting) = @$clearme;
- my ($animal, $branch) = ($sysbranch->{sysname},$sysbranch->{branch});
- my $text;
- if ($setting)
- {
- my $hours = sprintf("%.2f",($now - $sysbranch->{snapshot}) / 3600);
- $text = "$sysbranch->{sysname} has now reported " .
- "on $sysbranch->{branch} $hours hours ago.";
- }
- else
- {
- $text = "$sysbranch->{sysname} has lost alarm settings on branch: " .
- "$sysbranch->{branch}. Resetting alarm to off.";
- }
- my $msg = new Mail::Send;
-
- $msg->set('From',"PG Build Farm <$me\@$host>");
-
- $addr_sth->execute($animal);
-
- my $mailto = $addr_sth->fetchrow_array;
-
- print "sending clear to $mailto\n";
-
- # $sth->finish;
-
- $msg->to($mailto);
- $msg->subject("PGBuildfarm member $animal Branch $branch Alert cleared");
- my $fh = $msg->open;
- print $fh "\n\n$text\n";
- $fh->close;
-
- print "alert cleared $animal $branch\n";
-}
-
-foreach my $clearme (@need_alerts)
-{
- my ($sysbranch, $setting) = @$clearme;
- my ($animal, $branch) = ($sysbranch->{sysname},$sysbranch->{branch});
- my $hours = sprintf("%.2f",($now - $sysbranch->{snapshot}) / 3600);
- my $text = "$sysbranch->{sysname} has not reported " .
- "on $sysbranch->{branch} for $hours hours.";
- my $msg = new Mail::Send;
-
- $msg->set('From',"PG Build Farm <$me\@$host>");
-
- $addr_sth->execute($animal);
-
- my ($mailto) = $addr_sth->fetchrow_array;
-
- # $sth->finish;
-
- print "sending alert to $mailto\n";
-
- $msg->to($mailto);
-
- $msg->subject("PGBuildfarm member $animal Branch $branch " .
- "Alert notification");
- my $fh = $msg->open;
- print $fh "\n\n$text\n";
- $fh->close;
-
- print "alert sent $animal $branch\n";
-}
-
-
-print "=================================\n";
-
-
-
+++ /dev/null
-SetEnv BFConfDir /home/community/pgbuildfarm
-SetEnv BF_DEBUG on
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-
-use CGI;
-use Digest::SHA1 qw(sha1_hex);
-use MIME::Base64;
-use DBI;
-use DBD::Pg;
-use Data::Dumper;
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport);
-
-my $query = new CGI;
-
-my $sig = $query->path_info;
-$sig =~ s!^/!!;
-
-my $animal = $query->param('animal');
-my $sysnotes = $query->param('sysnotes');
-
-my $content = "animal=$animal\&sysnotes=$sysnotes";
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-die "no dbname" unless $dbname;
-die "no dbuser" unless $dbuser;
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-unless ($animal && defined($sysnotes) && $sig)
-{
- print
- "Status: 490 bad parameters\nContent-Type: text/plain\n\n",
- "bad parameters for request\n";
- exit;
-
-}
-
-
-my $db = DBI->connect($dsn,$dbuser,$dbpass);
-
-die $DBI::errstr unless $db;
-
-my $gethost=
- "select secret from buildsystems where name = ? and status = 'approved'";
-my $sth = $db->prepare($gethost);
-$sth->execute($animal);
-my ($secret)=$sth->fetchrow_array();
-$sth->finish;
-
-
-unless ($secret)
-{
- print
- "Status: 495 Unknown System\nContent-Type: text/plain\n\n",
- "System $animal is unknown\n";
- $db->disconnect;
- exit;
-
-}
-
-
-
-
-my $calc_sig = sha1_hex($content,$secret);
-
-if ($calc_sig ne $sig)
-{
-
- print "Status: 450 sig mismatch\nContent-Type: text/plain\n\n";
- print "$sig mismatches $calc_sig on content:\n$content";
- $db->disconnect;
- exit;
-}
-
-# undo escape-proofing of base64 data and decode it
-map {tr/$@/+=/; $_ = decode_base64($_); }
- ($sysnotes);
-
-my $set_notes = q{
-
- update buildsystems
- set sys_notes = nullif($2,''),
- sys_notes_ts = case
- when coalesce($2,'') <> '' then now()
- else null
- end
- where name = $1
- and status = 'approved'
-
-};
-
-$sth = $db->prepare($set_notes);
-my $rv = $sth->execute($animal,$sysnotes);
-unless($rv)
-{
- print "Status: 460 old data fetch\nContent-Type: text/plain\n\n";
- print "error: ",$db->errstr,"\n";
- $db->disconnect;
- exit;
-}
-
-$sth->finish;
-
-
-
-$db->disconnect;
-
-print "Content-Type: text/plain\n\n";
-print "request was on:\n$content\n";
-
-
-
+++ /dev/null
-#!/usr/bin/perl
-
-print "Contect-Type: text/plain\n\n";
-
-print "Conf: $ENV{BFConfDir}\n";
-
-print `pwd`;
-
-print `id`;
-
-foreach my $key (sort keys %ENV)
-{
- my $val = $ENV{$key};
- print "$key=$val\n";
-}
+++ /dev/null
-#!/usr/bin/perl
-
-use lib "/home/community/pgbuildfarm/lib/lib/perl5/site_perl";
-
-use SOAP::Lite +trace;
-
-my $obj = SOAP::Lite
- ->uri('http://www.pgbuildfarm.org/PGBuildFarm')
- ->proxy('http://127.0.0.1/cgi-bin/show_status_soap.pl')
- ->request->header("Host" => "www.pgbuildfarm.org")
- ;
-
-my $data = $obj->get_status->result;
-my @fields = qw( branch sysname stage status
- operating_system os_version
- compiler compiler_version architecture
- when_ago snapshot build_flags
- );
-
-print "Content-Type: text/plain\n\n";
-
-my $head = join (' | ', @fields);
-print $head,"\n";
-
-foreach my $datum (@$data)
-{
- my $line = join (' | ', @{$datum}{@fields});
- print $line,"\n";
-}
-
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport
- $all_stat $fail_stat $change_stat $green_stat
- $server_time
- $min_script_version $min_web_script_version
-);
-
-# force this before we do anything - even load modules
-BEGIN { $server_time = time; }
-
-use CGI;
-use Digest::SHA1 qw(sha1_hex);
-use MIME::Base64;
-use DBI;
-use DBD::Pg;
-use Data::Dumper;
-use Mail::Send;
-use Safe;
-use Time::ParseDate;
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-die "no dbname" unless $dbname;
-die "no dbuser" unless $dbuser;
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-my $query = new CGI;
-
-my $sig = $query->path_info;
-$sig =~ s!^/!!;
-
-my $stage = $query->param('stage');
-my $ts = $query->param('ts');
-my $animal = $query->param('animal');
-my $log = $query->param('log');
-my $res = $query->param('res');
-my $conf = $query->param('conf');
-my $branch = $query->param('branch');
-my $changed_since_success = $query->param('changed_since_success');
-my $changed_this_run = $query->param('changed_files');
-my $log_archive = $query->param('logtar');
-
-my $content =
- "branch=$branch&res=$res&stage=$stage&animal=$animal&".
- "ts=$ts&log=$log&conf=$conf";
-
-my $extra_content =
- "changed_files=$changed_this_run&".
- "changed_since_success=$changed_since_success&";
-
-unless ($animal && $ts && $stage && $sig)
-{
- print
- "Status: 490 bad parameters\nContent-Type: text/plain\n\n",
- "bad parameters for request\n";
- exit;
-
-}
-
-unless ($branch =~ /^(HEAD|REL\d+_\d+_STABLE)$/)
-{
- print
- "Status: 492 bad branch parameter $branch\nContent-Type: text/plain\n\n",
- "bad branch parameter $branch\n";
- exit;
-
-}
-
-
-my $db = DBI->connect($dsn,$dbuser,$dbpass);
-
-die $DBI::errstr unless $db;
-
-my $gethost=
- "select secret from buildsystems where name = ? and status = 'approved'";
-my $sth = $db->prepare($gethost);
-$sth->execute($animal);
-my ($secret)=$sth->fetchrow_array();
-$sth->finish;
-
-my $tsdiff = time - $ts;
-
-my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($ts);
-$year += 1900; $mon +=1;
-my $date=
- sprintf("%d-%.2d-%.2d_%.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
-
-if ($ENV{BF_DEBUG} || ($ts > time) || ($ts + 86400 < time ) || (! $secret) )
-{
- open(TX,">../buildlogs/$animal.$date");
- print TX "sig=$sig\nlogtar-len=" , length($log_archive),
- "\nstatus=$res\nstage=$stage\nconf:\n$conf\n",
- "tsdiff:$tsdiff\n",
- "changed_this_run:\n$changed_this_run\n",
- "changed_since_success:\n$changed_since_success\n",
- "log:\n",$log;
-# $query->save(\*TX);
- close(TX);
-}
-
-unless ($ts < time + 120)
-{
- my $gmt = gmtime($ts);
- print "Status: 491 bad ts parameter - $ts ($gmt GMT) is in the future.\n",
- "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is in the future\n";
- $db->disconnect;
- exit;
-}
-
-unless ($ts + 86400 > time)
-{
- my $gmt = gmtime($ts);
- print "Status: 491 bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n",
- "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n";
- $db->disconnect;
- exit;
-}
-
-unless ($secret)
-{
- print
- "Status: 495 Unknown System\nContent-Type: text/plain\n\n",
- "System $animal is unknown\n";
- $db->disconnect;
- exit;
-
-}
-
-
-
-
-my $calc_sig = sha1_hex($content,$secret);
-my $calc_sig2 = sha1_hex($extra_content,$content,$secret);
-
-if ($calc_sig ne $sig && $calc_sig2 ne $sig)
-{
-
- print "Status: 450 sig mismatch\nContent-Type: text/plain\n\n";
- print "$sig mismatches $calc_sig($calc_sig2) on content:\n$content";
- $db->disconnect;
- exit;
-}
-
-# undo escape-proofing of base64 data and decode it
-map {tr/$@/+=/; $_ = decode_base64($_); }
- ($log, $conf,$changed_this_run,$changed_since_success,$log_archive);
-
-
-if ($log =~/Last file mtime in snapshot: (.*)/)
-{
- my $snaptime = parsedate($1);
- if ($snaptime < (time - (10 * 86400)))
- {
- print "Status: 493 snapshot too old: $1\nContent-Type: text/plain\n\n";
- print "snapshot to old: $1\n";
- $db->disconnect;
- exit;
- }
-}
-
-($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($ts);
-$year += 1900; $mon +=1;
-my $dbdate=
- sprintf("%d-%.2d-%.2d %.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
-
-my $log_file_names;
-my @log_file_names;
-my $dirname = "../buildlogs/tmp.$$.unpacklogs";
-
-if ($log_archive)
-{
- my $log_handle;
- my $archname = "../buildlogs/tmp.$$.tgz";
- open($log_handle,">$archname");
- binmode $log_handle;
- print $log_handle $log_archive;
- close $log_handle;
- mkdir $dirname;
- @log_file_names = `tar -z -C $dirname -xvf $archname 2>/dev/null`;
- map {s/\s+//g; } @log_file_names;
- my @qnames = @log_file_names;
- map { $_ = qq("$_"); } @qnames;
- $log_file_names = '{' . join(',',@qnames) . '}';
- # unlink $archname;
-}
-
-my $config_flags;
-my $container = new Safe;
-my $sconf = $conf;
-unless ($sconf =~ s/.*(\$Script_Config)/$1/ms )
-{
- $sconf = '$Script_Config={};';
-}
-my $client_conf = $container->reval("$sconf;");
-
-if ($min_script_version)
-{
- $client_conf->{script_version} ||= '0.0';
- my ($minmajor,$minminor) = split(/\./,$min_script_version);
- my ($smajor,$sminor) = split(/\./,$client_conf->{script_version});
- if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
- {
- print "Status: 460 script version too low\nContent-Type: text/plain\n\n";
- print
- "Script version is below minimum required\n",
- "Reported version: $client_conf->{script_version},",
- "Minumum version required: $min_script_version\n";
- $db->disconnect;
- exit;
- }
-}
-
-if ($min_web_script_version)
-{
- $client_conf->{web_script_version} ||= '0.0';
- my ($minmajor,$minminor) = split(/\./,$min_script_version);
- my ($smajor,$sminor) = split(/\./,$client_conf->{script_version});
- if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
- {
- print "Status: 461 web script version too low\nContent-Type: text/plain\n\n";
- print
- "Web Script version is below minimum required\n",
- "Reported version: $client_conf->{web_script_version},",
- "Minumum version required: $min_web_script_version\n";
- $db->disconnect;
- exit;
- }
-}
-
-my @config_flags;
-if (not exists $client_conf->{config_opts} )
-{
- @config_flags = ();
-}
-elsif (ref $client_conf->{config_opts} eq 'HASH')
-{
- # leave out keys with false values
- @config_flags = grep { $client_conf->{config_opts}->{$_} }
- keys %{$client_conf->{config_opts}};
-}
-elsif (ref $client_conf->{config_opts} eq 'ARRAY' )
-{
- @config_flags = @{$client_conf->{config_opts}};
-}
-
-if (@config_flags)
-{
- @config_flags = grep {! m/=/ } @config_flags;
- map {s/\s+//g; $_=qq("$_"); } @config_flags;
- push @config_flags,'git' if $client_conf->{scm} eq 'git';
- $config_flags = '{' . join(',',@config_flags) . '}' ;
-}
-
-my $scm = $client_conf->{scm} || 'cvs';
-my $scmurl = $client_conf->{scm_url};
-
-my $logst = <<EOSQL;
- insert into build_status
- (sysname, snapshot,status, stage, log,conf_sum, branch,
- changed_this_run, changed_since_success,
- log_archive_filenames , log_archive, build_flags, scm, scmurl)
- values(?,?,?,?,?,?,?,?,?,?,?,?,?,?)
-EOSQL
-;
-$sth=$db->prepare($logst);
-
-$sth->bind_param(1,$animal);
-$sth->bind_param(2,$dbdate);
-$sth->bind_param(3,$res);
-$sth->bind_param(4,$stage);
-$sth->bind_param(5,$log);
-$sth->bind_param(6,$conf);
-$sth->bind_param(7,$branch);
-$sth->bind_param(8,$changed_this_run);
-$sth->bind_param(9,$changed_since_success);
-$sth->bind_param(10,$log_file_names);
-#$sth->bind_param(11,$log_archive,{ pg_type => DBD::Pg::PG_BYTEA });
-$sth->bind_param(11,undef,{ pg_type => DBD::Pg::PG_BYTEA });
-$sth->bind_param(12,$config_flags);
-$sth->bind_param(13,$scm);
-$sth->bind_param(14,$scmurl);
-
-$sth->execute;
-$sth->finish;
-
-my $logst2 = <<EOSQL;
-
- insert into build_status_log
- (sysname, snapshot, branch, log_stage, log_text, stage_duration)
- values (?, ?, ?, ?, ?, ?)
-
-EOSQL
- ;
-
-$sth = $db->prepare($logst2);
-
-$/=undef;
-
-my $stage_start = $ts;
-
-foreach my $log_file( @log_file_names )
-{
- my $handle;
- open($handle,"$dirname/$log_file");
- my $mtime = (stat $handle)[9];
- my $stage_interval = $mtime - $stage_start;
- $stage_start = $mtime;
- my $ltext = <$handle>;
- close($handle);
- $ltext =~ s/\x00/\\0/g;
- $sth->execute($animal,$dbdate,$branch,$log_file,$ltext,
- "$stage_interval seconds");
-}
-
-
-$sth->finish;
-
-my $prevst = <<EOSQL;
-
- select coalesce((select distinct on (snapshot) stage
- from build_status
- where sysname = ? and branch = ? and snapshot < ?
- order by snapshot desc
- limit 1), 'NEW') as prev_status
-
-EOSQL
-
-$sth=$db->prepare($prevst);
-$sth->execute($animal,$branch,$dbdate);
-my $row=$sth->fetchrow_arrayref;
-my $prev_stat=$row->[0];
-$sth->finish;
-
-my $det_st = <<EOS;
-
- select operating_system|| ' / ' || os_version as os ,
- compiler || ' / ' || compiler_version as compiler,
- architecture as arch
- from buildsystems
- where status = 'approved'
- and name = ?
-
-EOS
-;
-$sth=$db->prepare($det_st);
-$sth->execute($animal);
-$row=$sth->fetchrow_arrayref;
-my ($os, $compiler,$arch) = @$row;
-$sth->finish;
-
-$db->begin_work;
-$db->do("delete from dashboard_mat");
-$db->do("insert into dashboard_mat select * from dashboard_mat_data");
-$db->commit;
-
-$db->disconnect;
-
-print "Content-Type: text/plain\n\n";
-print "request was on:\n";
-print "res=$res&stage=$stage&animal=$animal&ts=$ts";
-
-my $client_events = $client_conf->{mail_events};
-
-if ($ENV{BF_DEBUG})
-{
- my $client_time = $client_conf->{current_ts};
- open(TX,">>../buildlogs/$animal.$date");
- print TX "\n",Dumper(\$client_conf),"\n";
- print TX "server time: $server_time, client time: $client_time\n" if $client_time;
- close(TX);
-}
-
-my $bcc_stat = [];
-my $bcc_chg=[];
-if (ref $client_events)
-{
- my $cbcc = $client_events->{all};
- if (ref $cbcc)
- {
- push @$bcc_stat, @$cbcc;
- }
- elsif (defined $cbcc)
- {
- push @$bcc_stat, $cbcc;
- }
- if ($stage ne 'OK')
- {
- $cbcc = $client_events->{all};
- if (ref $cbcc)
- {
- push @$bcc_stat, @$cbcc;
- }
- elsif (defined $cbcc)
- {
- push @$bcc_stat, $cbcc;
- }
- }
- $cbcc = $client_events->{change};
- if (ref $cbcc)
- {
- push @$bcc_chg, @$cbcc;
- }
- elsif (defined $cbcc)
- {
- push @$bcc_chg, $cbcc;
- }
- if ($stage eq 'OK' || $prev_stat eq 'OK')
- {
- $cbcc = $client_events->{green};
- if (ref $cbcc)
- {
- push @$bcc_chg, @$cbcc;
- }
- elsif (defined $cbcc)
- {
- push @$bcc_chg, $cbcc;
- }
- }
-}
-
-
-my $url = $query->url(-base => 1);
-
-
-my $stat_type = $stage eq 'OK' ? 'Status' : 'Failed at Stage';
-
-my $mailto = [@$all_stat];
-push(@$mailto,@$fail_stat) if $stage ne 'OK';
-
-my $me = `id -un`; chomp $me;
-
-my $host = `hostname`; chomp $host;
-
-my $msg = new Mail::Send;
-
-$msg->set('From',"PG Build Farm <$me\@$host>");
-
-$msg->to(@$mailto);
-$msg->bcc(@$bcc_stat) if (@$bcc_stat);
-$msg->subject("PGBuildfarm member $animal Branch $branch $stat_type $stage");
-my $fh = $msg->open;
-print $fh <<EOMAIL;
-
-
-The PGBuildfarm member $animal had the following event on branch $branch:
-
-$stat_type: $stage
-
-The snapshot timestamp for the build that triggered this notification is: $dbdate
-
-The specs of this machine are:
-OS: $os
-Arch: $arch
-Comp: $compiler
-
-For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch
-
-EOMAIL
-
-$fh->close;
-
-exit if ($stage eq $prev_stat);
-
-$mailto = [@$change_stat];
-push(@$mailto,@$green_stat) if ($stage eq 'OK' || $prev_stat eq 'OK');
-
-$msg = new Mail::Send;
-
-$msg->set('From',"PG Build Farm <$me\@$host>");
-
-$msg->to(@$mailto);
-$msg->bcc(@$bcc_chg) if (@$bcc_chg);
-
-$stat_type = $prev_stat ne 'OK' ? "changed from $prev_stat failure to $stage" :
- "changed from OK to $stage";
-$stat_type = "New member: $stage" if $prev_stat eq 'NEW';
-$stat_type .= " failure" if $stage ne 'OK';
-
-$msg->subject("PGBuildfarm member $animal Branch $branch Status $stat_type");
-$fh = $msg->open;
-print $fh <<EOMAIL;
-
-The PGBuildfarm member $animal had the following event on branch $branch:
-
-Status $stat_type
-
-The snapshot timestamp for the build that triggered this notification is: $dbdate
-
-The specs of this machine are:
-OS: $os
-Arch: $arch
-Comp: $compiler
-
-For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch
-
-EOMAIL
-
-$fh->close;
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-use Template;
-use Captcha::reCAPTCHA;
-
-use vars qw( $template_dir $captcha_pubkey );
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-
-my $c = Captcha::reCAPTCHA->new;
-
-my $captcha = $c->get_html($captcha_pubkey);
-
-my $template_opts = { INCLUDE_PATH => $template_dir };
-my $template = new Template($template_opts);
-
-print "Content-Type: text/html\n\n";
-
-
-$template->process('register-form.tt',{captcha => $captcha});
-
-
-
-
-
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-use DBI;
-use Template;
-use CGI;
-use Template;
-use Captcha::reCAPTCHA;
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport $notifyapp $captcha_pubkey $captcha_privkey $template_dir);
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-my $template_opts = { INCLUDE_PATH => $template_dir};
-my $template = new Template($template_opts);
-my $query = new CGI;
-
-my $params = $query->Vars;
-
-my ($os, $osv, $comp, $compv, $arch, $email, $owner, $challenge, $response ) = @{$params}{
- qw(os osv comp compv arch email owner recaptcha_challenge_field recaptcha_response_field)};
-
-my $captcha = Captcha::reCAPTCHA->new;
-my $captcha_ok = $captcha->check_answer
- (
- $captcha_privkey,
- $ENV{'REMOTE_ADDR'},
- $challenge, $response
- );
-
-
-unless ($os && $osv && $comp && $compv && $arch && $email && $owner && $captcha_ok->{is_valid})
-{
- print "Content-Type: text/html\n\n";
- $template->process('register-incomplete.tt');
- exit;
-}
-
-# some idiot has a script that tries to talk to me
-# this should catch and dispose of him
-if ((grep {/rgergerger|\@pgbuildfarm\.org|Content-Type:|http:|mailto:|href=|None|Unknown/} $os,$osv,$comp,$compv,$arch,$email,$owner)
- || ($email =~ /john.*\@aol.com/) )
-{
- print
- "Status: 403 Forbidden - go away idiot\n",
- "Content-Type: text/plain\n\n";
- exit;
-}
-
-# count transitions to and from upper case
-my $trans = 1;
-my $counttrans = 0;
-foreach (split "" ,"$os$osv$comp$compv$arch$owner")
-{
- if (/[A-Z]/)
- {
- next if $trans;
- $trans = 1;
- $counttrans++;
- }
- else
- {
- next unless $trans;
- $trans = 0;
- $counttrans++;
- }
-}
-
-# reject junk with too many transitions into/outof upper case
-if ($counttrans > 20)
-{
- print
- "Status: 403 Forbidden - go away idiot\n",
- "Content-Type: text/plain\n\n";
- exit;
-}
-
-
-
-my $secret = "";
-my $dummyname=""; # we'll select an animal name when we approve it.
-foreach (1..8)
-{
- # 8 random chars is enough for the dummy name
- $secret .= substr("0123456789abcdefghijklmnopqrstuvwxyz",int(rand(36)),1);
- $dummyname .= substr("0123456789abcdef",int(rand(16)),1);
-}
-foreach (9..32)
-{
- $secret .= substr("0123456789abcdef",int(rand(16)),1);
-}
-
-my $db = DBI->connect($dsn,$dbuser,$dbpass);
-
-my $statement = <<EOS;
-
- insert into buildsystems
- (name, secret, operating_system, os_version, compiler, compiler_version,
- architecture, status, sys_owner, owner_email)
- values(?,?,?,?,?,?,?,'pending',?,?)
-
-EOS
-;
-
-my $sth=$db->prepare($statement);
-my $rv=$sth->execute($dummyname,$secret,$os,$osv,$comp,$compv,
- $arch,$owner,$email);
-my $err=$db->errstr;
-
-# everything looks OK, so tell them so
-print "Content-type: text/html\n\n";
-$template->process('register-ok.tt');
-
-$sth->finish;
-$db->disconnect;
-
-
-use Mail::Send;
-
-my $msg = new Mail::Send;
-
-my $me = `id -un`;
-
-my $host = `hostname`;
-
-$msg->set('From',"PG Build Farm <$me\@$host>");
-
-$msg->to(@$notifyapp);
-$msg->subject('New Buildfarm Application');
-my $fh = $msg->open;
-print $fh "\n\nName: $dummyname\n",
- "OS: $os: $osv\n",
- "Arch: $arch\n",
- "Comp: $comp: $compv\n",
- "Owner: $owner <$email>\n";
-$fh->close;
-
-
-
-
-
-
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-use DBI;
-use Template;
-use CGI;
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport $template_dir);
-
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-#require "BuildFarmWeb.pl";
-
-die "no dbname" unless $dbname;
-die "no dbuser" unless $dbuser;
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-my $db = DBI->connect($dsn,$dbuser,$dbpass);
-
-die $DBI::errstr unless $db;
-
-my $query = new CGI;
-my $member = $query->param('nm'); $member =~ s/[^a-zA-Z0-9_ -]//g;
-my $branch = $query->param('br'); $branch =~ s/[^a-zA-Z0-9_ -]//g;
-my $hm = $query->param('hm'); $hm =~ s/[^a-zA-Z0-9_ -]//g;
-$hm = '240' unless $hm =~ /^\d+$/;
-
-my $latest_personality = $db->selectrow_arrayref(q{
- select os_version, compiler_version
- from personality
- where name = ?
- order by effective_date desc limit 1
- }, undef, $member);
-
-# we don't really need to do this join, since we only want
-# one row from buildsystems. but it means we only have to run one
-# query. If it gets heavy we'll split it up and run two
-
-my $statement = <<EOS;
-
- select (now() at time zone 'GMT')::timestamp(0) - snapshot as when_ago,
- sysname, snapshot, b.status, stage,
- operating_system, os_version, compiler, compiler_version, architecture,
- owner_email,
- sys_notes_ts::date AS sys_notes_date, sys_notes
- from buildsystems s,
- build_status b
- where name = ?
- and branch = ?
- and s.status = 'approved'
- and name = sysname
- order by snapshot desc
- limit $hm
-
-EOS
-;
-
-my $statrows=[];
-my $sth=$db->prepare($statement);
-$sth->execute($member,$branch);
-while (my $row = $sth->fetchrow_hashref)
-{
- $row->{owner_email} =~ s/\@/ [ a t ] /;
- if ($latest_personality)
- {
- $row->{os_version} = $latest_personality->[0];
- $row->{compiler_version} = $latest_personality->[1];
- }
- push(@$statrows,$row);
-}
-
-$sth->finish;
-
-$db->disconnect;
-
-my $template_opts = { INCLUDE_PATH => $template_dir, EVAL_PERL => 1 };
-my $template = new Template($template_opts);
-
-print "Content-Type: text/html\n\n";
-
-$template->process('history.tt',
- {statrows=>$statrows,
- branch=>$branch,
- member => $member,
- hm => $hm
- });
-
-exit;
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-use DBI;
-use Template;
-use CGI;
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport $template_dir @log_file_names);
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-my $template_opts = { INCLUDE_PATH => $template_dir, EVAL_PERL => 1};
-my $template = new Template($template_opts);
-
-die "no dbname" unless $dbname;
-die "no dbuser" unless $dbuser;
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-my $query = new CGI;
-
-my $system = $query->param('nm'); $system =~ s/[^a-zA-Z0-9_ -]//g;
-my $logdate = $query->param('dt'); $logdate =~ s/[^a-zA-Z0-9_ :-]//g;
-
-my $log = "";
-my $conf = "";
-my ($stage,$changed_this_run,$changed_since_success,$sysinfo,$branch,$scmurl);
-my $scm;
-
-use vars qw($info_row);
-
-if ($system && $logdate)
-{
-
- my $db = DBI->connect($dsn,$dbuser,$dbpass);
-
- die $DBI::errstr unless $db;
-
- my $statement = q{
-
- select log,conf_sum,stage, changed_this_run, changed_since_success,branch,
- log_archive_filenames, scm, scmurl
- from build_status
- where sysname = ? and snapshot = ?
-
- };
- my $sth=$db->prepare($statement);
- $sth->execute($system,$logdate);
- my $row=$sth->fetchrow_arrayref;
- $log=$row->[0];
- $conf=$row->[1] || "not recorded" ;
- $stage=$row->[2] || "unknown";
- $changed_this_run = $row->[3];
- $changed_since_success = $row->[4];
- $branch = $row->[5];
- my $log_file_names = $row->[6];
- $scm = $row->[7];
- $scm ||= 'cvs'; # legacy scripts
- $scmurl = $row->[8];
- $log_file_names =~ s/^\{(.*)\}$/$1/;
- @log_file_names=split(',',$log_file_names)
- if $log_file_names;
- $sth->finish;
-
- $statement = q{
-
- select operating_system, os_version,
- compiler, compiler_version,
- architecture,
- replace(owner_email,'\@',' [ a t ] ') as owner_email,
- sys_notes_ts::date AS sys_notes_date, sys_notes
- from buildsystems
- where status = 'approved'
- and name = ?
-
- };
- $sth=$db->prepare($statement);
- $sth->execute($system);
- $info_row=$sth->fetchrow_hashref;
-
- my $latest_personality = $db->selectrow_arrayref(q{
- select os_version, compiler_version
- from personality
- where effective_date < ?
- and name = ?
- order by effective_date desc limit 1
- }, undef, $logdate, $system);
- # $sysinfo = join(" ",@$row);
- if ($latest_personality)
- {
- $info_row->{os_version} = $latest_personality->[0];
- $info_row->{compiler_version} = $latest_personality->[1];
- }
- $sth->finish;
- $db->disconnect;
-}
-
-foreach my $chgd ($changed_this_run,$changed_since_success)
-{
- my $cvsurl = 'http://anoncvs.postgresql.org/cvsweb.cgi';
- my $giturl = $scmurl || 'http://git.postgresql.org/gitweb?p=postgresql.git;a=commit;h=';
- my @lines = split(/!/,$chgd);
- my $changed_rows = [];
- foreach (@lines)
- {
- next if ($scm eq 'cvs' and ! m!^(pgsql|master|REL\d_\d_STABLE)/!);
- push(@$changed_rows,[$1,$3]) if (m!(^\S+)(\s+)(\S+)!);
- }
- $chgd = $changed_rows;
-}
-
-$conf =~ s/\@/ [ a t ] /g;
-
-print "Content-Type: text/html\n\n";
-
-$template->process('log.tt',
- {
- scm => $scm,
- scmurl => $scmurl,
- system => $system,
- branch => $branch,
- stage => $stage,
- urldt => $logdate,
- log_file_names => \@log_file_names,
- conf => $conf,
- log => $log,
- changed_this_run => $changed_this_run,
- changed_since_success => $changed_since_success,
- info_row => $info_row,
-
- });
-
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-use CGI;
-use DBI;
-use Template;
-
-
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport $template_dir $sort_by);
-
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-#require "BuildFarmWeb.pl";
-
-my $query = new CGI;
-my %sort_ok = ('name' => 'lower(name)' ,
- 'owner' => 'lower(owner_email)',
- 'os' => 'lower(operating_system), os_version',
- 'compiler' => 'lower(compiler), compiler_version' ,
- 'arch' => 'lower(architecture)' );
-$sort_by = $query->param('sort_by');$sort_by =~ s/[^a-zA-Z0-9_ -]//g;
-$sort_by = $sort_ok{$sort_by} || $sort_ok{name};
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-my $db = DBI->connect($dsn,$dbuser,$dbpass);
-
-# there is possibly some redundancy in this query, but it makes
-# a lot of the processing simpler.
-
-my $statement = q{
-
- select name, operating_system, os_version, compiler, compiler_version, owner_email,
- sys_notes_ts::date AS sys_notes_date, sys_notes,
- architecture as arch, ARRAY(
- select branch || ':' ||
- extract(days from now() - l.snapshot)
- from latest_snapshot l
- where l.sysname = s.name
- order by branch <> 'HEAD', branch desc
- ) as branches,
- ARRAY(select compiler_version || '\t' || os_version || '\t' || effective_date
- from personality p
- where p.name = s.name
- order by effective_date
- ) as personalities
- from buildsystems s
- where status = 'approved'
-};
-
-$statement .= "order by $sort_by";
-
-my $statrows=[];
-my $sth=$db->prepare($statement);
-$sth->execute;
-while (my $row = $sth->fetchrow_hashref)
-{
- $row->{branches} =~ s/^\{(.*)\}$/$1/;
- my $personalities = $row->{personalities};
- $personalities =~ s/^\{(.*)\}$/$1/;
- my @personalities = split(',',$personalities);
- $row->{personalities} = [];
- foreach my $personality (@personalities)
- {
- $personality =~ s/^"(.*)"$/$1/;
- $personality =~ s/\\(.)/$1/g;
-
- my ($compiler_version, $os_version, $effective_date) = split(/\t/,$personality);
- $effective_date =~ s/ .*//;
- push(@{$row->{personalities}}, {compiler_version => $compiler_version,
- os_version => $os_version,
- effective_date => $effective_date });
- }
- $row->{owner_email} =~ s/\@/ [ a t ] /;
- push(@$statrows,$row);
-}
-$sth->finish;
-
-
-$db->disconnect;
-
-# use Data::Dumper; print "Content-Type: text/plain\n\n",Dumper($statrows),"VERSION: ",$DBD::Pg::VERSION,"\n"; exit;
-
-
-my $template_opts = { INCLUDE_PATH => $template_dir};
-my $template = new Template($template_opts);
-
-print "Content-Type: text/html\n\n";
-
-$template->process('members.tt',
- {statrows=>$statrows});
-
-exit;
-
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-use DBI;
-use Template;
-use CGI;
-use File::Temp qw(tempfile);
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport @log_file_names);
-
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-#require "BuildFarmWeb.pl";
-
-die "no dbname" unless $dbname;
-die "no dbuser" unless $dbuser;
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-my $query = new CGI;
-
-my $system = $query->param('nm'); $system =~ s/[^a-zA-Z0-9_ -]//g;
-my $logdate = $query->param('dt');$logdate =~ s/[^a-zA-Z0-9_ -]//g;
-my $stage = $query->param('stg');$stage =~ s/[^a-zA-Z0-9._ -]//g;
-
-use vars qw($tgz);
-
-if ($system && $logdate && $stage)
-{
- my $db = DBI->connect($dsn,$dbuser,$dbpass);
-
- die $DBI::errstr unless $db;
-
- my $statement = q(
-
- select branch, log_text
- from build_status_log
- where sysname = ? and snapshot = ? and log_stage = ? || '.log'
-
- );
-
-
-
- my $sth=$db->prepare($statement);
- $sth->execute($system,$logdate,$stage);
- my $row=$sth->fetchrow_arrayref;
- my ($branch, $logtext) = ("unknown","no log text found");
- if ($row)
- {
- $branch = $row->[0];
- $logtext =$row->[1];
- }
- $sth->finish;
- $db->disconnect;
-
- print "Content-Type: text/plain\n\n", $logtext,
-
- "-------------------------------------------------\n\n",
- "Hosting for the PostgreSQL Buildfarm is generously ",
- "provided by: CommandPrompt, The PostgreSQL Company";
-
-}
-
-else
-{
- print "Status: 460 bad parameters\n",
- "Content-Type: text/plain\n\n";
-}
-
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-use DBI;
-use Template;
-use CGI;
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport $template_dir);
-
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-my $query = new CGI;
-my @members = $query->param('member');
-map { s/[^a-zA-Z0-9_ -]//g; } @members;
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-
-my $sort_clause = "";
-my $sortby = $query->param('sortby') || 'nosort';
-if ($sortby eq 'name')
-{
- $sort_clause = 'lower(sysname),';
-}
-elsif ($sortby eq 'os')
-{
- $sort_clause = 'lower(operating_system), os_version desc,';
-}
-elsif ($sortby eq 'compiler')
-{
- $sort_clause = "lower(compiler), compiler_version,";
-}
-
-my $db = DBI->connect($dsn,$dbuser,$dbpass) or die("$dsn,$dbuser,$dbpass,$!");
-
-my $statement =<<EOS;
-
-
- select timezone('GMT'::text, now())::timestamp(0) without time zone - b.snapshot AS when_ago, b.*
- from dashboard_mat b
- order by branch = 'HEAD' desc,
- branch desc, $sort_clause
- snapshot desc
-
-EOS
-;
-
-my $statrows=[];
-my $sth=$db->prepare($statement);
-$sth->execute;
-while (my $row = $sth->fetchrow_hashref)
-{
- next if (@members && ! grep {$_ eq $row->{sysname} } @members);
- $row->{build_flags} =~ s/^\{(.*)\}$/$1/;
- $row->{build_flags} =~ s/,/ /g;
- # enable-integer-datetimes is now the default
- if ($row->{branch} eq 'HEAD' || $row->{branch} gt 'REL8_3_STABLE')
- {
- $row->{build_flags} .= " --enable-integer-datetimes "
- unless ($row->{build_flags} =~ /--(en|dis)able-integer-datetimes/);
- }
- # enable-thread-safety is now the default
- if ($row->{branch} eq 'HEAD' || $row->{branch} gt 'REL8_5_STABLE')
- {
- $row->{build_flags} .= " --enable-thread-safety "
- unless ($row->{build_flags} =~ /--(en|dis)able-thread-safety/);
- }
- $row->{build_flags} =~ s/--((enable|with)-)?//g;
- $row->{build_flags} =~ s/libxml/xml/;
- $row->{build_flags} =~ s/\S+=\S+//g;
- push(@$statrows,$row);
-}
-$sth->finish;
-
-
-$db->disconnect;
-
-
-my $template_opts = { INCLUDE_PATH => $template_dir };
-my $template = new Template($template_opts);
-
-print "Content-Type: text/html\n\n";
-
-$template->process('status.tt',
- {statrows=>$statrows});
-
-exit;
-
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport);
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-use lib "/home/community/pgbuildfarm/lib/lib/perl5/site_perl";
-
-use SOAP::Transport::HTTP;
-
-SOAP::Transport::HTTP::CGI->dispatch_to('PGBuildFarm')->handle;
-
-exit;
-
-package PGBuildFarm;
-
-use DBI;
-
-sub get_status
-
-{
- my $class = shift;
- my @members = @_;
-
- my $dsn="dbi:Pg:dbname=$::dbname";
- $dsn .= ";host=$::dbhost" if $::dbhost;
- $dsn .= ";port=$::dbport" if $::dbport;
-
- my $db = DBI->connect($dsn,$::dbuser,$::dbpass) or
- die("$dsn,$::dbuser,$::dbpass,$!");
-
- # there is possibly some redundancy in this query, but it makes
- # a lot of the processing simpler.
-
- my $statement =<<EOS;
-
-
- select (now() at time zone 'GMT')::timestamp(0) - snapshot as when_ago, dsh.*
- from dashboard_mat dsh
- order by branch = 'HEAD' desc,
- branch desc,
- snapshot desc
-
-
-
-EOS
-;
-
- my $statrows=[];
- my $sth=$db->prepare($statement);
- $sth->execute;
- while (my $row = $sth->fetchrow_hashref)
- {
- next if (@members && ! grep {$_ eq $row->{sysname} } @members);
- $row->{build_flags} =~ s/^\{(.*)\}$/$1/;
- $row->{build_flags} =~ s/,/ /g;
- $row->{build_flags} =~ s/--((enable|with)-)?//g;
- $row->{build_flags} =~ s/\S+=\S+//g;
- push(@$statrows,$row);
- }
- $sth->finish;
-
-
- $db->disconnect;
-
- return $statrows;
-
-}
-
-1;
-
-
-
-
-
+++ /dev/null
-#!/usr/bin/perl
-
-#print "Content-Type: text/html\n\n";
-#print "<h1>My quick perl hello</h1>";
-
-use CGI;
-
-my $query = new CGI;
-
-my $url = $query->url();
-
-my $base = $query->url(-base=>1);
-
-print <<EOF;
-Content-Type: text/plain
-
-
-url = $url
-
-base = $base
-
-EOF
-
-
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-use DBI;
-use CGI;
-
-my $query = new CGI;
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport);
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-my $dbh = DBI->connect($dsn,$dbuser,$dbpass) or die("$dsn,$dbuser,$dbpass,$!");
-
-my %words;
-
-my $sql = q{
- select sysname, max(snapshot) as snapshot
- from build_status_log
- where branch = 'HEAD' and
- log_stage = 'typedefs.log' and
- snapshot > current_date::timestamp - interval '30 days'
- group by sysname
-};
-my $builds = $dbh->selectall_arrayref($sql, { Slice => {} });
-
-
-if ($query->param('show_list'))
-{
- print "Content-Type: text/html\n\n",
- "<head><title>Typedefs URLs</title></head>\n",
- "<body><h1>Typdefs URLs</h1>\n",
- "<table border='1'><tr><th>member</th></tr>\n";
-
- foreach my $build (@$builds)
- {
- print "<tr><td><a href='http://www.pgbuildfarm.org/cgi-bin/show_stage_log.pl?nm=$build->{sysname}\&dt=$build->{snapshot}\&stg=typedefs'>$build->{sysname}</a></td></tr>\n";
- }
- print "</table></body></html>\n";
- exit;
-}
-
-$sql = q{
- select log_text
- from build_status_log
- where sysname = ?
- and snapshot = ?
- and log_stage = 'typedefs.log'
- and branch = 'HEAD'
- };
-
-my $sth = $dbh->prepare($sql);
-
-foreach my $build (@$builds)
-{
- $sth->execute($build->{sysname},$build->{snapshot});
- my @row = $sth->fetchrow;
- my @typedefs = split(/\s+/,$row[0]);
- @words{@typedefs} = 1 x @typedefs;
-}
-
-print "Content-Type: text/plain\n\n",
- join("\n",sort keys %words),
- "\n";
+++ /dev/null
-#!/usr/bin/perl
-
-use strict;
-
-use CGI;
-use Digest::SHA1 qw(sha1_hex);
-use MIME::Base64;
-use DBI;
-use DBD::Pg;
-use Data::Dumper;
-
-use vars qw($dbhost $dbname $dbuser $dbpass $dbport);
-
-my $query = new CGI;
-
-my $sig = $query->path_info;
-$sig =~ s!^/!!;
-
-my $animal = $query->param('animal');
-my $ts = $query->param('ts');
-my $os_version = $query->param('new_os');
-my $compiler_version = $query->param('new_compiler');
-
-my $content = "animal=$animal\&ts=$ts";
-$content .= "\&new_os=$os_version" if $os_version;
-$content .= "\&new_compiler=$compiler_version" if $compiler_version;
-
-require "$ENV{BFConfDir}/BuildFarmWeb.pl";
-
-die "no dbname" unless $dbname;
-die "no dbuser" unless $dbuser;
-
-my $dsn="dbi:Pg:dbname=$dbname";
-$dsn .= ";host=$dbhost" if $dbhost;
-$dsn .= ";port=$dbport" if $dbport;
-
-unless ($animal && $ts && ($os_version || $compiler_version) && $sig)
-{
- print
- "Status: 490 bad parameters\nContent-Type: text/plain\n\n",
- "bad parameters for request\n";
- exit;
-
-}
-
-
-my $db = DBI->connect($dsn,$dbuser,$dbpass);
-
-die $DBI::errstr unless $db;
-
-my $gethost=
- "select secret from buildsystems where name = ? and status = 'approved'";
-my $sth = $db->prepare($gethost);
-$sth->execute($animal);
-my ($secret)=$sth->fetchrow_array();
-$sth->finish;
-
-
-unless ($secret)
-{
- print
- "Status: 495 Unknown System\nContent-Type: text/plain\n\n",
- "System $animal is unknown\n";
- $db->disconnect;
- exit;
-
-}
-
-
-
-
-my $calc_sig = sha1_hex($content,$secret);
-
-if ($calc_sig ne $sig)
-{
-
- print "Status: 450 sig mismatch\nContent-Type: text/plain\n\n";
- print "$sig mismatches $calc_sig on content:\n$content";
- $db->disconnect;
- exit;
-}
-
-# undo escape-proofing of base64 data and decode it
-map {tr/$@/+=/; $_ = decode_base64($_); }
- ($os_version, $compiler_version);
-
-my $get_latest = q{
-
- select coalesce(b.os_version, a.os_version) as os_version,
- coalesce(b.compiler_version, a.compiler_version) as compiler_version
- from buildsystems as a left join
- ( select distinct on (name) name, compiler_version, os_version
- from personality
- order by name, effective_date desc
- ) as b
- on (a.name = b.name)
- where a.name = ?
- and a.status = 'approved'
-
-};
-
-$sth = $db->prepare($get_latest);
-my $rv = $sth->execute($animal);
-unless($rv)
-{
- print "Status: 460 old data fetch\nContent-Type: text/plain\n\n";
- print "error: ",$db->errstr,"\n";
- $db->disconnect;
- exit;
-}
-
-my ($old_os,$old_comp)=$sth->fetchrow_array();
-$sth->finish;
-
-
-
-$os_version ||= $old_os;
-$compiler_version ||= $old_comp;
-
-my $new_personality = q{
-
- insert into personality (name, os_version, compiler_version)
- values (?,?,?)
-
-};
-
-
-$sth = $db->prepare($new_personality);
-$rv = $sth->execute($animal,$os_version, $compiler_version);
-
-unless($rv)
-{
- print "Status: 470 new data insert\nContent-Type: text/plain\n\n";
- print "error: $db->errstr\n";
- $db->disconnect;
- exit;
-}
-
-$sth->finish;
-
-
-
-$db->disconnect;
-
-print "Content-Type: text/plain\n\n";
-print "request was on:\n$content\n";
-
-
-
+++ /dev/null
-body {
- background: #fff;
- margin: 0;
- font-family: helvetica, trebuchet, "Lucida Grande", sans-serif;
- font-size:small
- }
-
-img { display:block; }
-img.inline { display:inline; }
-
-a img { border:none; }
-a:hover img { border: none; }
-
-#wrapper {
- margin:0 auto;
- margin-left: 5px;
-
-}
-
-#banner img { margin:6px 0; }
-
-#nav {
- float:left;
- width:780px;
- background:#fff;
- margin:0 10px 10px;
-}
-
-#nav ul {
- margin:0;
- padding:0;
- list-style:none;
-}
-
-#nav li {
- float:left;
- margin:0 .5em 0 0;
- padding:0 0 0 4px;
- background: url(/inc/b/l.png) no-repeat left top;
-}
-
-#nav li a {
- display:block;
- background:url(/inc/b/r.png) no-repeat right top;
- padding:0 11px 0 7px;
- color:#fff;
- text-decoration:none;
- line-height:20px;
-}
-
-#nav li a:hover {
- background: url(/inc/b/r.png) no-repeat 100% -20px;
- color:rgb(17,45,137);
- border: 0;
-}
-
-#nav li:hover { background: url(/inc/b/l.png) no-repeat 0% -20px; }
-
-#main {
- clear:both;
- margin:0 5px;
-}
-
-#main a {
- text-decoration: none;
- color: rgb(17,45,137);
- font-weight: bold;
- background: inherit;
-}
-
-a:hover, a:active { border-bottom: 1px dotted rgb(17,45,137); }
-p { padding: .3em 0; }
-
-table {
- font-size: small;
- border: 1px #aaa solid;
- border-right: 0;
- border-bottom: 0;
-}
-
-th, td {
- white-space: nowrap;
- border: 1px #aaa solid;
- border-top: 0;
- border-left: 0;
- padding:2px;
-}
-
-body.members td { white-space: normal; }
-
-th {
- background: #ddd;
- color: #222;
- font-size: x-small;
-}
-
-tr.alt td { background: #eef; }
-
-th.head {
- background: #666;
- color: #fff;
- text-align: center !important;
- letter-spacing: .1em;
-}
-
-.status, .detail { border-bottom: 1px #fff solid; }
-tr.last td { border-bottom: 1px #aaa solid; }
-.pass td.status, .pass td.detail { background: #6f6; }
-.warn td.status, .warn td.detail { background: #fc3; }
-.warnx td.status, .warn td.detail { background: #f99; }
-.fail td.status, .fail td.detail { background: #f66; }
-body.history th { text-align: right; }
-body.application table { margin: 0 auto; }
-body.application th { text-align: right; }
-body.application th.submit { text-align: center; }
-
-td.branch ul { list-style: none; }
-
-td.branch ul, td.branch li {
- margin: 0;
- padding: 0;
-}
-
-.opsys { color: black; }
-.compiler { color: navy; }
-.arch { color: purple; }
-
-td.flags { white-space: normal; font-size: x-small; }
-
+++ /dev/null
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>PostgreSQL BuildFarm</title>
- <link rel="icon" type="image/png" href="/elephant-icon.png" />
- <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
- <style type="text/css"><!--
- li#home a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat 100% -20px; }
- li#home { background: url(/inc/b/l.png) no-repeat 0% -20px; }
- --></style>
- </head>
- <body class="none">
- <div id="wrapper">
- <div id="banner">
- <a href="/index.html"><img src="/inc/pgbuildfarm-banner.png" alt="PostgreSQL BuildFarm" width="800" height="73" /></a>
- <div id="nav">
- <ul>
- <li id="home"><a href="/index.html" title="PostgreSQL BuildFarm Home">Home</a></li>
- <li id="status"><a href="/cgi-bin/show_status.pl" title="Current results">Status</a></li>
- <li id="members"><a href="/cgi-bin/show_members.pl" title="Platforms tested">Members</a></li>
- <li id="register"><a href="/cgi-bin/register-form.pl" title="Join PostgreSQL BuildFarm">Register</a></li>
- <li id="pgfoundry"><a href="http://pgfoundry.org/projects/pgbuildfarm/">PGFoundry</a></li>
- </ul>
- </div><!-- nav -->
- </div><!-- banner -->
- <div id="main">
-
-<!-- html generated from index.tt -->
-<p>
-The PostgreSQL build farm is a distributed system for automatically testing
-changes in the source code for PostgreSQL as they occur, on a wide variety
-of platforms. This server is the central repository for the results of those
-tests.
-</p>
-<p>
-To see the current status of tests on various branches, check the
-<a href="/cgi-bin/show_status.pl" title="Status Page">Status Page</a>.
-</p>
-<p>
-If you are interested in running a member of the build farm, then please visit
-the <a href="/cgi-bin/register-form.pl" title="Register">Registration Page</a>.
-We are particularly interested in unusual platforms or combinations of
-architecture, operating system and compiler.
-</p>
-<p>To see what is involved in running a buildfarm member, please
-read <a href="http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto">http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto</a>.
-The client code can be found at the
-<a href="http://pgfoundry.org/projects/pgbuildfarm/">project page</a> at
-<a href="http://pgfoundry.org/">PGFoundry</a>.
-</p>
-<p>The build farm software should run on all platforms that can support PostgreSQL.
-</p>
-
- </div><!-- main -->
- <hr />
- <p style="text-align: center;">
- Hosting for the PostgreSQL Buildfarm is generously
- provided by:
- <a href="http://www.commandprompt.com">CommandPrompt, The PostgreSQL Company</a>
- </p>
- </div><!-- wrapper -->
- </body>
-</html>
-
+++ /dev/null
-User-agent: *
-Disallow: /cgi-bin/
+++ /dev/null
---
--- PostgreSQL database dump
---
-
-SET client_encoding = 'SQL_ASCII';
-SET check_function_bodies = false;
-SET client_min_messages = warning;
-
---
--- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: pgbuildfarm
---
-
-COMMENT ON SCHEMA public IS 'Standard public schema';
-
-
-SET search_path = public, pg_catalog;
-
---
--- Name: plperl_call_handler(); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
---
-
-CREATE FUNCTION plperl_call_handler() RETURNS language_handler
- AS '$libdir/plperl', 'plperl_call_handler'
- LANGUAGE c;
-
-
-ALTER FUNCTION public.plperl_call_handler() OWNER TO pgbuildfarm;
-
---
--- Name: plperl; Type: PROCEDURAL LANGUAGE; Schema: public; Owner:
---
-
-CREATE TRUSTED PROCEDURAL LANGUAGE plperl HANDLER plperl_call_handler;
-
-
---
--- Name: plperlu; Type: PROCEDURAL LANGUAGE; Schema: public; Owner:
---
-
-CREATE PROCEDURAL LANGUAGE plperlu HANDLER plperl_call_handler;
-
-
---
--- Name: plpgsql_call_handler(); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
---
-
-CREATE FUNCTION plpgsql_call_handler() RETURNS language_handler
- AS '$libdir/plpgsql', 'plpgsql_call_handler'
- LANGUAGE c;
-
-
-ALTER FUNCTION public.plpgsql_call_handler() OWNER TO pgbuildfarm;
-
---
--- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: public; Owner:
---
-
-CREATE TRUSTED PROCEDURAL LANGUAGE plpgsql HANDLER plpgsql_call_handler;
-
-
---
--- Name: pending; Type: TYPE; Schema: public; Owner: pgbuildfarm
---
-
-CREATE TYPE pending AS (
- name text,
- operating_system text,
- os_version text,
- compiler text,
- compiler_version text,
- architecture text,
- owner_email text
-);
-
-
-ALTER TYPE public.pending OWNER TO pgbuildfarm;
-
---
--- Name: pending2; Type: TYPE; Schema: public; Owner: pgbuildfarm
---
-
-CREATE TYPE pending2 AS (
- name text,
- operating_system text,
- os_version text,
- compiler text,
- compiler_version text,
- architecture text,
- owner_email text,
- "owner" text,
- status_ts timestamp without time zone
-);
-
-
-ALTER TYPE public.pending2 OWNER TO pgbuildfarm;
-
---
--- Name: approve(text, text); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
---
-
-CREATE FUNCTION approve(text, text) RETURNS void
- AS $_$update buildsystems set name = $2, status ='approved' where name = $1 and status = 'pending'$_$
- LANGUAGE sql;
-
-
-ALTER FUNCTION public.approve(text, text) OWNER TO pgbuildfarm;
-
---
--- Name: approve2(text, text); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
---
-
-CREATE FUNCTION approve2(text, text) RETURNS text
- AS $_$ update buildsystems set name = $2, status = 'approved' where name = $1 and status = 'pending'; select owner_email || ':' || name || ':' || secret from buildsystems where name = $2;$_$
- LANGUAGE sql;
-
-
-ALTER FUNCTION public.approve2(text, text) OWNER TO pgbuildfarm;
-
---
--- Name: pending(); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
---
-
-CREATE FUNCTION pending() RETURNS SETOF pending2
- AS $$select name,operating_system,os_version,compiler,compiler_version,architecture,owner_email, sys_owner, status_ts from buildsystems where status = 'pending' order by status_ts $$
- LANGUAGE sql;
-
-
-ALTER FUNCTION public.pending() OWNER TO pgbuildfarm;
-
---
--- Name: prevstat(text, text, timestamp without time zone); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
---
-
-CREATE FUNCTION prevstat(text, text, timestamp without time zone) RETURNS text
- AS $_$
- select coalesce((select distinct on (snapshot) stage
- from build_status
- where sysname = $1 and branch = $2 and snapshot < $3
- order by snapshot desc
- limit 1), 'NEW') as prev_status
-$_$
- LANGUAGE sql;
-
-
-ALTER FUNCTION public.prevstat(text, text, timestamp without time zone) OWNER TO pgbuildfarm;
-
---
--- Name: set_latest(); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
---
-
-CREATE FUNCTION set_latest() RETURNS "trigger"
- AS $$
-
- begin
- update latest_snapshot
- set snapshot =
- (case when snapshot > NEW.snapshot then snapshot else NEW.snapshot end)
- where sysname = NEW.sysname and
- branch = NEW.branch;
- if not found then
- insert into latest_snapshot
- values(NEW.sysname, NEW.branch, NEW.snapshot);
- end if;
- return NEW;
- end;
-$$
- LANGUAGE plpgsql;
-
-
-ALTER FUNCTION public.set_latest() OWNER TO pgbuildfarm;
-
---
--- Name: target(text); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
---
-
-CREATE FUNCTION target(t text) RETURNS text
- AS $_$ my $log = shift; $log =~ s/.*(Target:[^\n]*).*/$1/s; return $log; $_$
- LANGUAGE plperl;
-
-
-ALTER FUNCTION public.target(t text) OWNER TO pgbuildfarm;
-
---
--- Name: transitions(text, text, text, text, text, text); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
---
-
-CREATE FUNCTION transitions(text, text, text, text, text, text) RETURNS integer
- AS $_$
-
-my ($os,$osv,$comp,$compv,$arch,$owner) = @_;
-# count transitions to and from upper case
-my $trans = 1;
-my $counttrans = 0;
-foreach (split "" ,"$os$osv$comp$compv$arch$owner")
-{
- if (/[A-Z]/)
- {
- next if $trans;
- $trans = 1;
- $counttrans++;
- }
- else
- {
- next unless $trans;
- $trans = 0;
- $counttrans++;
- }
-}
-
-return $counttrans;
-
-$_$
- LANGUAGE plperl;
-
-
-ALTER FUNCTION public.transitions(text, text, text, text, text, text) OWNER TO pgbuildfarm;
-
-SET default_tablespace = '';
-
-SET default_with_oids = true;
-
---
--- Name: alerts; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE TABLE alerts (
- sysname text NOT NULL,
- branch text NOT NULL,
- first_alert timestamp without time zone,
- last_notification timestamp without time zone
-);
-
-
-ALTER TABLE public.alerts OWNER TO pgbuildfarm;
-
---
--- Name: build_status; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE TABLE build_status (
- sysname text NOT NULL,
- snapshot timestamp without time zone NOT NULL,
- status integer,
- stage text,
- log text,
- conf_sum text,
- branch text,
- changed_this_run text,
- changed_since_success text,
- log_archive bytea,
- log_archive_filenames text[],
- build_flags text[],
- report_time timestamp with time zone DEFAULT ('now'::text)::timestamp(6) with time zone,
- scm text,
- scmurl text
-);
-
-
-ALTER TABLE public.build_status OWNER TO pgbuildfarm;
-
---
--- Name: build_status_export; Type: VIEW; Schema: public; Owner: pgbuildfarm
---
-
-CREATE VIEW build_status_export AS
- SELECT build_status.sysname AS name, build_status.snapshot, build_status.stage, build_status.branch, build_status.build_flags FROM build_status;
-
-
-ALTER TABLE public.build_status_export OWNER TO pgbuildfarm;
-
---
--- Name: build_status_log; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE TABLE build_status_log (
- sysname text NOT NULL,
- snapshot timestamp without time zone NOT NULL,
- branch text NOT NULL,
- log_stage text NOT NULL,
- log_text text,
- stage_duration interval
-);
-
-
-ALTER TABLE public.build_status_log OWNER TO pgbuildfarm;
-
---
--- Name: buildsystems; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE TABLE buildsystems (
- name text NOT NULL,
- secret text NOT NULL,
- operating_system text NOT NULL,
- os_version text NOT NULL,
- compiler text NOT NULL,
- compiler_version text NOT NULL,
- architecture text NOT NULL,
- status text NOT NULL,
- sys_owner text NOT NULL,
- owner_email text NOT NULL,
- status_ts timestamp without time zone DEFAULT (('now'::text)::timestamp(6) with time zone)::timestamp without time zone,
- no_alerts boolean DEFAULT false,
- sys_notes text,
- sys_notes_ts timestamp with time zone
-);
-
-
-ALTER TABLE public.buildsystems OWNER TO pgbuildfarm;
-
---
--- Name: buildsystems_export; Type: VIEW; Schema: public; Owner: pgbuildfarm
---
-
-CREATE VIEW buildsystems_export AS
- SELECT buildsystems.name, buildsystems.operating_system, buildsystems.os_version, buildsystems.compiler, buildsystems.compiler_version, buildsystems.architecture FROM buildsystems WHERE (buildsystems.status = 'approved'::text);
-
-
-ALTER TABLE public.buildsystems_export OWNER TO pgbuildfarm;
-
---
--- Name: latest_snapshot; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE TABLE latest_snapshot (
- sysname text NOT NULL,
- branch text NOT NULL,
- snapshot timestamp without time zone NOT NULL
-);
-
-
-ALTER TABLE public.latest_snapshot OWNER TO pgbuildfarm;
-
---
--- Name: personality; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE TABLE personality (
- name text NOT NULL,
- os_version text NOT NULL,
- compiler_version text NOT NULL,
- effective_date timestamp with time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL
-);
-
-
-ALTER TABLE public.personality OWNER TO pgbuildfarm;
-
---
--- Name: dashboard; Type: VIEW; Schema: public; Owner: pgbuildfarm
---
-
-CREATE VIEW dashboard AS
- SELECT ((timezone('GMT'::text, now()))::timestamp(0) without time zone - b.snapshot) AS when_ago, b.sysname, b.snapshot, b.status, b.stage, b.branch, b.build_flags, s.operating_system, COALESCE(b.os_version, s.os_version) AS os_version, s.compiler, COALESCE(b.compiler_version, s.compiler_version) AS compiler_version, s.architecture FROM buildsystems s, (SELECT DISTINCT ON (bs.sysname, bs.branch, bs.report_time) bs.sysname, bs.snapshot, bs.status, bs.stage, bs.branch, bs.build_flags, bs.report_time, p.compiler_version, p.os_version FROM ((build_status bs NATURAL JOIN latest_snapshot m) LEFT JOIN personality p ON (((p.name = bs.sysname) AND (p.effective_date <= bs.report_time)))) WHERE (m.snapshot > (now() - '30 days'::interval)) ORDER BY bs.sysname, bs.branch, bs.report_time, (p.effective_date IS NULL), p.effective_date DESC) b WHERE ((s.name = b.sysname) AND (s.status = 'approved'::text));
-
-
-ALTER TABLE public.dashboard OWNER TO pgbuildfarm;
-
---
--- Name: dashboard_ex; Type: VIEW; Schema: public; Owner: pgbuildfarm
---
-
-CREATE VIEW dashboard_ex AS
- SELECT ((timezone('GMT'::text, now()))::timestamp(0) without time zone - b.snapshot) AS when_ago, b.sysname, b.snapshot, b.status, b.stage, b.branch, b.build_flags, s.operating_system, COALESCE(b.os_version, s.os_version) AS os_version, s.compiler, COALESCE(b.compiler_version, s.compiler_version) AS compiler_version, s.architecture, s.sys_notes, (s.sys_notes_ts)::date AS sys_notes_date FROM buildsystems s, (SELECT DISTINCT ON (bs.sysname, bs.branch, bs.report_time) bs.sysname, bs.snapshot, bs.status, bs.stage, bs.branch, bs.build_flags, bs.report_time, p.compiler_version, p.os_version FROM ((build_status bs NATURAL JOIN latest_snapshot m) LEFT JOIN personality p ON (((p.name = bs.sysname) AND (p.effective_date <= bs.report_time)))) WHERE (m.snapshot > (now() - '30 days'::interval)) ORDER BY bs.sysname, bs.branch, bs.report_time, (p.effective_date IS NULL), p.effective_date DESC) b WHERE ((s.name = b.sysname) AND (s.status = 'approved'::text));
-
-
-ALTER TABLE public.dashboard_ex OWNER TO pgbuildfarm;
-
---
--- Name: dashboard_mat; Type: TABLE; Schema: public; Owner: pgbfweb; Tablespace:
---
-
-CREATE TABLE dashboard_mat (
- sysname text,
- snapshot timestamp without time zone,
- status integer,
- stage text,
- branch text,
- build_flags text[],
- operating_system text,
- os_version text,
- compiler text,
- compiler_version text,
- architecture text
-);
-
-
-ALTER TABLE public.dashboard_mat OWNER TO pgbfweb;
-
---
--- Name: dashboard_mat_data; Type: VIEW; Schema: public; Owner: pgbuildfarm
---
-
-CREATE VIEW dashboard_mat_data AS
- SELECT b.sysname, b.snapshot, b.status, b.stage, b.branch, b.build_flags, s.operating_system, COALESCE(b.os_version, s.os_version) AS os_version, s.compiler, COALESCE(b.compiler_version, s.compiler_version) AS compiler_version, s.architecture FROM buildsystems s, (SELECT DISTINCT ON (bs.sysname, bs.branch, bs.report_time) bs.sysname, bs.snapshot, bs.status, bs.stage, bs.branch, bs.build_flags, bs.report_time, p.compiler_version, p.os_version FROM ((build_status bs NATURAL JOIN latest_snapshot m) LEFT JOIN personality p ON (((p.name = bs.sysname) AND (p.effective_date <= bs.report_time)))) WHERE (m.snapshot > (now() - '30 days'::interval)) ORDER BY bs.sysname, bs.branch, bs.report_time, (p.effective_date IS NULL), p.effective_date DESC) b WHERE ((s.name = b.sysname) AND (s.status = 'approved'::text));
-
-
-ALTER TABLE public.dashboard_mat_data OWNER TO pgbuildfarm;
-
---
--- Name: dashboard_mat_data2; Type: VIEW; Schema: public; Owner: pgbuildfarm
---
-
-CREATE VIEW dashboard_mat_data2 AS
- SELECT b.sysname, b.snapshot, b.status, b.stage, b.branch, CASE WHEN ((b.conf_sum ~ 'use_vpath'::text) AND (b.conf_sum !~ '''use_vpath'' => undef'::text)) THEN (b.build_flags || 'vpath'::text) ELSE b.build_flags END AS build_flags, s.operating_system, COALESCE(b.os_version, s.os_version) AS os_version, s.compiler, COALESCE(b.compiler_version, s.compiler_version) AS compiler_version, s.architecture FROM buildsystems s, (SELECT DISTINCT ON (bs.sysname, bs.branch, bs.report_time) bs.sysname, bs.snapshot, bs.status, bs.stage, bs.branch, bs.build_flags, bs.conf_sum, bs.report_time, p.compiler_version, p.os_version FROM ((build_status bs NATURAL JOIN latest_snapshot m) LEFT JOIN personality p ON (((p.name = bs.sysname) AND (p.effective_date <= bs.report_time)))) WHERE (m.snapshot > (now() - '30 days'::interval)) ORDER BY bs.sysname, bs.branch, bs.report_time, (p.effective_date IS NULL), p.effective_date DESC) b WHERE ((s.name = b.sysname) AND (s.status = 'approved'::text));
-
-
-ALTER TABLE public.dashboard_mat_data2 OWNER TO pgbuildfarm;
-
---
--- Name: failures; Type: VIEW; Schema: public; Owner: pgbuildfarm
---
-
-CREATE VIEW failures AS
- SELECT build_status.sysname, build_status.snapshot, build_status.stage, build_status.conf_sum, build_status.branch, build_status.changed_this_run, build_status.changed_since_success, build_status.log_archive_filenames, build_status.build_flags, build_status.report_time FROM build_status WHERE (((build_status.stage <> 'OK'::text) AND (build_status.stage !~~ 'CVS%'::text)) AND (build_status.report_time IS NOT NULL));
-
-
-ALTER TABLE public.failures OWNER TO pgbuildfarm;
-
---
--- Name: list_subscriptions; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE TABLE list_subscriptions (
- addr text
-);
-
-
-ALTER TABLE public.list_subscriptions OWNER TO pgbuildfarm;
-
---
--- Name: penguin_save; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE TABLE penguin_save (
- branch text,
- snapshot timestamp without time zone,
- stage text
-);
-
-
-ALTER TABLE public.penguin_save OWNER TO pgbuildfarm;
-
---
--- Name: recent_failures; Type: VIEW; Schema: public; Owner: pgbuildfarm
---
-
-CREATE VIEW recent_failures AS
- SELECT build_status.sysname, build_status.snapshot, build_status.stage, build_status.conf_sum, build_status.branch, build_status.changed_this_run, build_status.changed_since_success, build_status.log_archive_filenames, build_status.build_flags, build_status.report_time, build_status.log FROM build_status WHERE ((((build_status.stage <> 'OK'::text) AND (build_status.stage !~~ 'CVS%'::text)) AND (build_status.report_time IS NOT NULL)) AND ((build_status.snapshot + '3 mons'::interval) > ('now'::text)::timestamp(6) with time zone));
-
-
-ALTER TABLE public.recent_failures OWNER TO pgbuildfarm;
-
---
--- Name: alerts_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-ALTER TABLE ONLY alerts
- ADD CONSTRAINT alerts_pkey PRIMARY KEY (sysname, branch);
-
-
-ALTER INDEX public.alerts_pkey OWNER TO pgbuildfarm;
-
---
--- Name: build_status_log_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-ALTER TABLE ONLY build_status_log
- ADD CONSTRAINT build_status_log_pkey PRIMARY KEY (sysname, snapshot, log_stage);
-
-
-ALTER INDEX public.build_status_log_pkey OWNER TO pgbuildfarm;
-
---
--- Name: build_status_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-ALTER TABLE ONLY build_status
- ADD CONSTRAINT build_status_pkey PRIMARY KEY (sysname, snapshot);
-
-
-ALTER INDEX public.build_status_pkey OWNER TO pgbuildfarm;
-
---
--- Name: buildsystems_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-ALTER TABLE ONLY buildsystems
- ADD CONSTRAINT buildsystems_pkey PRIMARY KEY (name);
-
-
-ALTER INDEX public.buildsystems_pkey OWNER TO pgbuildfarm;
-
---
--- Name: latest_snapshot_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-ALTER TABLE ONLY latest_snapshot
- ADD CONSTRAINT latest_snapshot_pkey PRIMARY KEY (sysname, branch);
-
-
-ALTER INDEX public.latest_snapshot_pkey OWNER TO pgbuildfarm;
-
---
--- Name: personality_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-ALTER TABLE ONLY personality
- ADD CONSTRAINT personality_pkey PRIMARY KEY (name, effective_date);
-
-
-ALTER INDEX public.personality_pkey OWNER TO pgbuildfarm;
-
---
--- Name: bs_branch_snapshot_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE INDEX bs_branch_snapshot_idx ON build_status USING btree (branch, snapshot);
-
-
-ALTER INDEX public.bs_branch_snapshot_idx OWNER TO pgbuildfarm;
-
---
--- Name: bs_status_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE INDEX bs_status_idx ON buildsystems USING btree (status);
-
-
-ALTER INDEX public.bs_status_idx OWNER TO pgbuildfarm;
-
---
--- Name: bs_sysname_branch_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE INDEX bs_sysname_branch_idx ON build_status USING btree (sysname, branch);
-
-
-ALTER INDEX public.bs_sysname_branch_idx OWNER TO pgbuildfarm;
-
---
--- Name: bs_sysname_branch_report_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE INDEX bs_sysname_branch_report_idx ON build_status USING btree (sysname, branch, report_time);
-
-
-ALTER INDEX public.bs_sysname_branch_report_idx OWNER TO pgbuildfarm;
-
---
--- Name: build_status_log_snapshot_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
---
-
-CREATE INDEX build_status_log_snapshot_idx ON build_status_log USING btree (snapshot);
-
-
-ALTER INDEX public.build_status_log_snapshot_idx OWNER TO pgbuildfarm;
-
---
--- Name: set_latest_snapshot; Type: TRIGGER; Schema: public; Owner: pgbuildfarm
---
-
-CREATE TRIGGER set_latest_snapshot
- AFTER INSERT ON build_status
- FOR EACH ROW
- EXECUTE PROCEDURE set_latest();
-
-
---
--- Name: bs_fk; Type: FK CONSTRAINT; Schema: public; Owner: pgbuildfarm
---
-
-ALTER TABLE ONLY build_status
- ADD CONSTRAINT bs_fk FOREIGN KEY (sysname) REFERENCES buildsystems(name) ON UPDATE CASCADE ON DELETE CASCADE;
-
-
---
--- Name: build_status_log_sysname_fkey; Type: FK CONSTRAINT; Schema: public; Owner: pgbuildfarm
---
-
-ALTER TABLE ONLY build_status_log
- ADD CONSTRAINT build_status_log_sysname_fkey FOREIGN KEY (sysname, snapshot) REFERENCES build_status(sysname, snapshot) ON UPDATE CASCADE ON DELETE CASCADE;
-
-
---
--- Name: personality_build_systems_name_fk; Type: FK CONSTRAINT; Schema: public; Owner: pgbuildfarm
---
-
-ALTER TABLE ONLY personality
- ADD CONSTRAINT personality_build_systems_name_fk FOREIGN KEY (name) REFERENCES buildsystems(name) ON UPDATE CASCADE ON DELETE CASCADE;
-
-
---
--- Name: public; Type: ACL; Schema: -; Owner: pgbuildfarm
---
-
-REVOKE ALL ON SCHEMA public FROM PUBLIC;
-REVOKE ALL ON SCHEMA public FROM pgbuildfarm;
-GRANT ALL ON SCHEMA public TO pgbuildfarm;
-GRANT ALL ON SCHEMA public TO PUBLIC;
-
-
---
--- Name: build_status; Type: ACL; Schema: public; Owner: pgbuildfarm
---
-
-REVOKE ALL ON TABLE build_status FROM PUBLIC;
-REVOKE ALL ON TABLE build_status FROM pgbuildfarm;
-GRANT ALL ON TABLE build_status TO pgbuildfarm;
-GRANT INSERT,SELECT ON TABLE build_status TO pgbfweb;
-GRANT SELECT ON TABLE build_status TO rssfeed;
-
-
---
--- Name: build_status_log; Type: ACL; Schema: public; Owner: pgbuildfarm
---
-
-REVOKE ALL ON TABLE build_status_log FROM PUBLIC;
-REVOKE ALL ON TABLE build_status_log FROM pgbuildfarm;
-GRANT ALL ON TABLE build_status_log TO pgbuildfarm;
-GRANT INSERT,SELECT,UPDATE,DELETE ON TABLE build_status_log TO pgbfweb;
-GRANT SELECT ON TABLE build_status_log TO rssfeed;
-
-
---
--- Name: buildsystems; Type: ACL; Schema: public; Owner: pgbuildfarm
---
-
-REVOKE ALL ON TABLE buildsystems FROM PUBLIC;
-REVOKE ALL ON TABLE buildsystems FROM pgbuildfarm;
-GRANT ALL ON TABLE buildsystems TO pgbuildfarm;
-GRANT INSERT,SELECT,UPDATE ON TABLE buildsystems TO pgbfweb;
-GRANT SELECT ON TABLE buildsystems TO rssfeed;
-
-
---
--- Name: latest_snapshot; Type: ACL; Schema: public; Owner: pgbuildfarm
---
-
-REVOKE ALL ON TABLE latest_snapshot FROM PUBLIC;
-REVOKE ALL ON TABLE latest_snapshot FROM pgbuildfarm;
-GRANT ALL ON TABLE latest_snapshot TO pgbuildfarm;
-GRANT INSERT,SELECT,UPDATE,DELETE ON TABLE latest_snapshot TO pgbfweb;
-
-
---
--- Name: personality; Type: ACL; Schema: public; Owner: pgbuildfarm
---
-
-REVOKE ALL ON TABLE personality FROM PUBLIC;
-REVOKE ALL ON TABLE personality FROM pgbuildfarm;
-GRANT ALL ON TABLE personality TO pgbuildfarm;
-GRANT INSERT,SELECT ON TABLE personality TO pgbfweb;
-GRANT SELECT ON TABLE personality TO rssfeed;
-
-
---
--- Name: dashboard; Type: ACL; Schema: public; Owner: pgbuildfarm
---
-
-REVOKE ALL ON TABLE dashboard FROM PUBLIC;
-REVOKE ALL ON TABLE dashboard FROM pgbuildfarm;
-GRANT ALL ON TABLE dashboard TO pgbuildfarm;
-GRANT SELECT ON TABLE dashboard TO pgbfweb;
-
-
---
--- Name: dashboard_ex; Type: ACL; Schema: public; Owner: pgbuildfarm
---
-
-REVOKE ALL ON TABLE dashboard_ex FROM PUBLIC;
-REVOKE ALL ON TABLE dashboard_ex FROM pgbuildfarm;
-GRANT ALL ON TABLE dashboard_ex TO pgbuildfarm;
-GRANT SELECT ON TABLE dashboard_ex TO pgbfweb;
-
-
---
--- Name: dashboard_mat; Type: ACL; Schema: public; Owner: pgbfweb
---
-
-REVOKE ALL ON TABLE dashboard_mat FROM PUBLIC;
-REVOKE ALL ON TABLE dashboard_mat FROM pgbfweb;
-GRANT ALL ON TABLE dashboard_mat TO pgbfweb;
-
-
---
--- Name: dashboard_mat_data; Type: ACL; Schema: public; Owner: pgbuildfarm
---
-
-REVOKE ALL ON TABLE dashboard_mat_data FROM PUBLIC;
-REVOKE ALL ON TABLE dashboard_mat_data FROM pgbuildfarm;
-GRANT ALL ON TABLE dashboard_mat_data TO pgbuildfarm;
-GRANT SELECT ON TABLE dashboard_mat_data TO pgbfweb;
-
-
---
--- Name: dashboard_mat_data2; Type: ACL; Schema: public; Owner: pgbuildfarm
---
-
-REVOKE ALL ON TABLE dashboard_mat_data2 FROM PUBLIC;
-REVOKE ALL ON TABLE dashboard_mat_data2 FROM pgbuildfarm;
-GRANT ALL ON TABLE dashboard_mat_data2 TO pgbuildfarm;
-GRANT SELECT ON TABLE dashboard_mat_data2 TO pgbfweb;
-
-
---
--- PostgreSQL database dump complete
---
-
+++ /dev/null
-#------------------------------------------------------------------------
-# Compiled template generated by the Template Toolkit version 2.14
-#------------------------------------------------------------------------
-
-Template::Document->new({
- METADATA => {
- 'modtime' => '1107104454',
- 'name' => 'bfwrapper.tt',
- },
- BLOCK => sub {
- my $context = shift || die "template sub called without context\n";
- my $stash = $context->stash;
- my $output = '';
- my $error;
-
- eval { BLOCK: {
- $output .= "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n <meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />\n <title>PostgreSQL BuildFarm Status</title>\n <link rel=\"stylesheet\" rev=\"stylesheet\" href=\"/inc/pgbf.css\" charset=\"utf-8\"\n />\n <style type=\"text/css\"><!--\n li#status a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat \n100% -20px; } \n li#status { background: url(/inc/b/l.png) no-repeat 0% -20px; }\n --></style>\n</head>\n<body>\n<div id=\"wrapper\">\n<div id=\"banner\">\n<a href=\"/index.html\"><img src=\"/inc/pgbuildfarm-banner.png\" alt=\"PostgreSQL Bui\nldFarm\" width=\"800\" height=\"73\" /></a>\n<div id=\"nav\">\n<ul>\n <li id=\"home\"><a href=\"/index.html\" title=\"PostgreSQL BuildFarm Home\">Home</\na></li>\n <li id=\"status\"><a href=\"/cgi-bin/show_status.pl\" title=\"Current results\">St\natus</a></li>\n <li id=\"members\"><a href=\"/cgi-bin/show_members.pl\" title=\"Platforms tested\"\n>Members</a></li>\n <li id=\"register\"><a href=\"/register.html\" title=\"Join PostgreSQL BuildFarm\"\n>Register</a></li>\n <li id=\"pgfoundry\"><a href=\"http://pgfoundry.org/projects/pgbuildfarm/\">PGFo\nundry</a></li>\n <li id=\"postgresql.org\"><a href=\"http://www.postgresql.org\">PostgreSQL.org</\na></li>\n</ul>\n</div><!-- nav -->\n</div><!-- banner -->\n<div id=\"main\">\n";
- #line 38 "/home/community/pgbuildfarm/templates/bfwrapper.tt"
- $output .= $stash->get('content');
- $output .= "\n</div><!-- main -->\n</div><!-- wrapper -->\n </body>\n</html>\n";
- } };
- if ($@) {
- $error = $context->catch($@, \$output);
- die $error unless $error->type eq 'return';
- }
-
- return $output;
- },
- DEFBLOCKS => {
-
- },
-});
+++ /dev/null
-#------------------------------------------------------------------------
-# Compiled template generated by the Template Toolkit version 2.14
-#------------------------------------------------------------------------
-
-Template::Document->new({
- METADATA => {
- 'modtime' => '1127835909',
- 'name' => 'dashboard.tt',
- },
- BLOCK => sub {
- my $context = shift || die "template sub called without context\n";
- my $stash = $context->stash;
- my $output = '';
- my $error;
-
- eval { BLOCK: {
- #line 1 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $stash->set('flag_imgs', { 'perl' => '/img/camel.png', 'python' => '/img/python.png', 'debug' => '/img/bug.png', 'pam' => '/img/pam.png', 'cassert' => '/img/cassert.png', 'openssl' => '/img/ssl_icon.gif', 'nls' => '/img/translateicon.gif', 'krb5' => '/img/krb.gif', 'tcl' => '/img/tcl.png', 'thread-safety' => '/img/threads.gif', 'integer-datetimes' => '/img/days.png' });
-
-
- $output .= "\n<div id=\"main\">\n <h1>PostgreSQL BuildFarm Status</h1>\n <p>\n Shown here is the latest status of each farm member \n for each branch it has reported on in the last 30 days.\n </p>\n <p>\n Use the farm member link for history of that member \n on the relevant branch.\n </p>\n<table><tr><th class=\"head\" rowspan=\"2\">Legend</th>\n";
- #line 45 "/home/community/pgbuildfarm/templates/dashboard.tt"
-
- # FOREACH
- do {
- my ($value, $error, $oldloop);
- my $list = $stash->get('flag_imgs');
-
- unless (UNIVERSAL::isa($list, 'Template::Iterator')) {
- $list = Template::Config->iterator($list)
- || die $Template::Config::ERROR, "\n";
- }
-
- ($value, $error) = $list->get_first();
- eval { $oldloop = $stash->get('loop') };
- $stash->set('loop', $list);
- eval {
- LOOP: while (! $error) {
- $stash->{'flagset'} = $value;
- $output .= "\n<td><img src=\"";
- #line 43 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['flagset', 0, 'value', 0]);
- $output .= "\" title=\"";
- #line 43 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['flagset', 0, 'key', 0]);
- $output .= "\" alt=\"";
- #line 43 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['flagset', 0, 'key', 0]);
- $output .= "\" height=\"16\" width=\"16\" class=\"inline\" align=\"center\"/> = ";
- #line 43 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['flagset', 0, 'key', 0]);
- $output .= "</td>\n";
- #line 44 "/home/community/pgbuildfarm/templates/dashboard.tt"
- if ($stash->get(['loop', 0, 'count', 0]) eq 5) {
- $output .= "</tr><tr>";
- }
-
- $output .= "\n";;
- ($value, $error) = $list->get_next();
- }
- };
- $stash->set('loop', $oldloop);
- die $@ if $@;
- $error = 0 if $error && $error eq Template::Constants::STATUS_DONE;
- die $error if $error;
- };
-
- $output .= "\n</tr></table>\n<br />\n <table cellspacing=\"0\">\n";
- #line 49 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $stash->set('brch', '');
- $output .= "\n";
- #line 81 "/home/community/pgbuildfarm/templates/dashboard.tt"
-
- # FOREACH
- do {
- my ($value, $error, $oldloop);
- my $list = $stash->get('statrows');
-
- unless (UNIVERSAL::isa($list, 'Template::Iterator')) {
- $list = Template::Config->iterator($list)
- || die $Template::Config::ERROR, "\n";
- }
-
- ($value, $error) = $list->get_first();
- eval { $oldloop = $stash->get('loop') };
- $stash->set('loop', $list);
- eval {
- LOOP: while (! $error) {
- $stash->{'row'} = $value;
- $output .= "\n";
- #line 54 "/home/community/pgbuildfarm/templates/dashboard.tt"
- if ($stash->get(['row', 0, 'branch', 0]) ne $stash->get('brch')) {
- #line 51 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $stash->set('brch', $stash->get(['row', 0, 'branch', 0]));
- $output .= "\n<tr><th class=\"head\" colspan=\"4\">Branch: ";
- #line 52 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get('brch');
- $output .= "</th></tr>\n<tr><th>Alias</th><th>System</th><th>Status</th><th>Flags</th></tr>\n";
- }
-
- $output .= "\n<tr ";
- #line 55 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $context->process('cl', { 'bgfor' => $stash->get(['row', 0, 'stage', 0]) });
- $output .= ">\n <td><a \n href=\"show_history.pl?nm=";
- #line 57 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'sysname', 0]);
- $output .= "&br=";
- #line 57 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'branch', 0]);
- $output .= "\"\n title=\"History\"\n >";
- #line 59 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'sysname', 0]);
- $output .= "</a></td>\n <td><span class=\"opsys\">";
- #line 60 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'operating_system', 0]);
- $output .= "\n ";
- #line 61 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'os_version', 0]);
- $output .= "</span> <span class=\"compiler\">";
- #line 63 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'compiler', 0]);
- $output .= "\n ";
- #line 64 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'compiler_version', 0]);
- $output .= "</span> <span class=\"arch\">";
- #line 66 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'architecture', 0]);
- $output .= "</span></td>\n <td class=\"status\">";
- #line 69 "/home/community/pgbuildfarm/templates/dashboard.tt"
-
- # FILTER
- $output .= do {
- my $output = '';
- my $filter = $context->filter('replace', [ '\s', ' ' ])
- || $context->throw($context->error);
-
- $output .= $stash->get(['row', 0, 'when_ago', 0]);
-
- &$filter($output);
- };
-
- $output .= " ago \n ";
- #line 70 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'stage', 0]);
- $output .= " <a href=\"show_log.pl?nm=";
- #line 73 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['row', 0, 'sysname', 0]);
- $output .= "&dt=";
- #line 75 "/home/community/pgbuildfarm/templates/dashboard.tt"
-
- # FILTER
- $output .= do {
- my $output = '';
- my $filter = $context->filter('uri')
- || $context->throw($context->error);
-
- $output .= $stash->get(['row', 0, 'snapshot', 0]);
-
- &$filter($output);
- };
-
- $output .= "\">";
- #line 77 "/home/community/pgbuildfarm/templates/dashboard.tt"
- if ($stash->get(['row', 0, 'stage', 0]) ne 'OK') {
- $output .= "Details";
- }
- else {
- $output .= "Config";
- }
-
- $output .= "</a></td>\n\n <td class=\"flags\">";
- #line 79 "/home/community/pgbuildfarm/templates/dashboard.tt"
-
- # FOREACH
- do {
- my ($value, $error, $oldloop);
- my $list = $stash->get(['row', 0, 'build_flags', 0, 'split', 0, 'sort', 0]);
-
- unless (UNIVERSAL::isa($list, 'Template::Iterator')) {
- $list = Template::Config->iterator($list)
- || die $Template::Config::ERROR, "\n";
- }
-
- ($value, $error) = $list->get_first();
- eval { $oldloop = $stash->get('loop') };
- $stash->set('loop', $list);
- eval {
- LOOP: while (! $error) {
- $stash->{'flag'} = $value;
- #line 79 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $context->process('img');;
- ($value, $error) = $list->get_next();
- }
- };
- $stash->set('loop', $oldloop);
- die $@ if $@;
- $error = 0 if $error && $error eq Template::Constants::STATUS_DONE;
- die $error if $error;
- };
-
- $output .= "</td>\n</tr>\n";;
- ($value, $error) = $list->get_next();
- }
- };
- $stash->set('loop', $oldloop);
- die $@ if $@;
- $error = 0 if $error && $error eq Template::Constants::STATUS_DONE;
- die $error if $error;
- };
-
- $output .= "\n </table>\n</div>\n\n";
- } };
- if ($@) {
- $error = $context->catch($@, \$output);
- die $error unless $error->type eq 'return';
- }
-
- return $output;
- },
- DEFBLOCKS => {
- 'cl' => sub {
- my $context = shift || die "template sub called without context\n";
- my $stash = $context->stash;
- my $output = '';
- my $error;
-
- eval { BLOCK: {
- $output .= " class=\"";
- #line 27 "/home/community/pgbuildfarm/templates/dashboard.tt"
-
- # SWITCH
- do {
- my $result = $stash->get('bgfor');
- my $match;
- SWITCH: {
- $match = 'OK';
- $match = [ $match ] unless ref $match eq 'ARRAY';
- if (grep(/^$result$/, @$match)) {
- $output .= "pass";
- last SWITCH;
- }
- $match = 'ContribCheck';
- $match = [ $match ] unless ref $match eq 'ARRAY';
- if (grep(/^$result$/, @$match)) {
- $output .= "warn";
- last SWITCH;
- }
- $match = [ 'Check', 'InstallCheck' ];
- $match = [ $match ] unless ref $match eq 'ARRAY';
- if (grep(/^$result$/, @$match)) {
- $output .= "warnx";
- last SWITCH;
- }
- $output .= "fail";
- }
- };
-
- $output .= "\"";
- } };
- if ($@) {
- $error = $context->catch($@, \$output);
- die $error unless $error->type eq 'return';
- }
-
- return $output;
- },
- 'img' => sub {
- my $context = shift || die "template sub called without context\n";
- my $stash = $context->stash;
- my $output = '';
- my $error;
-
- eval { BLOCK: {
- #line 22 "/home/community/pgbuildfarm/templates/dashboard.tt"
- if ($stash->get('flag') eq 'depend' || $stash->get('flag') eq 'gnu-ld') {
-
- }
- elsif ($stash->get(['flag_imgs', 0, $stash->get('flag'), 0])) {
- #line 22 "/home/community/pgbuildfarm/templates/dashboard.tt"
-
- # FILTER
- $output .= do {
- my $output = '';
- my $filter = $context->filter('collapse')
- || $context->throw($context->error);
-
- $output .= "<img src=\"";
- #line 19 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get(['flag_imgs', 0, $stash->get('flag'), 0]);
- $output .= "\" \n title=\"";
- #line 20 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get('flag');
- $output .= "\" alt=\"";
- #line 20 "/home/community/pgbuildfarm/templates/dashboard.tt"
- $output .= $stash->get('flag');
- $output .= "\" \n height=\"16\" width=\"16\" class=\"inline\" align=\"bottom\" /> \n ";
-
- &$filter($output);
- };
-
- }
-
- } };
- if ($@) {
- $error = $context->catch($@, \$output);
- die $error unless $error->type eq 'return';
- }
-
- return $output;
- },
- },
-});
+++ /dev/null
-[%- BLOCK cl %] class="[% SWITCH bgfor -%]
- [%- CASE 'OK' %]pass[% CASE 'ContribCheck' %]warn[% CASE [ 'Check' 'InstallCheck' ] %]warnx[% CASE %]fail[% END %]"
-[%- END -%]
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>PostgreSQL BuildFarm History</title>
- <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
- <style type="text/css"><!--
- li#status a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat 100% -20px; }
- li#status { background: url(/inc/b/l.png) no-repeat 0% -20px; }
- --></style>
-</head>
-<body class="history">
-<div id="wrapper">
-<div id="banner">
-<a href="/index.html"><img src="/inc/pgbuildfarm-banner.png" alt="PostgreSQL BuildFarm" width="800" height="73" /></a>
-<div id="nav">
-<ul>
- <li id="home"><a href="/index.html" title="PostgreSQL BuildFarm Home">Home</a></li>
- <li id="status"><a href="/cgi-bin/show_status.pl" title="Current results">Status</a></li>
- <li id="members"><a href="/cgi-bin/show_members.pl" title="Platforms tested">Members</a></li>
- <li id="register"><a href="/cgi-bin/register-form.pl" title="Join PostgreSQL BuildFarm">Register</a></li>
- <li id="pgfoundry"><a href="http://pgfoundry.org/projects/pgbuildfarm/">PGFoundry</a></li>
-</ul>
-</div><!-- nav -->
-</div><!-- banner -->
-<div id="main">
-<h1>PostgreSQL BuildFarm Status History</h1>
-<table cellspacing="0">
- <tr><th class="head" colspan="3">System Detail</th></tr>
- <tr class="member"><th>Farm member</th><td>[% member %]</td></tr>
- <tr><th>OS</th><td>[% statrows.0.operating_system %] [% statrows.0.os_version %]</td></tr>
-<!-- <tr><th>OS Version</th><td>[% statrows.0.os_version %]</td></tr> -->
- <tr><th>Compiler</th><td>[% statrows.0.compiler %] [% statrows.0.compiler_version %]</td></tr>
-<!-- <tr><th>Compiler Version</th><td>[% statrows.0.compiler_version %]</td></tr> -->
- <tr><th>Architecture</th><td>[% statrows.0.architecture %]</td></tr>
- </table>
- <h3>Branch: [% branch %][% IF statrows.size >= 240 %] (last 240 entries shown)[% END %]</h3>
-[% BLOCK stdet %]
-<tr [% PROCESS cl bgfor=row.stage %]>
- <td>[%- row.when_ago | replace('\s',' ') %] ago </td>
- <td class="status">[% row.stage -%]</td>
- <td class="status"><a href="show_log.pl?nm=
- [%- row.sysname %]&dt=
- [%- row.snapshot | uri %]">
- [%- IF row.stage != 'OK' %]Details[% ELSE %]Config[% END -%]</a></td>
-
-</tr>
-[% END %]
-<table border="0"> <tr>
-[% FOREACH offset IN [0,1,2] %][% low = offset * statrows.size / 3 ; high = -1 + (offset + 1) * statrows.size / 3 %]
-[% TRY %][% PERL %]
- use POSIX qw(floor);
- $stash->set(low => floor($stash->get('low')));
- $stash->set(high => floor($stash->get('high')));
-[% END %][% CATCH %]<!-- [% error.info %] --> [% END %]
- <td><table cellspacing="0">
-<!-- <tr><th colspan=3>low = [% low %], high = [% high %]</th></tr> -->
- [% FOREACH xrow IN statrows.slice(low,high) %][% PROCESS stdet row=xrow %][% END %]
- </table></td>
-[% END %]
-</table>
- </div><!-- main -->
- </div><!-- wrapper -->
- </body>
-</html>
+++ /dev/null
-[%- BLOCK cl %] class=" [% SWITCH bgfor -%]
- [%- CASE 'OK' %]pass[% CASE 'ContribCheck' %]warn[% CASE [ 'Check' 'InstallCheck' ] %]warnx[% CASE %]fail[% END %]"
-[%- END -%]
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>PostgreSQL BuildFarm Status</title>
- <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
- <style type="text/css"><!--
- li#status a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat 100% -20px; }
- li#status { background: url(/inc/b/l.png) no-repeat 0% -20px; }
- --></style>
-</head>
-<body>
-<div id="wrapper">
-<div id="banner">
-<a href="/index.html"><img src="/inc/pgbuildfarm-banner.png" alt="PostgreSQL BuildFarm" width="800" height="73" /></a>
-<div id="nav">
-<ul>
- <li id="home"><a href="/index.html" title="PostgreSQL BuildFarm Home">Home</a></li>
- <li id="status"><a href="/cgi-bin/show_status.pl" title="Current results">Status</a></li>
- <li id="members"><a href="/cgi-bin/show_members.pl" title="Platforms tested">Members</a></li>
- <li id="register"><a href="/cgi-bin/register-form.pl" title="Join PostgreSQL BuildFarm">Register</a></li>
- <li id="pgfoundry"><a href="http://pgfoundry.org/projects/pgbuildfarm/">PGFoundry</a></li>
- <li id="postgresql.org"><a href="http://www.postgresql.org">PostgreSQL.org</a></li>
-</ul>
-</div><!-- nav -->
-</div><!-- banner -->
-<div id="main">
- <h1>PostgreSQL BuildFarm Status</h1>
- <p>
- Shown here is the latest status of each farm member
- for each branch it has reported on in the last 30 days.
- </p>
- <p>
- Use the farm member link for history of that member
- on the relevant branch.
- </p>
- <table cellspacing="0">
-[% brch = "" %]
-[% FOREACH row IN statrows %]
-[% IF row.branch != brch ; brch = row.branch %]
-<tr><th class="head" colspan="3">Branch: [% brch %]</th></tr>
-<tr><th>Alias</th><th>System</th><th>Status</th></tr>
-[% END %]
-<tr [% PROCESS cl bgfor=row.stage %]>
- <td><a
- href="show_history.pl?nm=[% row.sysname %]&br=[% row.branch %]"
- title="History"
- >[% row.sysname %]</a></td>
- <td><span class="opsys">[% row.operating_system %]
- [% row.os_version %]</span> <span class="compiler">
- [%- row.compiler %]
- [% row.compiler_version %]</span> <span class="arch">
- [%- row.architecture %]</span></td>
- <td class="status">
- [%- row.when_ago | replace('\s',' ') %] ago
- [% row.stage -%]
- <a href="show_log.pl?nm=
- [%- row.sysname %]&dt=
- [%- row.snapshot | uri %]">
- [%- IF row.stage != 'OK' %]Details[% ELSE %]Config[% END -%]</a></td>
-
-</tr>
-[% END %]
- </table>
-</div><!-- main -->
-</div><!-- wrapper -->
- </body>
-</html>
-
-
-
-
-
-
-
-
+++ /dev/null
-[%- BLOCK cl %] class="[% SWITCH bgfor -%]
- [%- CASE 'OK' %]pass[% CASE 'ContribCheck' %]warn[% CASE [ 'Check' 'InstallCheck' ] %]warnx[% CASE %]fail[% END %]"
-[%- END -%]
-[% WRAPPER 'page.tt'
- title = 'PostgreSQL BuildFarm History'
- bodyclass = 'history'
- pagebutton = 'none'
-%]
-<h1>PostgreSQL BuildFarm Status History</h1>
- <table cellspacing="0">
- <tr><th class="head" colspan="3">System Detail</th></tr>
- <tr class="member"><th>Farm member</th><td>[% member %]</td></tr>
- <tr><th>OS</th><td>[% statrows.0.operating_system %] [% statrows.0.os_version %]</td></tr>
- <tr><th>Compiler</th><td>[% statrows.0.compiler %] [% statrows.0.compiler_version %]</td></tr>
- <tr><th>Architecture</th><td>[% statrows.0.architecture %]</td></tr>
- <tr><th>Owner</th><td>[% statrows.0.owner_email %]</td></tr>
- </table>
-[% IF statrows.0.sys_notes %]
- <br />
- <table>
- <tr>
- <th class="head" rowspan="2">System Notes</th>
- <th>Date</th>
- <th>Notes</th>
- </tr>
- <tr>
- <td>[% statrows.0.sys_notes_date %]</td>
- <td>[% statrows.0.sys_notes %]</td>
- </tr>
- </table>
-[% END %]
- <h3>Branch: [% branch %][% IF statrows.size >= hm %] (last [% hm %] entries shown)[% END %]</h3>
-[% BLOCK stdet %]
- <tr [% PROCESS cl bgfor=row.stage %]>
- <td>[%- row.when_ago | replace('\s',' ') %] ago </td>
- <td class="status">[% row.stage -%]</td>
- <td class="status"><a href="show_log.pl?nm=
- [%- row.sysname %]&dt=
- [%- row.snapshot | uri %]">
- [%- IF row.stage != 'OK' %]Details[% ELSE %]Config[% END -%]</a></td>
-
- </tr>
-[% END %]
-<table border="0"> <tr>
- [% FOREACH offset IN [0,1,2] %][% low = offset * statrows.size / 3 ; high = -1 + (offset + 1) * statrows.size / 3 %]
- [% TRY %][% PERL %]
- use POSIX qw(floor);
- $stash->set(low => floor($stash->get('low')));
- $stash->set(high => floor($stash->get('high')));
- [% END %][% CATCH %]<!-- [% error.info %] --> [% END %]
- <td><table cellspacing="0">
- [% FOREACH xrow IN statrows.slice(low,high) %][% PROCESS stdet row=xrow %][% END %]
- </table></td>
- [% END %]
-</table>
-[% END %]
+++ /dev/null
-[%#
-
- Use this template to generate the index page, with something like:
-
- tpage index.tt > ../htdocs/index.html
-
--%]
-[% WRAPPER 'page.tt'
- title = 'PostgreSQL BuildFarm'
- bodyclass = 'none'
- pagebutton = 'home'
-%]
-<!-- html generated from index.tt -->
-<p>
-The PostgreSQL build farm is a distributed system for automatically testing
-changes in the source code for PostgreSQL as they occur, on a wide variety
-of platforms. This server is the central repository for the results of those
-tests.
-</p>
-<p>
-To see the current status of tests on various branches, check the
-<a href="/cgi-bin/show_status.pl" title="Status Page">Status Page</a>.
-</p>
-<p>
-If you are interested in running a member of the build farm, then please visit
-the <a href="/cgi-bin/register-form.pl" title="Register">Registration Page</a>.
-We are particularly interested in unusual platforms or combinations of
-architecture, operating system and compiler.
-</p>
-<p>To see what is involved in running a buildfarm member, please
-read <a href="http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto">http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto</a>.
-The client code can be found at the
-<a href="http://pgfoundry.org/projects/pgbuildfarm/">project page</a> at
-<a href="http://pgfoundry.org/">PGFoundry</a>.
-</p>
-<p>The build farm software should run on all platforms that can support PostgreSQL.
-</p>
-[% END %]
+++ /dev/null
-[% PERL %]
- use POSIX qw(ceil);
- my $lrfactor = 6;
- $stash->set(lrfactor => $lrfactor);
- my $rows = $stash->get('log_file_names');
- my $logrows = ceil(scalar(@$rows)/$lrfactor);
- my $logcells = $lrfactor * $logrows;
- $stash->set( logcells => $logcells);
- $stash->set( logrows => $logrows );
-[% END -%]
-[% mytitle = BLOCK %]PostgreSQL BuildFarm | [% IF stage != 'OK' %]Log for system "[% system %]" failure on snapshot taken [% urldt ; ELSE %]Configuration summary for system "[% system %]" snapshot taken [% urldt ; END ; END -%]
-[%
- cvsurl = 'http://anoncvs.postgresql.org/cvsweb.cgi';
- giturl = scmurl || 'http://git.postgresql.org/gitweb?p=postgresql.git;a=commit;h=';
--%]
-[% WRAPPER 'page.tt'
- title = mytitle
- bodyclass = 'none'
- pagebutton = 'none'
-%]
-<h1>PostgreSQL Build Farm Log</h1>
-<h2>Details for system "[% system %]"[% IF stage != 'OK' %] failure at stage [% stage ; ELSE %], status 'OK'[% END %], snapshot taken [% urldt %]</h2>
-<table cellspacing="0">
- <tr>
- <th class="head" rowspan="2">System Information</th>
- <th>Farm member</th>
- <th>Branch</th>
- <th>OS</th>
- <th>Compiler</th>
- <th>Architecture</th>
- <th>Owner</th>
- </tr>
- <tr>
- <td>[% system %]</td>
- <td><a href="/cgi-bin/show_history.pl?nm=[% system %]&br=[% branch %]">[% branch %]</a></td>
- <td>[% info_row.operating_system %] [% info_row.os_version %]</td>
- <td>[% info_row.compiler %] [% info_row.compiler_version %]</td>
- <td>[% info_row.architecture %]</td>
- <td>[% info_row.owner_email %]</td>
- </tr>
- </table>
-[% IF info_row.sys_notes %]
- <br />
- <table>
- <tr>
- <th class="head" rowspan="2">System Notes</th>
- <th>Date</th>
- <th>Notes</th>
- </tr>
- <tr>
- <td>[% info_row.sys_notes_date %]</td>
- <td>[% info_row.sys_notes %]</td>
- </tr>
- </table>
-[% END %]
-[% cell = 0; FOREACH logstage IN log_file_names ; striplog = logstage.replace('\.log$','') ; cell = loop.count %]
- [% IF loop.first %]
- <br /> <table><tr><th class='head' rowspan='[% logrows %]'>Stage Logs</th>
- [% END %]
- [% IF loop.count > 1 and loop.count % lrfactor == 1 %]<tr>[% END %]
- <td><a href='show_stage_log.pl?nm=[% system %]&dt=[% urldt | uri %]&stg=[% striplog %]'>[% striplog %]</a></td>
- [% IF loop.count % lrfactor == 0 %]</tr>[% END %]
-[% END %]
-
-[% IF cell > 0 ; nrcell = cell + 1; ncells = [ nrcell .. logcells ] ; FOREACH rcell IN ncells %]
- [% IF rcell > 1 and rcell % lrfactor == 1 %]<tr>[% END %]
- <td> </td>
- [% IF rcell % lrfactor == 0 %]</tr>[% END %]
- [% END %]
- </table>
-[% END %]
-
-<h3>Configuration summary</h3>
-<pre>
-[% conf | html %]
-</pre>
-<h3>Files changed this run</h3>
-<pre>
-[%- IF changed_this_run.0 -%]
-[%- FOREACH changed IN changed_this_run %]
-<a href="[% IF scm == 'git' ; giturl; changed.1; ELSE ; cvsurl ; changed.0; 'rev='; changed.1; END %]">[% changed.0 ; IF scm == 'cvs'; ' '; changed.1; END %]</a>
-[%- END -%]
-[%- ELSE %]
-not recorded
-[% END -%]
-</pre>
-[% IF stage != 'OK' %]
-<h3>Files changed since last success</h3>
-<pre>
-[%- IF changed_since_success.0 %]
-[%- FOREACH changed IN changed_since_success %]
-<a href="[% IF scm == 'git' ; giturl; changed.1; ELSE ; cvsurl ; changed.0; 'rev='; changed.1; END %]">[% changed.0 ; IF scm == 'cvs'; ' '; changed.1; END %]</a>
-[%- END -%]
-[%- ELSE %]
-not recorded
-[% END -%]
-</pre>
-[% END %]
-<h3>Log</h3>
-<pre>
-[% log | html %]
-</pre>
-[% END %]
+++ /dev/null
-[% WRAPPER 'page.tt'
- title = 'PostgreSQL BuildFarm Members'
- bodyclass = 'members'
- pagebutton = 'members'
-%]
-<h1>PostgreSQL BuildFarm Members</h1>
- <p>Click branch links to see build history. Click the heading links to resort the list. Select members by checkbox and hit the button at the bottom to create a status custom filter.</p>
- <form name="filter" method="GET" action="/cgi-bin/show_status.pl">
- <table cellspacing="0">
- <tr>
- <td> </td>
- <th><a href="/cgi-bin/show_members.pl?sort_by=name">Name</a><br /><a href="/cgi-bin/show_members.pl?sort_by=owner">Owner</a></th>
- <th><a href="/cgi-bin/show_members.pl?sort_by=os">OS / Version</a></th>
- <th><a href="/cgi-bin/show_members.pl?sort_by=compiler">Compiler / Version</a></th>
- <th><a href="/cgi-bin/show_members.pl?sort_by=arch">Arch</a></th>
- <th>Branches reported on<br />(most recent report)</th>
- </tr>
-[% alt = true %]
-[% FOREACH row IN statrows ;
- have_recent = 0;
- FOREACH branch_days IN row.branches.split(',') ;
- branch_fields = branch_days.split(':');
- branch_day = branch_fields.1;
- IF branch_day < 365 ; have_recent = 1; END;
- END;
- IF have_recent ;
-%] <tr [%- IF alt %]class="alt"[% END -%]>
- [% alt = ! alt %]
- <td><input type="checkbox" name="member" value="[% row.name %]" /></td>
- <td>[% row.name %]<br />[% row.owner_email %]
-[% IF row.sys_notes %]
- <br />
- Notes: ([% row.sys_notes_date %]) [% row.sys_notes %]
-[% END %]
- </td>
- <td>[% row.operating_system %]<br />[% row.os_version %]
- [% prev_osver = row.osversion;
- FOREACH personality IN row.personalities;
- IF personality.os_version != prev_osver
- %]
- <br / > w.e.f. [% personality.effective_date %]: [% personality.os_version %]
- [% prev_osver = personality.os_version; END; END %]
- </td>
- <td>[% row.compiler %]<br />[% row.compiler_version %]
- [% prev_compver = row.compiler_version;
- FOREACH personality IN row.personalities;
- IF personality.compiler_version != prev_compver
- %]
- <br / > w.e.f. [% personality.effective_date %]: [% personality.compiler_version %]
- [% prev_compver = personality.compiler_version; END; END %]
- </td>
- <td>[% row.arch %]</td>
- <td class="branch">[% IF ! row.branches ; ' ' ; END -%]
- <ul>
- [%-
- FOREACH branch_days IN row.branches.split(',') ;
- branch_fields = branch_days.split(':');
- branch = branch_fields.0;
- branch_day = branch_fields.1;
- IF branch_day < 365 ;
- %]<li><a
- href="show_history.pl?nm=[% row.name %]&br=[% branch %]"
- title="History"
- >[% branch %]</a> ([% branch_day %] days ago)</li>[% END; END %]</ul></td>
- </tr>
-[% END; END %]
- </table>
- <input type="submit" value="Make Filter" />
- </form>
-[% END %]
+++ /dev/null
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>[% title %]</title>
- <link rel="icon" type="image/png" href="/elephant-icon.png" />
- <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
- <style type="text/css"><!--
- li#[% pagebutton %] a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat 100% -20px; }
- li#[% pagebutton %] { background: url(/inc/b/l.png) no-repeat 0% -20px; }
- --></style>
- </head>
- <body class="[% bodyclass %]">
- <div id="wrapper">
- <div id="banner">
- <a href="/index.html"><img src="/inc/pgbuildfarm-banner.png" alt="PostgreSQL BuildFarm" width="800" height="73" /></a>
- <div id="nav">
- <ul>
- <li id="home"><a href="/index.html" title="PostgreSQL BuildFarm Home">Home</a></li>
- <li id="status"><a href="/cgi-bin/show_status.pl" title="Current results">Status</a></li>
- <li id="members"><a href="/cgi-bin/show_members.pl" title="Platforms tested">Members</a></li>
- <li id="register"><a href="/cgi-bin/register-form.pl" title="Join PostgreSQL BuildFarm">Register</a></li>
- <li id="pgfoundry"><a href="http://pgfoundry.org/projects/pgbuildfarm/">PGFoundry</a></li>
- </ul>
- </div><!-- nav -->
- </div><!-- banner -->
- <div id="main">
- [% content %]
- </div><!-- main -->
- <hr />
- <p style="text-align: center;">
- Hosting for the PostgreSQL Buildfarm is generously
- provided by:
- <a href="http://www.commandprompt.com">CommandPrompt, The PostgreSQL Company</a>
- </p>
- </div><!-- wrapper -->
- </body>
-</html>
+++ /dev/null
-[% WRAPPER 'page.tt'
- title = 'PostgreSQL BuildFarm Application'
- bodyclass = 'application'
- pagebutton = 'register'
-%]
-<h1>Application to join PostgreSQL BuildFarm</h1>
-
-<p>Here is a short description of what is required to join the buildfarm successfully. Please read it carefully
-before submitting this form.</p>
-
-<ul>
-<li> your machine will need to be able to contact <a href="http://www.pgbuildfarm.org">http://www.pgbuildfarm.org</a>
- either directly or via proxy, and it will need access to a PostgreSQL CVS repository,
- either the one at postgresql.org or a mirror (you can set up your own mirror using CSVup on a Linux or FreeBSD machine -
- this is recommended).</li>
-<li> have a working Postgresql build environment for your platform
- (for Windows this means MSys/MinGW with the libz and libintl stuff, and ideally native Python and Tcl).</li>
-<li> Windows only: you will need a native perl installed as well as the one in the MSys DTK. The one from ActiveState works fine.</li>
-<li> download and unpack the latest release of client code from
- <a href="http://pgfoundry.org/frs/?group_id=1000040">http://pgfoundry.org/frs/?group_id=1000040</a></li>
-<li> read instructions at
- <a href="http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto">http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto</a></li>
-<li> get the software running locally using flags --force --nostatus --nosend</li>
-<li> register your machine on this page</li>
-<li> when you receive credentials, put them in the config file, and schedule regular builds (without those flags)
- for the branches you want to support - which should be at least HEAD and the most recent stable branch.</li>
-</ul>
-<hr />
-
-<p>Please complete all items.</p>
-<p>For Linux, please specify the name and version of the <b>Distribution</b> for the Operating Systems items.
-Do not use the name "Linux". For example, for my test machine the Operating
-Systems is "Fedora Core" and the version is "4".</p>
-<form method="post" action="/cgi-bin/register.pl">
-<table cellspacing="0">
-<tr>
- <th>Operating System</th>
- <td><input type="text" name="os" value="" /></td>
-</tr>
-<tr>
- <th>OS Version</th>
- <td><input type="text" name="osv" value="" /></td>
-</tr>
-<tr>
- <th>Compiler</th>
- <td><input type="text" name="comp" value="" /></td>
-</tr>
-<tr>
- <th>Compiler Version</th>
- <td><input type="text" name="compv" value="" /></td>
-</tr>
-<tr>
- <th>Architecture</th>
- <td><input type="text" name="arch" value="" /></td>
-</tr>
-<tr>
- <th>Your name</th>
- <td><input type="text" name="owner" value="" /></td>
-</tr>
-<tr>
- <th>Your email address</th>
- <td><input type="text" name="email" value="" /></td>
-</tr>
-<tr>
-<th colspan="2">[% captcha %]</th>
-</tr>
-<tr>
- <th class="submit" colspan="2"><input type="submit" /></th>
-</tr>
-</table>
-</form>
-[% END %]
+++ /dev/null
-[% WRAPPER 'page.tt'
- title = 'PostgreSQL BuildFarm Application'
- bodyclass = 'application'
- pagebutton = 'none'
-%]
-<p>You need to complete all the form items.
-<a href="/cgi-bin/register-form.pl">Please click here to try again.</a>
-</p>
-[% END %]
+++ /dev/null
-[% WRAPPER 'page.tt'
- title = 'PostgreSQL BuildFarm Application'
- bodyclass = 'application'
- pagebutton = 'none'
-%]
-<h1>PostgreSQL BuildFarm Application received</h1>\
-<p>Thank you. You should hear from us shortly.</p>
-[% END %]
+++ /dev/null
-[%
- flag_imgs = {
- perl = '/img/camel.png',
- python = '/img/python.png',
- debug = '/img/bug.png',
- pam => '/img/pam.png',
- cassert => '/img/cassert.png',
- openssl => '/img/ssl_icon.gif',
- nls => '/img/translateicon.gif',
- krb5 => '/img/krb.gif',
- tcl => '/img/tcl.png',
- vpath => '/img/vpath.png',
- xml => '/img/xml.png',
- 'thread-safety' => '/img/threads.gif',
- 'integer-datetimes' = '/img/days.png',
- git => '/img/git.png',
- }
--%]
-[%- BLOCK img ; IF flag == 'depend' or flag == 'gnu-ld' ; ; ELSIF flag_imgs.$flag %]<img src="[% flag_imgs.$flag %]" title="[% flag %]" alt="[% flag %]" height="16" width="16" class="inline" align="bottom" /> [% ELSE %][%#
- flag ; ' '
-%][% END ; END -%]
-[%- BLOCK sysnotes ; IF row.sys_notes %]<img src="/img/notes.png" height="16" width="16" title="[% row.sys_notes_ts.replace(' .*','') | html %]: [% row.sys_notes | html %]" />
-[%- ELSE %] [% END ; END -%]
-[%- BLOCK cl %] class="[% SWITCH bgfor.replace('-.*','') -%]
- [%- CASE 'OK' %]pass[% CASE 'ContribCheck' %]warn[% CASE [ 'Check' 'InstallCheck' ] %]warnx[% CASE %]fail[% END %]"
-[%- END -%]
-[% WRAPPER 'page.tt'
- title = 'PostgreSQL BuildFarm Status'
- bodyclass = 'none'
- pagebutton = 'status'
-%]
- <h1>PostgreSQL BuildFarm Status</h1>
- <p>
- Shown here is the latest status of each farm member
- for each branch it has reported on in the last 30 days.
- </p>
- <p>
- Use the farm member link for history of that member
- on the relevant branch.
- </p>
-<table><tr><th class="head" rowspan="2">Legend</th>
-[% FOREACH flagset IN flag_imgs %]
-<td><img src="[% flagset.value %]" title="[% flagset.key %]" alt="[% flagset.key %]" height="16" width="16" class="inline" align="center"/> = [% flagset.key %]</td>
-[% IF loop.count == 7 %]</tr><tr>[% END %]
-[% END %]
-</tr></table>
-<br />
- <table cellspacing="0">
-[% brch = "" %]
-[% FOREACH row IN statrows %]
-[% IF row.branch != brch ; brch = row.branch %]
-<tr><th class="head" colspan="5">Branch: [% brch %]</th></tr>
-<tr><th colspan="2">Alias</th><th>System</th><th>Status</th><th>Flags</th></tr>
-[% END %]
-<tr [% PROCESS cl bgfor=row.stage %]>
- <td><a
- href="show_history.pl?nm=[% row.sysname %]&br=[% row.branch %]"
- title="History"
- >[% row.sysname %]</a></td>
- <td>[% PROCESS sysnotes %]</td>
- <td><span class="opsys">[% row.operating_system %]
- [% row.os_version %]</span> <span class="compiler">
- [%- row.compiler %]
- [% row.compiler_version %]</span> <span class="arch">
- [%- row.architecture %]</span></td>
- <td class="status">
- [%- row.when_ago | replace('\s',' ') %] ago
- [% row.stage -%]
- <a href="show_log.pl?nm=
- [%- row.sysname %]&dt=
- [%- row.snapshot | uri %]">
- [%- IF row.stage != 'OK' %]Details[% ELSE %]Config[% END -%]</a></td>
-
- <td class="flags">[% FOREACH flag IN row.build_flags.split().sort() ; PROCESS img ; END %]</td>
-</tr>
-[% END %]
- </table>
-[% END %]
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+
+use Digest::SHA1 qw(sha1_hex);
+use MIME::Base64;
+use DBI;
+use DBD::Pg;
+use Data::Dumper;
+use Mail::Send;
+use Safe;
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport
+ $all_stat $fail_stat $change_stat $green_stat
+);
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+die "no dbname" unless $dbname;
+die "no dbuser" unless $dbuser;
+
+# don't use configged dbuser/dbpass
+
+$dbuser=""; $dbpass="";
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+my $db = DBI->connect($dsn,$dbuser,$dbpass);
+
+die $DBI::errstr unless $db;
+
+my $clear_old = $db->do(q[
+
+ DELETE FROM alerts
+ WHERE sysname IN
+ (SELECT name FROM buildsystems WHERE no_alerts)
+ ]);
+
+
+my $sth = $db->prepare(q[
+
+ SELECT DISTINCT ON (sysname, branch)
+ sysname, branch,
+ extract(epoch from snapshot at time zone 'GMT')::int as snapshot,
+ conf_sum as config
+ FROM build_status s join buildsystems b on (s.sysname = b.name)
+ WHERE NOT b.no_alerts and
+ snapshot > current_timestamp - interval '30 days'
+ ORDER BY sysname, branch, snapshot desc
+
+ ]);
+
+$sth->execute;
+
+my @last_heard;
+
+while (my $row = $sth->fetchrow_hashref)
+{
+ push(@last_heard, $row);
+}
+
+$sth->finish;
+
+my $sql = q[
+
+ SELECT sysname, branch,
+ extract(epoch from first_alert) as first_alert,
+ extract(epoch from last_notification) as last_notification
+ FROM alerts
+
+ ];
+
+my $alerts = $db->selectall_hashref($sql,['sysname','branch']);
+
+my @need_cleared;
+my @need_alerts;
+
+my $clear_sth = $db->prepare(q[
+
+ DELETE FROM alerts
+ WHERE sysname = ?
+ AND branch = ?
+ ]);
+
+my $update_sth = $db->prepare(q[
+
+ UPDATE alerts
+ SET last_notification = timestamp '1970-01-01' + ( interval '1 second' * $1)
+ WHERE sysname = $2
+ AND branch = $3
+ ]);
+
+my $insert_sth = $db->prepare(q[
+
+ INSERT INTO alerts ( sysname, branch, first_alert, last_notification )
+ VALUES ($1, $2,
+ timestamp '1970-01-01' + ( interval '1 second' * $3),
+ timestamp '1970-01-01' + ( interval '1 second' * $4))
+ ]);
+
+
+my $now = time;
+my $lts = scalar(localtime);
+print "starting alert run: $lts\n";
+
+foreach my $sysbranch (@last_heard)
+{
+ # eval the config in a Safe container to protect ourselves
+ my $container = new Safe;
+ my $sconf = $sysbranch->{config};
+ unless ($sconf =~ s/.*(\$Script_Config)/$1/ms )
+ {
+ $sconf = '$Script_Config={};';
+ }
+ my $client_conf = $container->reval("$sconf;");
+
+ my %client_alert_settings = %{ $client_conf->{alerts} || {} };
+ my $setting = $client_alert_settings{$sysbranch->{branch}};
+ unless ($setting && $setting->{alert_after} && $setting->{alert_every})
+ {
+ # if no valid setting, clear any alert and keep going
+ if ($alerts->{$sysbranch->{sysname}}->{$sysbranch->{branch}})
+ {
+ $clear_sth->execute($sysbranch->{sysname},$sysbranch->{branch});
+ push(@need_cleared,[$sysbranch]);
+ }
+ next;
+ }
+ # ok, we have valid settings. should the alert be on?
+ my $hours_since_heard = ($now - $sysbranch->{snapshot}) / 3600;
+ # yep
+ print
+ "have settings for $sysbranch->{sysname}:$sysbranch->{branch} ",
+ "hours since heard = $hours_since_heard, ",
+ "setting = $setting->{alert_after} / $setting->{alert_every} \n";
+
+ if ($hours_since_heard > $setting->{alert_after})
+ {
+ my $known_alert =
+ $alerts->{$sysbranch->{sysname}}->{$sysbranch->{branch}};
+ if ($known_alert &&
+ ($now - (3600 * $setting->{alert_every})) >
+ $known_alert->{last_notification})
+ {
+ # check if it's too old - 15 days and twice initial seems plenty
+ if ($hours_since_heard > 360 &&
+ $hours_since_heard > 2 * $setting->{alert_after} )
+ {
+ print "alert is too old ... giving up\n";
+ next;
+ }
+
+ # old alert, but time to alert again
+ print "alert is on, but time to alert again\n";
+ $update_sth->execute($now,
+ $sysbranch->{sysname},
+ $sysbranch->{branch},
+ );
+ push(@need_alerts,[$sysbranch,$setting]);
+ print "alert updated\n";
+ }
+ elsif ( ! $known_alert )
+ {
+ # new alert
+ print "new alert needed\n";
+ $insert_sth->execute($sysbranch->{sysname},
+ $sysbranch->{branch},
+ $now,$now);
+ print "new record inserted\n";
+ push(@need_alerts,[$sysbranch,$setting]);
+ }
+ }
+ # nope, so clear the alert if it exists
+ elsif ($alerts->{$sysbranch->{sysname}}->{$sysbranch->{branch}})
+ {
+ print "clear exisiting alerts";
+ $clear_sth->execute($sysbranch->{sysname},$sysbranch->{branch});
+ push(@need_cleared,[$sysbranch,$setting]);
+ }
+
+}
+
+print "start emails\n";
+
+my $addr_sth = $db->prepare(q[
+
+ SELECT owner_email
+ FROM buildsystems
+ WHERE name = ?
+ ]);
+
+
+my $me = `id -un`; chomp $me;
+
+my $host = `hostname`; chomp $host;
+
+
+
+foreach my $clearme (@need_cleared)
+{
+ my ($sysbranch, $setting) = @$clearme;
+ my ($animal, $branch) = ($sysbranch->{sysname},$sysbranch->{branch});
+ my $text;
+ if ($setting)
+ {
+ my $hours = sprintf("%.2f",($now - $sysbranch->{snapshot}) / 3600);
+ $text = "$sysbranch->{sysname} has now reported " .
+ "on $sysbranch->{branch} $hours hours ago.";
+ }
+ else
+ {
+ $text = "$sysbranch->{sysname} has lost alarm settings on branch: " .
+ "$sysbranch->{branch}. Resetting alarm to off.";
+ }
+ my $msg = new Mail::Send;
+
+ $msg->set('From',"PG Build Farm <$me\@$host>");
+
+ $addr_sth->execute($animal);
+
+ my $mailto = $addr_sth->fetchrow_array;
+
+ print "sending clear to $mailto\n";
+
+ # $sth->finish;
+
+ $msg->to($mailto);
+ $msg->subject("PGBuildfarm member $animal Branch $branch Alert cleared");
+ my $fh = $msg->open;
+ print $fh "\n\n$text\n";
+ $fh->close;
+
+ print "alert cleared $animal $branch\n";
+}
+
+foreach my $clearme (@need_alerts)
+{
+ my ($sysbranch, $setting) = @$clearme;
+ my ($animal, $branch) = ($sysbranch->{sysname},$sysbranch->{branch});
+ my $hours = sprintf("%.2f",($now - $sysbranch->{snapshot}) / 3600);
+ my $text = "$sysbranch->{sysname} has not reported " .
+ "on $sysbranch->{branch} for $hours hours.";
+ my $msg = new Mail::Send;
+
+ $msg->set('From',"PG Build Farm <$me\@$host>");
+
+ $addr_sth->execute($animal);
+
+ my ($mailto) = $addr_sth->fetchrow_array;
+
+ # $sth->finish;
+
+ print "sending alert to $mailto\n";
+
+ $msg->to($mailto);
+
+ $msg->subject("PGBuildfarm member $animal Branch $branch " .
+ "Alert notification");
+ my $fh = $msg->open;
+ print $fh "\n\n$text\n";
+ $fh->close;
+
+ print "alert sent $animal $branch\n";
+}
+
+
+print "=================================\n";
+
+
+
--- /dev/null
+SetEnv BFConfDir /home/community/pgbuildfarm
+SetEnv BF_DEBUG on
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+
+use CGI;
+use Digest::SHA1 qw(sha1_hex);
+use MIME::Base64;
+use DBI;
+use DBD::Pg;
+use Data::Dumper;
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport);
+
+my $query = new CGI;
+
+my $sig = $query->path_info;
+$sig =~ s!^/!!;
+
+my $animal = $query->param('animal');
+my $sysnotes = $query->param('sysnotes');
+
+my $content = "animal=$animal\&sysnotes=$sysnotes";
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+die "no dbname" unless $dbname;
+die "no dbuser" unless $dbuser;
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+unless ($animal && defined($sysnotes) && $sig)
+{
+ print
+ "Status: 490 bad parameters\nContent-Type: text/plain\n\n",
+ "bad parameters for request\n";
+ exit;
+
+}
+
+
+my $db = DBI->connect($dsn,$dbuser,$dbpass);
+
+die $DBI::errstr unless $db;
+
+my $gethost=
+ "select secret from buildsystems where name = ? and status = 'approved'";
+my $sth = $db->prepare($gethost);
+$sth->execute($animal);
+my ($secret)=$sth->fetchrow_array();
+$sth->finish;
+
+
+unless ($secret)
+{
+ print
+ "Status: 495 Unknown System\nContent-Type: text/plain\n\n",
+ "System $animal is unknown\n";
+ $db->disconnect;
+ exit;
+
+}
+
+
+
+
+my $calc_sig = sha1_hex($content,$secret);
+
+if ($calc_sig ne $sig)
+{
+
+ print "Status: 450 sig mismatch\nContent-Type: text/plain\n\n";
+ print "$sig mismatches $calc_sig on content:\n$content";
+ $db->disconnect;
+ exit;
+}
+
+# undo escape-proofing of base64 data and decode it
+map {tr/$@/+=/; $_ = decode_base64($_); }
+ ($sysnotes);
+
+my $set_notes = q{
+
+ update buildsystems
+ set sys_notes = nullif($2,''),
+ sys_notes_ts = case
+ when coalesce($2,'') <> '' then now()
+ else null
+ end
+ where name = $1
+ and status = 'approved'
+
+};
+
+$sth = $db->prepare($set_notes);
+my $rv = $sth->execute($animal,$sysnotes);
+unless($rv)
+{
+ print "Status: 460 old data fetch\nContent-Type: text/plain\n\n";
+ print "error: ",$db->errstr,"\n";
+ $db->disconnect;
+ exit;
+}
+
+$sth->finish;
+
+
+
+$db->disconnect;
+
+print "Content-Type: text/plain\n\n";
+print "request was on:\n$content\n";
+
+
+
--- /dev/null
+#!/usr/bin/perl
+
+print "Contect-Type: text/plain\n\n";
+
+print "Conf: $ENV{BFConfDir}\n";
+
+print `pwd`;
+
+print `id`;
+
+foreach my $key (sort keys %ENV)
+{
+ my $val = $ENV{$key};
+ print "$key=$val\n";
+}
--- /dev/null
+#!/usr/bin/perl
+
+use lib "/home/community/pgbuildfarm/lib/lib/perl5/site_perl";
+
+use SOAP::Lite +trace;
+
+my $obj = SOAP::Lite
+ ->uri('http://www.pgbuildfarm.org/PGBuildFarm')
+ ->proxy('http://127.0.0.1/cgi-bin/show_status_soap.pl')
+ ->request->header("Host" => "www.pgbuildfarm.org")
+ ;
+
+my $data = $obj->get_status->result;
+my @fields = qw( branch sysname stage status
+ operating_system os_version
+ compiler compiler_version architecture
+ when_ago snapshot build_flags
+ );
+
+print "Content-Type: text/plain\n\n";
+
+my $head = join (' | ', @fields);
+print $head,"\n";
+
+foreach my $datum (@$data)
+{
+ my $line = join (' | ', @{$datum}{@fields});
+ print $line,"\n";
+}
+
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport
+ $all_stat $fail_stat $change_stat $green_stat
+ $server_time
+ $min_script_version $min_web_script_version
+);
+
+# force this before we do anything - even load modules
+BEGIN { $server_time = time; }
+
+use CGI;
+use Digest::SHA1 qw(sha1_hex);
+use MIME::Base64;
+use DBI;
+use DBD::Pg;
+use Data::Dumper;
+use Mail::Send;
+use Safe;
+use Time::ParseDate;
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+die "no dbname" unless $dbname;
+die "no dbuser" unless $dbuser;
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+my $query = new CGI;
+
+my $sig = $query->path_info;
+$sig =~ s!^/!!;
+
+my $stage = $query->param('stage');
+my $ts = $query->param('ts');
+my $animal = $query->param('animal');
+my $log = $query->param('log');
+my $res = $query->param('res');
+my $conf = $query->param('conf');
+my $branch = $query->param('branch');
+my $changed_since_success = $query->param('changed_since_success');
+my $changed_this_run = $query->param('changed_files');
+my $log_archive = $query->param('logtar');
+
+my $content =
+ "branch=$branch&res=$res&stage=$stage&animal=$animal&".
+ "ts=$ts&log=$log&conf=$conf";
+
+my $extra_content =
+ "changed_files=$changed_this_run&".
+ "changed_since_success=$changed_since_success&";
+
+unless ($animal && $ts && $stage && $sig)
+{
+ print
+ "Status: 490 bad parameters\nContent-Type: text/plain\n\n",
+ "bad parameters for request\n";
+ exit;
+
+}
+
+unless ($branch =~ /^(HEAD|REL\d+_\d+_STABLE)$/)
+{
+ print
+ "Status: 492 bad branch parameter $branch\nContent-Type: text/plain\n\n",
+ "bad branch parameter $branch\n";
+ exit;
+
+}
+
+
+my $db = DBI->connect($dsn,$dbuser,$dbpass);
+
+die $DBI::errstr unless $db;
+
+my $gethost=
+ "select secret from buildsystems where name = ? and status = 'approved'";
+my $sth = $db->prepare($gethost);
+$sth->execute($animal);
+my ($secret)=$sth->fetchrow_array();
+$sth->finish;
+
+my $tsdiff = time - $ts;
+
+my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($ts);
+$year += 1900; $mon +=1;
+my $date=
+ sprintf("%d-%.2d-%.2d_%.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
+
+if ($ENV{BF_DEBUG} || ($ts > time) || ($ts + 86400 < time ) || (! $secret) )
+{
+ open(TX,">../buildlogs/$animal.$date");
+ print TX "sig=$sig\nlogtar-len=" , length($log_archive),
+ "\nstatus=$res\nstage=$stage\nconf:\n$conf\n",
+ "tsdiff:$tsdiff\n",
+ "changed_this_run:\n$changed_this_run\n",
+ "changed_since_success:\n$changed_since_success\n",
+ "log:\n",$log;
+# $query->save(\*TX);
+ close(TX);
+}
+
+unless ($ts < time + 120)
+{
+ my $gmt = gmtime($ts);
+ print "Status: 491 bad ts parameter - $ts ($gmt GMT) is in the future.\n",
+ "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is in the future\n";
+ $db->disconnect;
+ exit;
+}
+
+unless ($ts + 86400 > time)
+{
+ my $gmt = gmtime($ts);
+ print "Status: 491 bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n",
+ "Content-Type: text/plain\n\n bad ts parameter - $ts ($gmt GMT) is more than 24 hours ago.\n";
+ $db->disconnect;
+ exit;
+}
+
+unless ($secret)
+{
+ print
+ "Status: 495 Unknown System\nContent-Type: text/plain\n\n",
+ "System $animal is unknown\n";
+ $db->disconnect;
+ exit;
+
+}
+
+
+
+
+my $calc_sig = sha1_hex($content,$secret);
+my $calc_sig2 = sha1_hex($extra_content,$content,$secret);
+
+if ($calc_sig ne $sig && $calc_sig2 ne $sig)
+{
+
+ print "Status: 450 sig mismatch\nContent-Type: text/plain\n\n";
+ print "$sig mismatches $calc_sig($calc_sig2) on content:\n$content";
+ $db->disconnect;
+ exit;
+}
+
+# undo escape-proofing of base64 data and decode it
+map {tr/$@/+=/; $_ = decode_base64($_); }
+ ($log, $conf,$changed_this_run,$changed_since_success,$log_archive);
+
+
+if ($log =~/Last file mtime in snapshot: (.*)/)
+{
+ my $snaptime = parsedate($1);
+ if ($snaptime < (time - (10 * 86400)))
+ {
+ print "Status: 493 snapshot too old: $1\nContent-Type: text/plain\n\n";
+ print "snapshot to old: $1\n";
+ $db->disconnect;
+ exit;
+ }
+}
+
+($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($ts);
+$year += 1900; $mon +=1;
+my $dbdate=
+ sprintf("%d-%.2d-%.2d %.2d:%.2d:%.2d",$year,$mon,$mday,$hour,$min,$sec);
+
+my $log_file_names;
+my @log_file_names;
+my $dirname = "../buildlogs/tmp.$$.unpacklogs";
+
+if ($log_archive)
+{
+ my $log_handle;
+ my $archname = "../buildlogs/tmp.$$.tgz";
+ open($log_handle,">$archname");
+ binmode $log_handle;
+ print $log_handle $log_archive;
+ close $log_handle;
+ mkdir $dirname;
+ @log_file_names = `tar -z -C $dirname -xvf $archname 2>/dev/null`;
+ map {s/\s+//g; } @log_file_names;
+ my @qnames = @log_file_names;
+ map { $_ = qq("$_"); } @qnames;
+ $log_file_names = '{' . join(',',@qnames) . '}';
+ # unlink $archname;
+}
+
+my $config_flags;
+my $container = new Safe;
+my $sconf = $conf;
+unless ($sconf =~ s/.*(\$Script_Config)/$1/ms )
+{
+ $sconf = '$Script_Config={};';
+}
+my $client_conf = $container->reval("$sconf;");
+
+if ($min_script_version)
+{
+ $client_conf->{script_version} ||= '0.0';
+ my ($minmajor,$minminor) = split(/\./,$min_script_version);
+ my ($smajor,$sminor) = split(/\./,$client_conf->{script_version});
+ if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
+ {
+ print "Status: 460 script version too low\nContent-Type: text/plain\n\n";
+ print
+ "Script version is below minimum required\n",
+ "Reported version: $client_conf->{script_version},",
+ "Minumum version required: $min_script_version\n";
+ $db->disconnect;
+ exit;
+ }
+}
+
+if ($min_web_script_version)
+{
+ $client_conf->{web_script_version} ||= '0.0';
+ my ($minmajor,$minminor) = split(/\./,$min_script_version);
+ my ($smajor,$sminor) = split(/\./,$client_conf->{script_version});
+ if ($minmajor > $smajor || ($minmajor == $smajor && $minminor > $sminor))
+ {
+ print "Status: 461 web script version too low\nContent-Type: text/plain\n\n";
+ print
+ "Web Script version is below minimum required\n",
+ "Reported version: $client_conf->{web_script_version},",
+ "Minumum version required: $min_web_script_version\n";
+ $db->disconnect;
+ exit;
+ }
+}
+
+my @config_flags;
+if (not exists $client_conf->{config_opts} )
+{
+ @config_flags = ();
+}
+elsif (ref $client_conf->{config_opts} eq 'HASH')
+{
+ # leave out keys with false values
+ @config_flags = grep { $client_conf->{config_opts}->{$_} }
+ keys %{$client_conf->{config_opts}};
+}
+elsif (ref $client_conf->{config_opts} eq 'ARRAY' )
+{
+ @config_flags = @{$client_conf->{config_opts}};
+}
+
+if (@config_flags)
+{
+ @config_flags = grep {! m/=/ } @config_flags;
+ map {s/\s+//g; $_=qq("$_"); } @config_flags;
+ push @config_flags,'git' if $client_conf->{scm} eq 'git';
+ $config_flags = '{' . join(',',@config_flags) . '}' ;
+}
+
+my $scm = $client_conf->{scm} || 'cvs';
+my $scmurl = $client_conf->{scm_url};
+
+my $logst = <<EOSQL;
+ insert into build_status
+ (sysname, snapshot,status, stage, log,conf_sum, branch,
+ changed_this_run, changed_since_success,
+ log_archive_filenames , log_archive, build_flags, scm, scmurl)
+ values(?,?,?,?,?,?,?,?,?,?,?,?,?,?)
+EOSQL
+;
+$sth=$db->prepare($logst);
+
+$sth->bind_param(1,$animal);
+$sth->bind_param(2,$dbdate);
+$sth->bind_param(3,$res);
+$sth->bind_param(4,$stage);
+$sth->bind_param(5,$log);
+$sth->bind_param(6,$conf);
+$sth->bind_param(7,$branch);
+$sth->bind_param(8,$changed_this_run);
+$sth->bind_param(9,$changed_since_success);
+$sth->bind_param(10,$log_file_names);
+#$sth->bind_param(11,$log_archive,{ pg_type => DBD::Pg::PG_BYTEA });
+$sth->bind_param(11,undef,{ pg_type => DBD::Pg::PG_BYTEA });
+$sth->bind_param(12,$config_flags);
+$sth->bind_param(13,$scm);
+$sth->bind_param(14,$scmurl);
+
+$sth->execute;
+$sth->finish;
+
+my $logst2 = <<EOSQL;
+
+ insert into build_status_log
+ (sysname, snapshot, branch, log_stage, log_text, stage_duration)
+ values (?, ?, ?, ?, ?, ?)
+
+EOSQL
+ ;
+
+$sth = $db->prepare($logst2);
+
+$/=undef;
+
+my $stage_start = $ts;
+
+foreach my $log_file( @log_file_names )
+{
+ my $handle;
+ open($handle,"$dirname/$log_file");
+ my $mtime = (stat $handle)[9];
+ my $stage_interval = $mtime - $stage_start;
+ $stage_start = $mtime;
+ my $ltext = <$handle>;
+ close($handle);
+ $ltext =~ s/\x00/\\0/g;
+ $sth->execute($animal,$dbdate,$branch,$log_file,$ltext,
+ "$stage_interval seconds");
+}
+
+
+$sth->finish;
+
+my $prevst = <<EOSQL;
+
+ select coalesce((select distinct on (snapshot) stage
+ from build_status
+ where sysname = ? and branch = ? and snapshot < ?
+ order by snapshot desc
+ limit 1), 'NEW') as prev_status
+
+EOSQL
+
+$sth=$db->prepare($prevst);
+$sth->execute($animal,$branch,$dbdate);
+my $row=$sth->fetchrow_arrayref;
+my $prev_stat=$row->[0];
+$sth->finish;
+
+my $det_st = <<EOS;
+
+ select operating_system|| ' / ' || os_version as os ,
+ compiler || ' / ' || compiler_version as compiler,
+ architecture as arch
+ from buildsystems
+ where status = 'approved'
+ and name = ?
+
+EOS
+;
+$sth=$db->prepare($det_st);
+$sth->execute($animal);
+$row=$sth->fetchrow_arrayref;
+my ($os, $compiler,$arch) = @$row;
+$sth->finish;
+
+$db->begin_work;
+$db->do("delete from dashboard_mat");
+$db->do("insert into dashboard_mat select * from dashboard_mat_data");
+$db->commit;
+
+$db->disconnect;
+
+print "Content-Type: text/plain\n\n";
+print "request was on:\n";
+print "res=$res&stage=$stage&animal=$animal&ts=$ts";
+
+my $client_events = $client_conf->{mail_events};
+
+if ($ENV{BF_DEBUG})
+{
+ my $client_time = $client_conf->{current_ts};
+ open(TX,">>../buildlogs/$animal.$date");
+ print TX "\n",Dumper(\$client_conf),"\n";
+ print TX "server time: $server_time, client time: $client_time\n" if $client_time;
+ close(TX);
+}
+
+my $bcc_stat = [];
+my $bcc_chg=[];
+if (ref $client_events)
+{
+ my $cbcc = $client_events->{all};
+ if (ref $cbcc)
+ {
+ push @$bcc_stat, @$cbcc;
+ }
+ elsif (defined $cbcc)
+ {
+ push @$bcc_stat, $cbcc;
+ }
+ if ($stage ne 'OK')
+ {
+ $cbcc = $client_events->{all};
+ if (ref $cbcc)
+ {
+ push @$bcc_stat, @$cbcc;
+ }
+ elsif (defined $cbcc)
+ {
+ push @$bcc_stat, $cbcc;
+ }
+ }
+ $cbcc = $client_events->{change};
+ if (ref $cbcc)
+ {
+ push @$bcc_chg, @$cbcc;
+ }
+ elsif (defined $cbcc)
+ {
+ push @$bcc_chg, $cbcc;
+ }
+ if ($stage eq 'OK' || $prev_stat eq 'OK')
+ {
+ $cbcc = $client_events->{green};
+ if (ref $cbcc)
+ {
+ push @$bcc_chg, @$cbcc;
+ }
+ elsif (defined $cbcc)
+ {
+ push @$bcc_chg, $cbcc;
+ }
+ }
+}
+
+
+my $url = $query->url(-base => 1);
+
+
+my $stat_type = $stage eq 'OK' ? 'Status' : 'Failed at Stage';
+
+my $mailto = [@$all_stat];
+push(@$mailto,@$fail_stat) if $stage ne 'OK';
+
+my $me = `id -un`; chomp $me;
+
+my $host = `hostname`; chomp $host;
+
+my $msg = new Mail::Send;
+
+$msg->set('From',"PG Build Farm <$me\@$host>");
+
+$msg->to(@$mailto);
+$msg->bcc(@$bcc_stat) if (@$bcc_stat);
+$msg->subject("PGBuildfarm member $animal Branch $branch $stat_type $stage");
+my $fh = $msg->open;
+print $fh <<EOMAIL;
+
+
+The PGBuildfarm member $animal had the following event on branch $branch:
+
+$stat_type: $stage
+
+The snapshot timestamp for the build that triggered this notification is: $dbdate
+
+The specs of this machine are:
+OS: $os
+Arch: $arch
+Comp: $compiler
+
+For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch
+
+EOMAIL
+
+$fh->close;
+
+exit if ($stage eq $prev_stat);
+
+$mailto = [@$change_stat];
+push(@$mailto,@$green_stat) if ($stage eq 'OK' || $prev_stat eq 'OK');
+
+$msg = new Mail::Send;
+
+$msg->set('From',"PG Build Farm <$me\@$host>");
+
+$msg->to(@$mailto);
+$msg->bcc(@$bcc_chg) if (@$bcc_chg);
+
+$stat_type = $prev_stat ne 'OK' ? "changed from $prev_stat failure to $stage" :
+ "changed from OK to $stage";
+$stat_type = "New member: $stage" if $prev_stat eq 'NEW';
+$stat_type .= " failure" if $stage ne 'OK';
+
+$msg->subject("PGBuildfarm member $animal Branch $branch Status $stat_type");
+$fh = $msg->open;
+print $fh <<EOMAIL;
+
+The PGBuildfarm member $animal had the following event on branch $branch:
+
+Status $stat_type
+
+The snapshot timestamp for the build that triggered this notification is: $dbdate
+
+The specs of this machine are:
+OS: $os
+Arch: $arch
+Comp: $compiler
+
+For more information, see $url/cgi-bin/show_history.pl?nm=$animal&br=$branch
+
+EOMAIL
+
+$fh->close;
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+use Template;
+use Captcha::reCAPTCHA;
+
+use vars qw( $template_dir $captcha_pubkey );
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+
+my $c = Captcha::reCAPTCHA->new;
+
+my $captcha = $c->get_html($captcha_pubkey);
+
+my $template_opts = { INCLUDE_PATH => $template_dir };
+my $template = new Template($template_opts);
+
+print "Content-Type: text/html\n\n";
+
+
+$template->process('register-form.tt',{captcha => $captcha});
+
+
+
+
+
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+use DBI;
+use Template;
+use CGI;
+use Template;
+use Captcha::reCAPTCHA;
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport $notifyapp $captcha_pubkey $captcha_privkey $template_dir);
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+my $template_opts = { INCLUDE_PATH => $template_dir};
+my $template = new Template($template_opts);
+my $query = new CGI;
+
+my $params = $query->Vars;
+
+my ($os, $osv, $comp, $compv, $arch, $email, $owner, $challenge, $response ) = @{$params}{
+ qw(os osv comp compv arch email owner recaptcha_challenge_field recaptcha_response_field)};
+
+my $captcha = Captcha::reCAPTCHA->new;
+my $captcha_ok = $captcha->check_answer
+ (
+ $captcha_privkey,
+ $ENV{'REMOTE_ADDR'},
+ $challenge, $response
+ );
+
+
+unless ($os && $osv && $comp && $compv && $arch && $email && $owner && $captcha_ok->{is_valid})
+{
+ print "Content-Type: text/html\n\n";
+ $template->process('register-incomplete.tt');
+ exit;
+}
+
+# some idiot has a script that tries to talk to me
+# this should catch and dispose of him
+if ((grep {/rgergerger|\@pgbuildfarm\.org|Content-Type:|http:|mailto:|href=|None|Unknown/} $os,$osv,$comp,$compv,$arch,$email,$owner)
+ || ($email =~ /john.*\@aol.com/) )
+{
+ print
+ "Status: 403 Forbidden - go away idiot\n",
+ "Content-Type: text/plain\n\n";
+ exit;
+}
+
+# count transitions to and from upper case
+my $trans = 1;
+my $counttrans = 0;
+foreach (split "" ,"$os$osv$comp$compv$arch$owner")
+{
+ if (/[A-Z]/)
+ {
+ next if $trans;
+ $trans = 1;
+ $counttrans++;
+ }
+ else
+ {
+ next unless $trans;
+ $trans = 0;
+ $counttrans++;
+ }
+}
+
+# reject junk with too many transitions into/outof upper case
+if ($counttrans > 20)
+{
+ print
+ "Status: 403 Forbidden - go away idiot\n",
+ "Content-Type: text/plain\n\n";
+ exit;
+}
+
+
+
+my $secret = "";
+my $dummyname=""; # we'll select an animal name when we approve it.
+foreach (1..8)
+{
+ # 8 random chars is enough for the dummy name
+ $secret .= substr("0123456789abcdefghijklmnopqrstuvwxyz",int(rand(36)),1);
+ $dummyname .= substr("0123456789abcdef",int(rand(16)),1);
+}
+foreach (9..32)
+{
+ $secret .= substr("0123456789abcdef",int(rand(16)),1);
+}
+
+my $db = DBI->connect($dsn,$dbuser,$dbpass);
+
+my $statement = <<EOS;
+
+ insert into buildsystems
+ (name, secret, operating_system, os_version, compiler, compiler_version,
+ architecture, status, sys_owner, owner_email)
+ values(?,?,?,?,?,?,?,'pending',?,?)
+
+EOS
+;
+
+my $sth=$db->prepare($statement);
+my $rv=$sth->execute($dummyname,$secret,$os,$osv,$comp,$compv,
+ $arch,$owner,$email);
+my $err=$db->errstr;
+
+# everything looks OK, so tell them so
+print "Content-type: text/html\n\n";
+$template->process('register-ok.tt');
+
+$sth->finish;
+$db->disconnect;
+
+
+use Mail::Send;
+
+my $msg = new Mail::Send;
+
+my $me = `id -un`;
+
+my $host = `hostname`;
+
+$msg->set('From',"PG Build Farm <$me\@$host>");
+
+$msg->to(@$notifyapp);
+$msg->subject('New Buildfarm Application');
+my $fh = $msg->open;
+print $fh "\n\nName: $dummyname\n",
+ "OS: $os: $osv\n",
+ "Arch: $arch\n",
+ "Comp: $comp: $compv\n",
+ "Owner: $owner <$email>\n";
+$fh->close;
+
+
+
+
+
+
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+use DBI;
+use Template;
+use CGI;
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport $template_dir);
+
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+#require "BuildFarmWeb.pl";
+
+die "no dbname" unless $dbname;
+die "no dbuser" unless $dbuser;
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+my $db = DBI->connect($dsn,$dbuser,$dbpass);
+
+die $DBI::errstr unless $db;
+
+my $query = new CGI;
+my $member = $query->param('nm'); $member =~ s/[^a-zA-Z0-9_ -]//g;
+my $branch = $query->param('br'); $branch =~ s/[^a-zA-Z0-9_ -]//g;
+my $hm = $query->param('hm'); $hm =~ s/[^a-zA-Z0-9_ -]//g;
+$hm = '240' unless $hm =~ /^\d+$/;
+
+my $latest_personality = $db->selectrow_arrayref(q{
+ select os_version, compiler_version
+ from personality
+ where name = ?
+ order by effective_date desc limit 1
+ }, undef, $member);
+
+# we don't really need to do this join, since we only want
+# one row from buildsystems. but it means we only have to run one
+# query. If it gets heavy we'll split it up and run two
+
+my $statement = <<EOS;
+
+ select (now() at time zone 'GMT')::timestamp(0) - snapshot as when_ago,
+ sysname, snapshot, b.status, stage,
+ operating_system, os_version, compiler, compiler_version, architecture,
+ owner_email,
+ sys_notes_ts::date AS sys_notes_date, sys_notes
+ from buildsystems s,
+ build_status b
+ where name = ?
+ and branch = ?
+ and s.status = 'approved'
+ and name = sysname
+ order by snapshot desc
+ limit $hm
+
+EOS
+;
+
+my $statrows=[];
+my $sth=$db->prepare($statement);
+$sth->execute($member,$branch);
+while (my $row = $sth->fetchrow_hashref)
+{
+ $row->{owner_email} =~ s/\@/ [ a t ] /;
+ if ($latest_personality)
+ {
+ $row->{os_version} = $latest_personality->[0];
+ $row->{compiler_version} = $latest_personality->[1];
+ }
+ push(@$statrows,$row);
+}
+
+$sth->finish;
+
+$db->disconnect;
+
+my $template_opts = { INCLUDE_PATH => $template_dir, EVAL_PERL => 1 };
+my $template = new Template($template_opts);
+
+print "Content-Type: text/html\n\n";
+
+$template->process('history.tt',
+ {statrows=>$statrows,
+ branch=>$branch,
+ member => $member,
+ hm => $hm
+ });
+
+exit;
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+use DBI;
+use Template;
+use CGI;
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport $template_dir @log_file_names);
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+my $template_opts = { INCLUDE_PATH => $template_dir, EVAL_PERL => 1};
+my $template = new Template($template_opts);
+
+die "no dbname" unless $dbname;
+die "no dbuser" unless $dbuser;
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+my $query = new CGI;
+
+my $system = $query->param('nm'); $system =~ s/[^a-zA-Z0-9_ -]//g;
+my $logdate = $query->param('dt'); $logdate =~ s/[^a-zA-Z0-9_ :-]//g;
+
+my $log = "";
+my $conf = "";
+my ($stage,$changed_this_run,$changed_since_success,$sysinfo,$branch,$scmurl);
+my $scm;
+
+use vars qw($info_row);
+
+if ($system && $logdate)
+{
+
+ my $db = DBI->connect($dsn,$dbuser,$dbpass);
+
+ die $DBI::errstr unless $db;
+
+ my $statement = q{
+
+ select log,conf_sum,stage, changed_this_run, changed_since_success,branch,
+ log_archive_filenames, scm, scmurl
+ from build_status
+ where sysname = ? and snapshot = ?
+
+ };
+ my $sth=$db->prepare($statement);
+ $sth->execute($system,$logdate);
+ my $row=$sth->fetchrow_arrayref;
+ $log=$row->[0];
+ $conf=$row->[1] || "not recorded" ;
+ $stage=$row->[2] || "unknown";
+ $changed_this_run = $row->[3];
+ $changed_since_success = $row->[4];
+ $branch = $row->[5];
+ my $log_file_names = $row->[6];
+ $scm = $row->[7];
+ $scm ||= 'cvs'; # legacy scripts
+ $scmurl = $row->[8];
+ $log_file_names =~ s/^\{(.*)\}$/$1/;
+ @log_file_names=split(',',$log_file_names)
+ if $log_file_names;
+ $sth->finish;
+
+ $statement = q{
+
+ select operating_system, os_version,
+ compiler, compiler_version,
+ architecture,
+ replace(owner_email,'\@',' [ a t ] ') as owner_email,
+ sys_notes_ts::date AS sys_notes_date, sys_notes
+ from buildsystems
+ where status = 'approved'
+ and name = ?
+
+ };
+ $sth=$db->prepare($statement);
+ $sth->execute($system);
+ $info_row=$sth->fetchrow_hashref;
+
+ my $latest_personality = $db->selectrow_arrayref(q{
+ select os_version, compiler_version
+ from personality
+ where effective_date < ?
+ and name = ?
+ order by effective_date desc limit 1
+ }, undef, $logdate, $system);
+ # $sysinfo = join(" ",@$row);
+ if ($latest_personality)
+ {
+ $info_row->{os_version} = $latest_personality->[0];
+ $info_row->{compiler_version} = $latest_personality->[1];
+ }
+ $sth->finish;
+ $db->disconnect;
+}
+
+foreach my $chgd ($changed_this_run,$changed_since_success)
+{
+ my $cvsurl = 'http://anoncvs.postgresql.org/cvsweb.cgi';
+ my $giturl = $scmurl || 'http://git.postgresql.org/gitweb?p=postgresql.git;a=commit;h=';
+ my @lines = split(/!/,$chgd);
+ my $changed_rows = [];
+ foreach (@lines)
+ {
+ next if ($scm eq 'cvs' and ! m!^(pgsql|master|REL\d_\d_STABLE)/!);
+ push(@$changed_rows,[$1,$3]) if (m!(^\S+)(\s+)(\S+)!);
+ }
+ $chgd = $changed_rows;
+}
+
+$conf =~ s/\@/ [ a t ] /g;
+
+print "Content-Type: text/html\n\n";
+
+$template->process('log.tt',
+ {
+ scm => $scm,
+ scmurl => $scmurl,
+ system => $system,
+ branch => $branch,
+ stage => $stage,
+ urldt => $logdate,
+ log_file_names => \@log_file_names,
+ conf => $conf,
+ log => $log,
+ changed_this_run => $changed_this_run,
+ changed_since_success => $changed_since_success,
+ info_row => $info_row,
+
+ });
+
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+use CGI;
+use DBI;
+use Template;
+
+
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport $template_dir $sort_by);
+
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+#require "BuildFarmWeb.pl";
+
+my $query = new CGI;
+my %sort_ok = ('name' => 'lower(name)' ,
+ 'owner' => 'lower(owner_email)',
+ 'os' => 'lower(operating_system), os_version',
+ 'compiler' => 'lower(compiler), compiler_version' ,
+ 'arch' => 'lower(architecture)' );
+$sort_by = $query->param('sort_by');$sort_by =~ s/[^a-zA-Z0-9_ -]//g;
+$sort_by = $sort_ok{$sort_by} || $sort_ok{name};
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+my $db = DBI->connect($dsn,$dbuser,$dbpass);
+
+# there is possibly some redundancy in this query, but it makes
+# a lot of the processing simpler.
+
+my $statement = q{
+
+ select name, operating_system, os_version, compiler, compiler_version, owner_email,
+ sys_notes_ts::date AS sys_notes_date, sys_notes,
+ architecture as arch, ARRAY(
+ select branch || ':' ||
+ extract(days from now() - l.snapshot)
+ from latest_snapshot l
+ where l.sysname = s.name
+ order by branch <> 'HEAD', branch desc
+ ) as branches,
+ ARRAY(select compiler_version || '\t' || os_version || '\t' || effective_date
+ from personality p
+ where p.name = s.name
+ order by effective_date
+ ) as personalities
+ from buildsystems s
+ where status = 'approved'
+};
+
+$statement .= "order by $sort_by";
+
+my $statrows=[];
+my $sth=$db->prepare($statement);
+$sth->execute;
+while (my $row = $sth->fetchrow_hashref)
+{
+ $row->{branches} =~ s/^\{(.*)\}$/$1/;
+ my $personalities = $row->{personalities};
+ $personalities =~ s/^\{(.*)\}$/$1/;
+ my @personalities = split(',',$personalities);
+ $row->{personalities} = [];
+ foreach my $personality (@personalities)
+ {
+ $personality =~ s/^"(.*)"$/$1/;
+ $personality =~ s/\\(.)/$1/g;
+
+ my ($compiler_version, $os_version, $effective_date) = split(/\t/,$personality);
+ $effective_date =~ s/ .*//;
+ push(@{$row->{personalities}}, {compiler_version => $compiler_version,
+ os_version => $os_version,
+ effective_date => $effective_date });
+ }
+ $row->{owner_email} =~ s/\@/ [ a t ] /;
+ push(@$statrows,$row);
+}
+$sth->finish;
+
+
+$db->disconnect;
+
+# use Data::Dumper; print "Content-Type: text/plain\n\n",Dumper($statrows),"VERSION: ",$DBD::Pg::VERSION,"\n"; exit;
+
+
+my $template_opts = { INCLUDE_PATH => $template_dir};
+my $template = new Template($template_opts);
+
+print "Content-Type: text/html\n\n";
+
+$template->process('members.tt',
+ {statrows=>$statrows});
+
+exit;
+
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+use DBI;
+use Template;
+use CGI;
+use File::Temp qw(tempfile);
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport @log_file_names);
+
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+#require "BuildFarmWeb.pl";
+
+die "no dbname" unless $dbname;
+die "no dbuser" unless $dbuser;
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+my $query = new CGI;
+
+my $system = $query->param('nm'); $system =~ s/[^a-zA-Z0-9_ -]//g;
+my $logdate = $query->param('dt');$logdate =~ s/[^a-zA-Z0-9_ -]//g;
+my $stage = $query->param('stg');$stage =~ s/[^a-zA-Z0-9._ -]//g;
+
+use vars qw($tgz);
+
+if ($system && $logdate && $stage)
+{
+ my $db = DBI->connect($dsn,$dbuser,$dbpass);
+
+ die $DBI::errstr unless $db;
+
+ my $statement = q(
+
+ select branch, log_text
+ from build_status_log
+ where sysname = ? and snapshot = ? and log_stage = ? || '.log'
+
+ );
+
+
+
+ my $sth=$db->prepare($statement);
+ $sth->execute($system,$logdate,$stage);
+ my $row=$sth->fetchrow_arrayref;
+ my ($branch, $logtext) = ("unknown","no log text found");
+ if ($row)
+ {
+ $branch = $row->[0];
+ $logtext =$row->[1];
+ }
+ $sth->finish;
+ $db->disconnect;
+
+ print "Content-Type: text/plain\n\n", $logtext,
+
+ "-------------------------------------------------\n\n",
+ "Hosting for the PostgreSQL Buildfarm is generously ",
+ "provided by: CommandPrompt, The PostgreSQL Company";
+
+}
+
+else
+{
+ print "Status: 460 bad parameters\n",
+ "Content-Type: text/plain\n\n";
+}
+
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+use DBI;
+use Template;
+use CGI;
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport $template_dir);
+
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+my $query = new CGI;
+my @members = $query->param('member');
+map { s/[^a-zA-Z0-9_ -]//g; } @members;
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+
+my $sort_clause = "";
+my $sortby = $query->param('sortby') || 'nosort';
+if ($sortby eq 'name')
+{
+ $sort_clause = 'lower(sysname),';
+}
+elsif ($sortby eq 'os')
+{
+ $sort_clause = 'lower(operating_system), os_version desc,';
+}
+elsif ($sortby eq 'compiler')
+{
+ $sort_clause = "lower(compiler), compiler_version,";
+}
+
+my $db = DBI->connect($dsn,$dbuser,$dbpass) or die("$dsn,$dbuser,$dbpass,$!");
+
+my $statement =<<EOS;
+
+
+ select timezone('GMT'::text, now())::timestamp(0) without time zone - b.snapshot AS when_ago, b.*
+ from dashboard_mat b
+ order by branch = 'HEAD' desc,
+ branch desc, $sort_clause
+ snapshot desc
+
+EOS
+;
+
+my $statrows=[];
+my $sth=$db->prepare($statement);
+$sth->execute;
+while (my $row = $sth->fetchrow_hashref)
+{
+ next if (@members && ! grep {$_ eq $row->{sysname} } @members);
+ $row->{build_flags} =~ s/^\{(.*)\}$/$1/;
+ $row->{build_flags} =~ s/,/ /g;
+ # enable-integer-datetimes is now the default
+ if ($row->{branch} eq 'HEAD' || $row->{branch} gt 'REL8_3_STABLE')
+ {
+ $row->{build_flags} .= " --enable-integer-datetimes "
+ unless ($row->{build_flags} =~ /--(en|dis)able-integer-datetimes/);
+ }
+ # enable-thread-safety is now the default
+ if ($row->{branch} eq 'HEAD' || $row->{branch} gt 'REL8_5_STABLE')
+ {
+ $row->{build_flags} .= " --enable-thread-safety "
+ unless ($row->{build_flags} =~ /--(en|dis)able-thread-safety/);
+ }
+ $row->{build_flags} =~ s/--((enable|with)-)?//g;
+ $row->{build_flags} =~ s/libxml/xml/;
+ $row->{build_flags} =~ s/\S+=\S+//g;
+ push(@$statrows,$row);
+}
+$sth->finish;
+
+
+$db->disconnect;
+
+
+my $template_opts = { INCLUDE_PATH => $template_dir };
+my $template = new Template($template_opts);
+
+print "Content-Type: text/html\n\n";
+
+$template->process('status.tt',
+ {statrows=>$statrows});
+
+exit;
+
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport);
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+use lib "/home/community/pgbuildfarm/lib/lib/perl5/site_perl";
+
+use SOAP::Transport::HTTP;
+
+SOAP::Transport::HTTP::CGI->dispatch_to('PGBuildFarm')->handle;
+
+exit;
+
+package PGBuildFarm;
+
+use DBI;
+
+sub get_status
+
+{
+ my $class = shift;
+ my @members = @_;
+
+ my $dsn="dbi:Pg:dbname=$::dbname";
+ $dsn .= ";host=$::dbhost" if $::dbhost;
+ $dsn .= ";port=$::dbport" if $::dbport;
+
+ my $db = DBI->connect($dsn,$::dbuser,$::dbpass) or
+ die("$dsn,$::dbuser,$::dbpass,$!");
+
+ # there is possibly some redundancy in this query, but it makes
+ # a lot of the processing simpler.
+
+ my $statement =<<EOS;
+
+
+ select (now() at time zone 'GMT')::timestamp(0) - snapshot as when_ago, dsh.*
+ from dashboard_mat dsh
+ order by branch = 'HEAD' desc,
+ branch desc,
+ snapshot desc
+
+
+
+EOS
+;
+
+ my $statrows=[];
+ my $sth=$db->prepare($statement);
+ $sth->execute;
+ while (my $row = $sth->fetchrow_hashref)
+ {
+ next if (@members && ! grep {$_ eq $row->{sysname} } @members);
+ $row->{build_flags} =~ s/^\{(.*)\}$/$1/;
+ $row->{build_flags} =~ s/,/ /g;
+ $row->{build_flags} =~ s/--((enable|with)-)?//g;
+ $row->{build_flags} =~ s/\S+=\S+//g;
+ push(@$statrows,$row);
+ }
+ $sth->finish;
+
+
+ $db->disconnect;
+
+ return $statrows;
+
+}
+
+1;
+
+
+
+
+
--- /dev/null
+#!/usr/bin/perl
+
+#print "Content-Type: text/html\n\n";
+#print "<h1>My quick perl hello</h1>";
+
+use CGI;
+
+my $query = new CGI;
+
+my $url = $query->url();
+
+my $base = $query->url(-base=>1);
+
+print <<EOF;
+Content-Type: text/plain
+
+
+url = $url
+
+base = $base
+
+EOF
+
+
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+use DBI;
+use CGI;
+
+my $query = new CGI;
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport);
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+my $dbh = DBI->connect($dsn,$dbuser,$dbpass) or die("$dsn,$dbuser,$dbpass,$!");
+
+my %words;
+
+my $sql = q{
+ select sysname, max(snapshot) as snapshot
+ from build_status_log
+ where branch = 'HEAD' and
+ log_stage = 'typedefs.log' and
+ snapshot > current_date::timestamp - interval '30 days'
+ group by sysname
+};
+my $builds = $dbh->selectall_arrayref($sql, { Slice => {} });
+
+
+if ($query->param('show_list'))
+{
+ print "Content-Type: text/html\n\n",
+ "<head><title>Typedefs URLs</title></head>\n",
+ "<body><h1>Typdefs URLs</h1>\n",
+ "<table border='1'><tr><th>member</th></tr>\n";
+
+ foreach my $build (@$builds)
+ {
+ print "<tr><td><a href='http://www.pgbuildfarm.org/cgi-bin/show_stage_log.pl?nm=$build->{sysname}\&dt=$build->{snapshot}\&stg=typedefs'>$build->{sysname}</a></td></tr>\n";
+ }
+ print "</table></body></html>\n";
+ exit;
+}
+
+$sql = q{
+ select log_text
+ from build_status_log
+ where sysname = ?
+ and snapshot = ?
+ and log_stage = 'typedefs.log'
+ and branch = 'HEAD'
+ };
+
+my $sth = $dbh->prepare($sql);
+
+foreach my $build (@$builds)
+{
+ $sth->execute($build->{sysname},$build->{snapshot});
+ my @row = $sth->fetchrow;
+ my @typedefs = split(/\s+/,$row[0]);
+ @words{@typedefs} = 1 x @typedefs;
+}
+
+print "Content-Type: text/plain\n\n",
+ join("\n",sort keys %words),
+ "\n";
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+
+use CGI;
+use Digest::SHA1 qw(sha1_hex);
+use MIME::Base64;
+use DBI;
+use DBD::Pg;
+use Data::Dumper;
+
+use vars qw($dbhost $dbname $dbuser $dbpass $dbport);
+
+my $query = new CGI;
+
+my $sig = $query->path_info;
+$sig =~ s!^/!!;
+
+my $animal = $query->param('animal');
+my $ts = $query->param('ts');
+my $os_version = $query->param('new_os');
+my $compiler_version = $query->param('new_compiler');
+
+my $content = "animal=$animal\&ts=$ts";
+$content .= "\&new_os=$os_version" if $os_version;
+$content .= "\&new_compiler=$compiler_version" if $compiler_version;
+
+require "$ENV{BFConfDir}/BuildFarmWeb.pl";
+
+die "no dbname" unless $dbname;
+die "no dbuser" unless $dbuser;
+
+my $dsn="dbi:Pg:dbname=$dbname";
+$dsn .= ";host=$dbhost" if $dbhost;
+$dsn .= ";port=$dbport" if $dbport;
+
+unless ($animal && $ts && ($os_version || $compiler_version) && $sig)
+{
+ print
+ "Status: 490 bad parameters\nContent-Type: text/plain\n\n",
+ "bad parameters for request\n";
+ exit;
+
+}
+
+
+my $db = DBI->connect($dsn,$dbuser,$dbpass);
+
+die $DBI::errstr unless $db;
+
+my $gethost=
+ "select secret from buildsystems where name = ? and status = 'approved'";
+my $sth = $db->prepare($gethost);
+$sth->execute($animal);
+my ($secret)=$sth->fetchrow_array();
+$sth->finish;
+
+
+unless ($secret)
+{
+ print
+ "Status: 495 Unknown System\nContent-Type: text/plain\n\n",
+ "System $animal is unknown\n";
+ $db->disconnect;
+ exit;
+
+}
+
+
+
+
+my $calc_sig = sha1_hex($content,$secret);
+
+if ($calc_sig ne $sig)
+{
+
+ print "Status: 450 sig mismatch\nContent-Type: text/plain\n\n";
+ print "$sig mismatches $calc_sig on content:\n$content";
+ $db->disconnect;
+ exit;
+}
+
+# undo escape-proofing of base64 data and decode it
+map {tr/$@/+=/; $_ = decode_base64($_); }
+ ($os_version, $compiler_version);
+
+my $get_latest = q{
+
+ select coalesce(b.os_version, a.os_version) as os_version,
+ coalesce(b.compiler_version, a.compiler_version) as compiler_version
+ from buildsystems as a left join
+ ( select distinct on (name) name, compiler_version, os_version
+ from personality
+ order by name, effective_date desc
+ ) as b
+ on (a.name = b.name)
+ where a.name = ?
+ and a.status = 'approved'
+
+};
+
+$sth = $db->prepare($get_latest);
+my $rv = $sth->execute($animal);
+unless($rv)
+{
+ print "Status: 460 old data fetch\nContent-Type: text/plain\n\n";
+ print "error: ",$db->errstr,"\n";
+ $db->disconnect;
+ exit;
+}
+
+my ($old_os,$old_comp)=$sth->fetchrow_array();
+$sth->finish;
+
+
+
+$os_version ||= $old_os;
+$compiler_version ||= $old_comp;
+
+my $new_personality = q{
+
+ insert into personality (name, os_version, compiler_version)
+ values (?,?,?)
+
+};
+
+
+$sth = $db->prepare($new_personality);
+$rv = $sth->execute($animal,$os_version, $compiler_version);
+
+unless($rv)
+{
+ print "Status: 470 new data insert\nContent-Type: text/plain\n\n";
+ print "error: $db->errstr\n";
+ $db->disconnect;
+ exit;
+}
+
+$sth->finish;
+
+
+
+$db->disconnect;
+
+print "Content-Type: text/plain\n\n";
+print "request was on:\n$content\n";
+
+
+
--- /dev/null
+body {
+ background: #fff;
+ margin: 0;
+ font-family: helvetica, trebuchet, "Lucida Grande", sans-serif;
+ font-size:small
+ }
+
+img { display:block; }
+img.inline { display:inline; }
+
+a img { border:none; }
+a:hover img { border: none; }
+
+#wrapper {
+ margin:0 auto;
+ margin-left: 5px;
+
+}
+
+#banner img { margin:6px 0; }
+
+#nav {
+ float:left;
+ width:780px;
+ background:#fff;
+ margin:0 10px 10px;
+}
+
+#nav ul {
+ margin:0;
+ padding:0;
+ list-style:none;
+}
+
+#nav li {
+ float:left;
+ margin:0 .5em 0 0;
+ padding:0 0 0 4px;
+ background: url(/inc/b/l.png) no-repeat left top;
+}
+
+#nav li a {
+ display:block;
+ background:url(/inc/b/r.png) no-repeat right top;
+ padding:0 11px 0 7px;
+ color:#fff;
+ text-decoration:none;
+ line-height:20px;
+}
+
+#nav li a:hover {
+ background: url(/inc/b/r.png) no-repeat 100% -20px;
+ color:rgb(17,45,137);
+ border: 0;
+}
+
+#nav li:hover { background: url(/inc/b/l.png) no-repeat 0% -20px; }
+
+#main {
+ clear:both;
+ margin:0 5px;
+}
+
+#main a {
+ text-decoration: none;
+ color: rgb(17,45,137);
+ font-weight: bold;
+ background: inherit;
+}
+
+a:hover, a:active { border-bottom: 1px dotted rgb(17,45,137); }
+p { padding: .3em 0; }
+
+table {
+ font-size: small;
+ border: 1px #aaa solid;
+ border-right: 0;
+ border-bottom: 0;
+}
+
+th, td {
+ white-space: nowrap;
+ border: 1px #aaa solid;
+ border-top: 0;
+ border-left: 0;
+ padding:2px;
+}
+
+body.members td { white-space: normal; }
+
+th {
+ background: #ddd;
+ color: #222;
+ font-size: x-small;
+}
+
+tr.alt td { background: #eef; }
+
+th.head {
+ background: #666;
+ color: #fff;
+ text-align: center !important;
+ letter-spacing: .1em;
+}
+
+.status, .detail { border-bottom: 1px #fff solid; }
+tr.last td { border-bottom: 1px #aaa solid; }
+.pass td.status, .pass td.detail { background: #6f6; }
+.warn td.status, .warn td.detail { background: #fc3; }
+.warnx td.status, .warn td.detail { background: #f99; }
+.fail td.status, .fail td.detail { background: #f66; }
+body.history th { text-align: right; }
+body.application table { margin: 0 auto; }
+body.application th { text-align: right; }
+body.application th.submit { text-align: center; }
+
+td.branch ul { list-style: none; }
+
+td.branch ul, td.branch li {
+ margin: 0;
+ padding: 0;
+}
+
+.opsys { color: black; }
+.compiler { color: navy; }
+.arch { color: purple; }
+
+td.flags { white-space: normal; font-size: x-small; }
+
--- /dev/null
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+ <title>PostgreSQL BuildFarm</title>
+ <link rel="icon" type="image/png" href="/elephant-icon.png" />
+ <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
+ <style type="text/css"><!--
+ li#home a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat 100% -20px; }
+ li#home { background: url(/inc/b/l.png) no-repeat 0% -20px; }
+ --></style>
+ </head>
+ <body class="none">
+ <div id="wrapper">
+ <div id="banner">
+ <a href="/index.html"><img src="/inc/pgbuildfarm-banner.png" alt="PostgreSQL BuildFarm" width="800" height="73" /></a>
+ <div id="nav">
+ <ul>
+ <li id="home"><a href="/index.html" title="PostgreSQL BuildFarm Home">Home</a></li>
+ <li id="status"><a href="/cgi-bin/show_status.pl" title="Current results">Status</a></li>
+ <li id="members"><a href="/cgi-bin/show_members.pl" title="Platforms tested">Members</a></li>
+ <li id="register"><a href="/cgi-bin/register-form.pl" title="Join PostgreSQL BuildFarm">Register</a></li>
+ <li id="pgfoundry"><a href="http://pgfoundry.org/projects/pgbuildfarm/">PGFoundry</a></li>
+ </ul>
+ </div><!-- nav -->
+ </div><!-- banner -->
+ <div id="main">
+
+<!-- html generated from index.tt -->
+<p>
+The PostgreSQL build farm is a distributed system for automatically testing
+changes in the source code for PostgreSQL as they occur, on a wide variety
+of platforms. This server is the central repository for the results of those
+tests.
+</p>
+<p>
+To see the current status of tests on various branches, check the
+<a href="/cgi-bin/show_status.pl" title="Status Page">Status Page</a>.
+</p>
+<p>
+If you are interested in running a member of the build farm, then please visit
+the <a href="/cgi-bin/register-form.pl" title="Register">Registration Page</a>.
+We are particularly interested in unusual platforms or combinations of
+architecture, operating system and compiler.
+</p>
+<p>To see what is involved in running a buildfarm member, please
+read <a href="http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto">http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto</a>.
+The client code can be found at the
+<a href="http://pgfoundry.org/projects/pgbuildfarm/">project page</a> at
+<a href="http://pgfoundry.org/">PGFoundry</a>.
+</p>
+<p>The build farm software should run on all platforms that can support PostgreSQL.
+</p>
+
+ </div><!-- main -->
+ <hr />
+ <p style="text-align: center;">
+ Hosting for the PostgreSQL Buildfarm is generously
+ provided by:
+ <a href="http://www.commandprompt.com">CommandPrompt, The PostgreSQL Company</a>
+ </p>
+ </div><!-- wrapper -->
+ </body>
+</html>
+
--- /dev/null
+User-agent: *
+Disallow: /cgi-bin/
--- /dev/null
+--
+-- PostgreSQL database dump
+--
+
+SET client_encoding = 'SQL_ASCII';
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+
+--
+-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: pgbuildfarm
+--
+
+COMMENT ON SCHEMA public IS 'Standard public schema';
+
+
+SET search_path = public, pg_catalog;
+
+--
+-- Name: plperl_call_handler(); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE FUNCTION plperl_call_handler() RETURNS language_handler
+ AS '$libdir/plperl', 'plperl_call_handler'
+ LANGUAGE c;
+
+
+ALTER FUNCTION public.plperl_call_handler() OWNER TO pgbuildfarm;
+
+--
+-- Name: plperl; Type: PROCEDURAL LANGUAGE; Schema: public; Owner:
+--
+
+CREATE TRUSTED PROCEDURAL LANGUAGE plperl HANDLER plperl_call_handler;
+
+
+--
+-- Name: plperlu; Type: PROCEDURAL LANGUAGE; Schema: public; Owner:
+--
+
+CREATE PROCEDURAL LANGUAGE plperlu HANDLER plperl_call_handler;
+
+
+--
+-- Name: plpgsql_call_handler(); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE FUNCTION plpgsql_call_handler() RETURNS language_handler
+ AS '$libdir/plpgsql', 'plpgsql_call_handler'
+ LANGUAGE c;
+
+
+ALTER FUNCTION public.plpgsql_call_handler() OWNER TO pgbuildfarm;
+
+--
+-- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: public; Owner:
+--
+
+CREATE TRUSTED PROCEDURAL LANGUAGE plpgsql HANDLER plpgsql_call_handler;
+
+
+--
+-- Name: pending; Type: TYPE; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE TYPE pending AS (
+ name text,
+ operating_system text,
+ os_version text,
+ compiler text,
+ compiler_version text,
+ architecture text,
+ owner_email text
+);
+
+
+ALTER TYPE public.pending OWNER TO pgbuildfarm;
+
+--
+-- Name: pending2; Type: TYPE; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE TYPE pending2 AS (
+ name text,
+ operating_system text,
+ os_version text,
+ compiler text,
+ compiler_version text,
+ architecture text,
+ owner_email text,
+ "owner" text,
+ status_ts timestamp without time zone
+);
+
+
+ALTER TYPE public.pending2 OWNER TO pgbuildfarm;
+
+--
+-- Name: approve(text, text); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE FUNCTION approve(text, text) RETURNS void
+ AS $_$update buildsystems set name = $2, status ='approved' where name = $1 and status = 'pending'$_$
+ LANGUAGE sql;
+
+
+ALTER FUNCTION public.approve(text, text) OWNER TO pgbuildfarm;
+
+--
+-- Name: approve2(text, text); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE FUNCTION approve2(text, text) RETURNS text
+ AS $_$ update buildsystems set name = $2, status = 'approved' where name = $1 and status = 'pending'; select owner_email || ':' || name || ':' || secret from buildsystems where name = $2;$_$
+ LANGUAGE sql;
+
+
+ALTER FUNCTION public.approve2(text, text) OWNER TO pgbuildfarm;
+
+--
+-- Name: pending(); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE FUNCTION pending() RETURNS SETOF pending2
+ AS $$select name,operating_system,os_version,compiler,compiler_version,architecture,owner_email, sys_owner, status_ts from buildsystems where status = 'pending' order by status_ts $$
+ LANGUAGE sql;
+
+
+ALTER FUNCTION public.pending() OWNER TO pgbuildfarm;
+
+--
+-- Name: prevstat(text, text, timestamp without time zone); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE FUNCTION prevstat(text, text, timestamp without time zone) RETURNS text
+ AS $_$
+ select coalesce((select distinct on (snapshot) stage
+ from build_status
+ where sysname = $1 and branch = $2 and snapshot < $3
+ order by snapshot desc
+ limit 1), 'NEW') as prev_status
+$_$
+ LANGUAGE sql;
+
+
+ALTER FUNCTION public.prevstat(text, text, timestamp without time zone) OWNER TO pgbuildfarm;
+
+--
+-- Name: set_latest(); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE FUNCTION set_latest() RETURNS "trigger"
+ AS $$
+
+ begin
+ update latest_snapshot
+ set snapshot =
+ (case when snapshot > NEW.snapshot then snapshot else NEW.snapshot end)
+ where sysname = NEW.sysname and
+ branch = NEW.branch;
+ if not found then
+ insert into latest_snapshot
+ values(NEW.sysname, NEW.branch, NEW.snapshot);
+ end if;
+ return NEW;
+ end;
+$$
+ LANGUAGE plpgsql;
+
+
+ALTER FUNCTION public.set_latest() OWNER TO pgbuildfarm;
+
+--
+-- Name: target(text); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE FUNCTION target(t text) RETURNS text
+ AS $_$ my $log = shift; $log =~ s/.*(Target:[^\n]*).*/$1/s; return $log; $_$
+ LANGUAGE plperl;
+
+
+ALTER FUNCTION public.target(t text) OWNER TO pgbuildfarm;
+
+--
+-- Name: transitions(text, text, text, text, text, text); Type: FUNCTION; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE FUNCTION transitions(text, text, text, text, text, text) RETURNS integer
+ AS $_$
+
+my ($os,$osv,$comp,$compv,$arch,$owner) = @_;
+# count transitions to and from upper case
+my $trans = 1;
+my $counttrans = 0;
+foreach (split "" ,"$os$osv$comp$compv$arch$owner")
+{
+ if (/[A-Z]/)
+ {
+ next if $trans;
+ $trans = 1;
+ $counttrans++;
+ }
+ else
+ {
+ next unless $trans;
+ $trans = 0;
+ $counttrans++;
+ }
+}
+
+return $counttrans;
+
+$_$
+ LANGUAGE plperl;
+
+
+ALTER FUNCTION public.transitions(text, text, text, text, text, text) OWNER TO pgbuildfarm;
+
+SET default_tablespace = '';
+
+SET default_with_oids = true;
+
+--
+-- Name: alerts; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE TABLE alerts (
+ sysname text NOT NULL,
+ branch text NOT NULL,
+ first_alert timestamp without time zone,
+ last_notification timestamp without time zone
+);
+
+
+ALTER TABLE public.alerts OWNER TO pgbuildfarm;
+
+--
+-- Name: build_status; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE TABLE build_status (
+ sysname text NOT NULL,
+ snapshot timestamp without time zone NOT NULL,
+ status integer,
+ stage text,
+ log text,
+ conf_sum text,
+ branch text,
+ changed_this_run text,
+ changed_since_success text,
+ log_archive bytea,
+ log_archive_filenames text[],
+ build_flags text[],
+ report_time timestamp with time zone DEFAULT ('now'::text)::timestamp(6) with time zone,
+ scm text,
+ scmurl text
+);
+
+
+ALTER TABLE public.build_status OWNER TO pgbuildfarm;
+
+--
+-- Name: build_status_export; Type: VIEW; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE VIEW build_status_export AS
+ SELECT build_status.sysname AS name, build_status.snapshot, build_status.stage, build_status.branch, build_status.build_flags FROM build_status;
+
+
+ALTER TABLE public.build_status_export OWNER TO pgbuildfarm;
+
+--
+-- Name: build_status_log; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE TABLE build_status_log (
+ sysname text NOT NULL,
+ snapshot timestamp without time zone NOT NULL,
+ branch text NOT NULL,
+ log_stage text NOT NULL,
+ log_text text,
+ stage_duration interval
+);
+
+
+ALTER TABLE public.build_status_log OWNER TO pgbuildfarm;
+
+--
+-- Name: buildsystems; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE TABLE buildsystems (
+ name text NOT NULL,
+ secret text NOT NULL,
+ operating_system text NOT NULL,
+ os_version text NOT NULL,
+ compiler text NOT NULL,
+ compiler_version text NOT NULL,
+ architecture text NOT NULL,
+ status text NOT NULL,
+ sys_owner text NOT NULL,
+ owner_email text NOT NULL,
+ status_ts timestamp without time zone DEFAULT (('now'::text)::timestamp(6) with time zone)::timestamp without time zone,
+ no_alerts boolean DEFAULT false,
+ sys_notes text,
+ sys_notes_ts timestamp with time zone
+);
+
+
+ALTER TABLE public.buildsystems OWNER TO pgbuildfarm;
+
+--
+-- Name: buildsystems_export; Type: VIEW; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE VIEW buildsystems_export AS
+ SELECT buildsystems.name, buildsystems.operating_system, buildsystems.os_version, buildsystems.compiler, buildsystems.compiler_version, buildsystems.architecture FROM buildsystems WHERE (buildsystems.status = 'approved'::text);
+
+
+ALTER TABLE public.buildsystems_export OWNER TO pgbuildfarm;
+
+--
+-- Name: latest_snapshot; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE TABLE latest_snapshot (
+ sysname text NOT NULL,
+ branch text NOT NULL,
+ snapshot timestamp without time zone NOT NULL
+);
+
+
+ALTER TABLE public.latest_snapshot OWNER TO pgbuildfarm;
+
+--
+-- Name: personality; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE TABLE personality (
+ name text NOT NULL,
+ os_version text NOT NULL,
+ compiler_version text NOT NULL,
+ effective_date timestamp with time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL
+);
+
+
+ALTER TABLE public.personality OWNER TO pgbuildfarm;
+
+--
+-- Name: dashboard; Type: VIEW; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE VIEW dashboard AS
+ SELECT ((timezone('GMT'::text, now()))::timestamp(0) without time zone - b.snapshot) AS when_ago, b.sysname, b.snapshot, b.status, b.stage, b.branch, b.build_flags, s.operating_system, COALESCE(b.os_version, s.os_version) AS os_version, s.compiler, COALESCE(b.compiler_version, s.compiler_version) AS compiler_version, s.architecture FROM buildsystems s, (SELECT DISTINCT ON (bs.sysname, bs.branch, bs.report_time) bs.sysname, bs.snapshot, bs.status, bs.stage, bs.branch, bs.build_flags, bs.report_time, p.compiler_version, p.os_version FROM ((build_status bs NATURAL JOIN latest_snapshot m) LEFT JOIN personality p ON (((p.name = bs.sysname) AND (p.effective_date <= bs.report_time)))) WHERE (m.snapshot > (now() - '30 days'::interval)) ORDER BY bs.sysname, bs.branch, bs.report_time, (p.effective_date IS NULL), p.effective_date DESC) b WHERE ((s.name = b.sysname) AND (s.status = 'approved'::text));
+
+
+ALTER TABLE public.dashboard OWNER TO pgbuildfarm;
+
+--
+-- Name: dashboard_ex; Type: VIEW; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE VIEW dashboard_ex AS
+ SELECT ((timezone('GMT'::text, now()))::timestamp(0) without time zone - b.snapshot) AS when_ago, b.sysname, b.snapshot, b.status, b.stage, b.branch, b.build_flags, s.operating_system, COALESCE(b.os_version, s.os_version) AS os_version, s.compiler, COALESCE(b.compiler_version, s.compiler_version) AS compiler_version, s.architecture, s.sys_notes, (s.sys_notes_ts)::date AS sys_notes_date FROM buildsystems s, (SELECT DISTINCT ON (bs.sysname, bs.branch, bs.report_time) bs.sysname, bs.snapshot, bs.status, bs.stage, bs.branch, bs.build_flags, bs.report_time, p.compiler_version, p.os_version FROM ((build_status bs NATURAL JOIN latest_snapshot m) LEFT JOIN personality p ON (((p.name = bs.sysname) AND (p.effective_date <= bs.report_time)))) WHERE (m.snapshot > (now() - '30 days'::interval)) ORDER BY bs.sysname, bs.branch, bs.report_time, (p.effective_date IS NULL), p.effective_date DESC) b WHERE ((s.name = b.sysname) AND (s.status = 'approved'::text));
+
+
+ALTER TABLE public.dashboard_ex OWNER TO pgbuildfarm;
+
+--
+-- Name: dashboard_mat; Type: TABLE; Schema: public; Owner: pgbfweb; Tablespace:
+--
+
+CREATE TABLE dashboard_mat (
+ sysname text,
+ snapshot timestamp without time zone,
+ status integer,
+ stage text,
+ branch text,
+ build_flags text[],
+ operating_system text,
+ os_version text,
+ compiler text,
+ compiler_version text,
+ architecture text
+);
+
+
+ALTER TABLE public.dashboard_mat OWNER TO pgbfweb;
+
+--
+-- Name: dashboard_mat_data; Type: VIEW; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE VIEW dashboard_mat_data AS
+ SELECT b.sysname, b.snapshot, b.status, b.stage, b.branch, b.build_flags, s.operating_system, COALESCE(b.os_version, s.os_version) AS os_version, s.compiler, COALESCE(b.compiler_version, s.compiler_version) AS compiler_version, s.architecture FROM buildsystems s, (SELECT DISTINCT ON (bs.sysname, bs.branch, bs.report_time) bs.sysname, bs.snapshot, bs.status, bs.stage, bs.branch, bs.build_flags, bs.report_time, p.compiler_version, p.os_version FROM ((build_status bs NATURAL JOIN latest_snapshot m) LEFT JOIN personality p ON (((p.name = bs.sysname) AND (p.effective_date <= bs.report_time)))) WHERE (m.snapshot > (now() - '30 days'::interval)) ORDER BY bs.sysname, bs.branch, bs.report_time, (p.effective_date IS NULL), p.effective_date DESC) b WHERE ((s.name = b.sysname) AND (s.status = 'approved'::text));
+
+
+ALTER TABLE public.dashboard_mat_data OWNER TO pgbuildfarm;
+
+--
+-- Name: dashboard_mat_data2; Type: VIEW; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE VIEW dashboard_mat_data2 AS
+ SELECT b.sysname, b.snapshot, b.status, b.stage, b.branch, CASE WHEN ((b.conf_sum ~ 'use_vpath'::text) AND (b.conf_sum !~ '''use_vpath'' => undef'::text)) THEN (b.build_flags || 'vpath'::text) ELSE b.build_flags END AS build_flags, s.operating_system, COALESCE(b.os_version, s.os_version) AS os_version, s.compiler, COALESCE(b.compiler_version, s.compiler_version) AS compiler_version, s.architecture FROM buildsystems s, (SELECT DISTINCT ON (bs.sysname, bs.branch, bs.report_time) bs.sysname, bs.snapshot, bs.status, bs.stage, bs.branch, bs.build_flags, bs.conf_sum, bs.report_time, p.compiler_version, p.os_version FROM ((build_status bs NATURAL JOIN latest_snapshot m) LEFT JOIN personality p ON (((p.name = bs.sysname) AND (p.effective_date <= bs.report_time)))) WHERE (m.snapshot > (now() - '30 days'::interval)) ORDER BY bs.sysname, bs.branch, bs.report_time, (p.effective_date IS NULL), p.effective_date DESC) b WHERE ((s.name = b.sysname) AND (s.status = 'approved'::text));
+
+
+ALTER TABLE public.dashboard_mat_data2 OWNER TO pgbuildfarm;
+
+--
+-- Name: failures; Type: VIEW; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE VIEW failures AS
+ SELECT build_status.sysname, build_status.snapshot, build_status.stage, build_status.conf_sum, build_status.branch, build_status.changed_this_run, build_status.changed_since_success, build_status.log_archive_filenames, build_status.build_flags, build_status.report_time FROM build_status WHERE (((build_status.stage <> 'OK'::text) AND (build_status.stage !~~ 'CVS%'::text)) AND (build_status.report_time IS NOT NULL));
+
+
+ALTER TABLE public.failures OWNER TO pgbuildfarm;
+
+--
+-- Name: list_subscriptions; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE TABLE list_subscriptions (
+ addr text
+);
+
+
+ALTER TABLE public.list_subscriptions OWNER TO pgbuildfarm;
+
+--
+-- Name: penguin_save; Type: TABLE; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE TABLE penguin_save (
+ branch text,
+ snapshot timestamp without time zone,
+ stage text
+);
+
+
+ALTER TABLE public.penguin_save OWNER TO pgbuildfarm;
+
+--
+-- Name: recent_failures; Type: VIEW; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE VIEW recent_failures AS
+ SELECT build_status.sysname, build_status.snapshot, build_status.stage, build_status.conf_sum, build_status.branch, build_status.changed_this_run, build_status.changed_since_success, build_status.log_archive_filenames, build_status.build_flags, build_status.report_time, build_status.log FROM build_status WHERE ((((build_status.stage <> 'OK'::text) AND (build_status.stage !~~ 'CVS%'::text)) AND (build_status.report_time IS NOT NULL)) AND ((build_status.snapshot + '3 mons'::interval) > ('now'::text)::timestamp(6) with time zone));
+
+
+ALTER TABLE public.recent_failures OWNER TO pgbuildfarm;
+
+--
+-- Name: alerts_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+ALTER TABLE ONLY alerts
+ ADD CONSTRAINT alerts_pkey PRIMARY KEY (sysname, branch);
+
+
+ALTER INDEX public.alerts_pkey OWNER TO pgbuildfarm;
+
+--
+-- Name: build_status_log_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+ALTER TABLE ONLY build_status_log
+ ADD CONSTRAINT build_status_log_pkey PRIMARY KEY (sysname, snapshot, log_stage);
+
+
+ALTER INDEX public.build_status_log_pkey OWNER TO pgbuildfarm;
+
+--
+-- Name: build_status_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+ALTER TABLE ONLY build_status
+ ADD CONSTRAINT build_status_pkey PRIMARY KEY (sysname, snapshot);
+
+
+ALTER INDEX public.build_status_pkey OWNER TO pgbuildfarm;
+
+--
+-- Name: buildsystems_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+ALTER TABLE ONLY buildsystems
+ ADD CONSTRAINT buildsystems_pkey PRIMARY KEY (name);
+
+
+ALTER INDEX public.buildsystems_pkey OWNER TO pgbuildfarm;
+
+--
+-- Name: latest_snapshot_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+ALTER TABLE ONLY latest_snapshot
+ ADD CONSTRAINT latest_snapshot_pkey PRIMARY KEY (sysname, branch);
+
+
+ALTER INDEX public.latest_snapshot_pkey OWNER TO pgbuildfarm;
+
+--
+-- Name: personality_pkey; Type: CONSTRAINT; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+ALTER TABLE ONLY personality
+ ADD CONSTRAINT personality_pkey PRIMARY KEY (name, effective_date);
+
+
+ALTER INDEX public.personality_pkey OWNER TO pgbuildfarm;
+
+--
+-- Name: bs_branch_snapshot_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE INDEX bs_branch_snapshot_idx ON build_status USING btree (branch, snapshot);
+
+
+ALTER INDEX public.bs_branch_snapshot_idx OWNER TO pgbuildfarm;
+
+--
+-- Name: bs_status_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE INDEX bs_status_idx ON buildsystems USING btree (status);
+
+
+ALTER INDEX public.bs_status_idx OWNER TO pgbuildfarm;
+
+--
+-- Name: bs_sysname_branch_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE INDEX bs_sysname_branch_idx ON build_status USING btree (sysname, branch);
+
+
+ALTER INDEX public.bs_sysname_branch_idx OWNER TO pgbuildfarm;
+
+--
+-- Name: bs_sysname_branch_report_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE INDEX bs_sysname_branch_report_idx ON build_status USING btree (sysname, branch, report_time);
+
+
+ALTER INDEX public.bs_sysname_branch_report_idx OWNER TO pgbuildfarm;
+
+--
+-- Name: build_status_log_snapshot_idx; Type: INDEX; Schema: public; Owner: pgbuildfarm; Tablespace:
+--
+
+CREATE INDEX build_status_log_snapshot_idx ON build_status_log USING btree (snapshot);
+
+
+ALTER INDEX public.build_status_log_snapshot_idx OWNER TO pgbuildfarm;
+
+--
+-- Name: set_latest_snapshot; Type: TRIGGER; Schema: public; Owner: pgbuildfarm
+--
+
+CREATE TRIGGER set_latest_snapshot
+ AFTER INSERT ON build_status
+ FOR EACH ROW
+ EXECUTE PROCEDURE set_latest();
+
+
+--
+-- Name: bs_fk; Type: FK CONSTRAINT; Schema: public; Owner: pgbuildfarm
+--
+
+ALTER TABLE ONLY build_status
+ ADD CONSTRAINT bs_fk FOREIGN KEY (sysname) REFERENCES buildsystems(name) ON UPDATE CASCADE ON DELETE CASCADE;
+
+
+--
+-- Name: build_status_log_sysname_fkey; Type: FK CONSTRAINT; Schema: public; Owner: pgbuildfarm
+--
+
+ALTER TABLE ONLY build_status_log
+ ADD CONSTRAINT build_status_log_sysname_fkey FOREIGN KEY (sysname, snapshot) REFERENCES build_status(sysname, snapshot) ON UPDATE CASCADE ON DELETE CASCADE;
+
+
+--
+-- Name: personality_build_systems_name_fk; Type: FK CONSTRAINT; Schema: public; Owner: pgbuildfarm
+--
+
+ALTER TABLE ONLY personality
+ ADD CONSTRAINT personality_build_systems_name_fk FOREIGN KEY (name) REFERENCES buildsystems(name) ON UPDATE CASCADE ON DELETE CASCADE;
+
+
+--
+-- Name: public; Type: ACL; Schema: -; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON SCHEMA public FROM PUBLIC;
+REVOKE ALL ON SCHEMA public FROM pgbuildfarm;
+GRANT ALL ON SCHEMA public TO pgbuildfarm;
+GRANT ALL ON SCHEMA public TO PUBLIC;
+
+
+--
+-- Name: build_status; Type: ACL; Schema: public; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON TABLE build_status FROM PUBLIC;
+REVOKE ALL ON TABLE build_status FROM pgbuildfarm;
+GRANT ALL ON TABLE build_status TO pgbuildfarm;
+GRANT INSERT,SELECT ON TABLE build_status TO pgbfweb;
+GRANT SELECT ON TABLE build_status TO rssfeed;
+
+
+--
+-- Name: build_status_log; Type: ACL; Schema: public; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON TABLE build_status_log FROM PUBLIC;
+REVOKE ALL ON TABLE build_status_log FROM pgbuildfarm;
+GRANT ALL ON TABLE build_status_log TO pgbuildfarm;
+GRANT INSERT,SELECT,UPDATE,DELETE ON TABLE build_status_log TO pgbfweb;
+GRANT SELECT ON TABLE build_status_log TO rssfeed;
+
+
+--
+-- Name: buildsystems; Type: ACL; Schema: public; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON TABLE buildsystems FROM PUBLIC;
+REVOKE ALL ON TABLE buildsystems FROM pgbuildfarm;
+GRANT ALL ON TABLE buildsystems TO pgbuildfarm;
+GRANT INSERT,SELECT,UPDATE ON TABLE buildsystems TO pgbfweb;
+GRANT SELECT ON TABLE buildsystems TO rssfeed;
+
+
+--
+-- Name: latest_snapshot; Type: ACL; Schema: public; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON TABLE latest_snapshot FROM PUBLIC;
+REVOKE ALL ON TABLE latest_snapshot FROM pgbuildfarm;
+GRANT ALL ON TABLE latest_snapshot TO pgbuildfarm;
+GRANT INSERT,SELECT,UPDATE,DELETE ON TABLE latest_snapshot TO pgbfweb;
+
+
+--
+-- Name: personality; Type: ACL; Schema: public; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON TABLE personality FROM PUBLIC;
+REVOKE ALL ON TABLE personality FROM pgbuildfarm;
+GRANT ALL ON TABLE personality TO pgbuildfarm;
+GRANT INSERT,SELECT ON TABLE personality TO pgbfweb;
+GRANT SELECT ON TABLE personality TO rssfeed;
+
+
+--
+-- Name: dashboard; Type: ACL; Schema: public; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON TABLE dashboard FROM PUBLIC;
+REVOKE ALL ON TABLE dashboard FROM pgbuildfarm;
+GRANT ALL ON TABLE dashboard TO pgbuildfarm;
+GRANT SELECT ON TABLE dashboard TO pgbfweb;
+
+
+--
+-- Name: dashboard_ex; Type: ACL; Schema: public; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON TABLE dashboard_ex FROM PUBLIC;
+REVOKE ALL ON TABLE dashboard_ex FROM pgbuildfarm;
+GRANT ALL ON TABLE dashboard_ex TO pgbuildfarm;
+GRANT SELECT ON TABLE dashboard_ex TO pgbfweb;
+
+
+--
+-- Name: dashboard_mat; Type: ACL; Schema: public; Owner: pgbfweb
+--
+
+REVOKE ALL ON TABLE dashboard_mat FROM PUBLIC;
+REVOKE ALL ON TABLE dashboard_mat FROM pgbfweb;
+GRANT ALL ON TABLE dashboard_mat TO pgbfweb;
+
+
+--
+-- Name: dashboard_mat_data; Type: ACL; Schema: public; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON TABLE dashboard_mat_data FROM PUBLIC;
+REVOKE ALL ON TABLE dashboard_mat_data FROM pgbuildfarm;
+GRANT ALL ON TABLE dashboard_mat_data TO pgbuildfarm;
+GRANT SELECT ON TABLE dashboard_mat_data TO pgbfweb;
+
+
+--
+-- Name: dashboard_mat_data2; Type: ACL; Schema: public; Owner: pgbuildfarm
+--
+
+REVOKE ALL ON TABLE dashboard_mat_data2 FROM PUBLIC;
+REVOKE ALL ON TABLE dashboard_mat_data2 FROM pgbuildfarm;
+GRANT ALL ON TABLE dashboard_mat_data2 TO pgbuildfarm;
+GRANT SELECT ON TABLE dashboard_mat_data2 TO pgbfweb;
+
+
+--
+-- PostgreSQL database dump complete
+--
+
--- /dev/null
+#------------------------------------------------------------------------
+# Compiled template generated by the Template Toolkit version 2.14
+#------------------------------------------------------------------------
+
+Template::Document->new({
+ METADATA => {
+ 'modtime' => '1107104454',
+ 'name' => 'bfwrapper.tt',
+ },
+ BLOCK => sub {
+ my $context = shift || die "template sub called without context\n";
+ my $stash = $context->stash;
+ my $output = '';
+ my $error;
+
+ eval { BLOCK: {
+ $output .= "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n <meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />\n <title>PostgreSQL BuildFarm Status</title>\n <link rel=\"stylesheet\" rev=\"stylesheet\" href=\"/inc/pgbf.css\" charset=\"utf-8\"\n />\n <style type=\"text/css\"><!--\n li#status a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat \n100% -20px; } \n li#status { background: url(/inc/b/l.png) no-repeat 0% -20px; }\n --></style>\n</head>\n<body>\n<div id=\"wrapper\">\n<div id=\"banner\">\n<a href=\"/index.html\"><img src=\"/inc/pgbuildfarm-banner.png\" alt=\"PostgreSQL Bui\nldFarm\" width=\"800\" height=\"73\" /></a>\n<div id=\"nav\">\n<ul>\n <li id=\"home\"><a href=\"/index.html\" title=\"PostgreSQL BuildFarm Home\">Home</\na></li>\n <li id=\"status\"><a href=\"/cgi-bin/show_status.pl\" title=\"Current results\">St\natus</a></li>\n <li id=\"members\"><a href=\"/cgi-bin/show_members.pl\" title=\"Platforms tested\"\n>Members</a></li>\n <li id=\"register\"><a href=\"/register.html\" title=\"Join PostgreSQL BuildFarm\"\n>Register</a></li>\n <li id=\"pgfoundry\"><a href=\"http://pgfoundry.org/projects/pgbuildfarm/\">PGFo\nundry</a></li>\n <li id=\"postgresql.org\"><a href=\"http://www.postgresql.org\">PostgreSQL.org</\na></li>\n</ul>\n</div><!-- nav -->\n</div><!-- banner -->\n<div id=\"main\">\n";
+ #line 38 "/home/community/pgbuildfarm/templates/bfwrapper.tt"
+ $output .= $stash->get('content');
+ $output .= "\n</div><!-- main -->\n</div><!-- wrapper -->\n </body>\n</html>\n";
+ } };
+ if ($@) {
+ $error = $context->catch($@, \$output);
+ die $error unless $error->type eq 'return';
+ }
+
+ return $output;
+ },
+ DEFBLOCKS => {
+
+ },
+});
--- /dev/null
+#------------------------------------------------------------------------
+# Compiled template generated by the Template Toolkit version 2.14
+#------------------------------------------------------------------------
+
+Template::Document->new({
+ METADATA => {
+ 'modtime' => '1127835909',
+ 'name' => 'dashboard.tt',
+ },
+ BLOCK => sub {
+ my $context = shift || die "template sub called without context\n";
+ my $stash = $context->stash;
+ my $output = '';
+ my $error;
+
+ eval { BLOCK: {
+ #line 1 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $stash->set('flag_imgs', { 'perl' => '/img/camel.png', 'python' => '/img/python.png', 'debug' => '/img/bug.png', 'pam' => '/img/pam.png', 'cassert' => '/img/cassert.png', 'openssl' => '/img/ssl_icon.gif', 'nls' => '/img/translateicon.gif', 'krb5' => '/img/krb.gif', 'tcl' => '/img/tcl.png', 'thread-safety' => '/img/threads.gif', 'integer-datetimes' => '/img/days.png' });
+
+
+ $output .= "\n<div id=\"main\">\n <h1>PostgreSQL BuildFarm Status</h1>\n <p>\n Shown here is the latest status of each farm member \n for each branch it has reported on in the last 30 days.\n </p>\n <p>\n Use the farm member link for history of that member \n on the relevant branch.\n </p>\n<table><tr><th class=\"head\" rowspan=\"2\">Legend</th>\n";
+ #line 45 "/home/community/pgbuildfarm/templates/dashboard.tt"
+
+ # FOREACH
+ do {
+ my ($value, $error, $oldloop);
+ my $list = $stash->get('flag_imgs');
+
+ unless (UNIVERSAL::isa($list, 'Template::Iterator')) {
+ $list = Template::Config->iterator($list)
+ || die $Template::Config::ERROR, "\n";
+ }
+
+ ($value, $error) = $list->get_first();
+ eval { $oldloop = $stash->get('loop') };
+ $stash->set('loop', $list);
+ eval {
+ LOOP: while (! $error) {
+ $stash->{'flagset'} = $value;
+ $output .= "\n<td><img src=\"";
+ #line 43 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['flagset', 0, 'value', 0]);
+ $output .= "\" title=\"";
+ #line 43 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['flagset', 0, 'key', 0]);
+ $output .= "\" alt=\"";
+ #line 43 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['flagset', 0, 'key', 0]);
+ $output .= "\" height=\"16\" width=\"16\" class=\"inline\" align=\"center\"/> = ";
+ #line 43 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['flagset', 0, 'key', 0]);
+ $output .= "</td>\n";
+ #line 44 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ if ($stash->get(['loop', 0, 'count', 0]) eq 5) {
+ $output .= "</tr><tr>";
+ }
+
+ $output .= "\n";;
+ ($value, $error) = $list->get_next();
+ }
+ };
+ $stash->set('loop', $oldloop);
+ die $@ if $@;
+ $error = 0 if $error && $error eq Template::Constants::STATUS_DONE;
+ die $error if $error;
+ };
+
+ $output .= "\n</tr></table>\n<br />\n <table cellspacing=\"0\">\n";
+ #line 49 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $stash->set('brch', '');
+ $output .= "\n";
+ #line 81 "/home/community/pgbuildfarm/templates/dashboard.tt"
+
+ # FOREACH
+ do {
+ my ($value, $error, $oldloop);
+ my $list = $stash->get('statrows');
+
+ unless (UNIVERSAL::isa($list, 'Template::Iterator')) {
+ $list = Template::Config->iterator($list)
+ || die $Template::Config::ERROR, "\n";
+ }
+
+ ($value, $error) = $list->get_first();
+ eval { $oldloop = $stash->get('loop') };
+ $stash->set('loop', $list);
+ eval {
+ LOOP: while (! $error) {
+ $stash->{'row'} = $value;
+ $output .= "\n";
+ #line 54 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ if ($stash->get(['row', 0, 'branch', 0]) ne $stash->get('brch')) {
+ #line 51 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $stash->set('brch', $stash->get(['row', 0, 'branch', 0]));
+ $output .= "\n<tr><th class=\"head\" colspan=\"4\">Branch: ";
+ #line 52 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get('brch');
+ $output .= "</th></tr>\n<tr><th>Alias</th><th>System</th><th>Status</th><th>Flags</th></tr>\n";
+ }
+
+ $output .= "\n<tr ";
+ #line 55 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $context->process('cl', { 'bgfor' => $stash->get(['row', 0, 'stage', 0]) });
+ $output .= ">\n <td><a \n href=\"show_history.pl?nm=";
+ #line 57 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'sysname', 0]);
+ $output .= "&br=";
+ #line 57 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'branch', 0]);
+ $output .= "\"\n title=\"History\"\n >";
+ #line 59 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'sysname', 0]);
+ $output .= "</a></td>\n <td><span class=\"opsys\">";
+ #line 60 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'operating_system', 0]);
+ $output .= "\n ";
+ #line 61 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'os_version', 0]);
+ $output .= "</span> <span class=\"compiler\">";
+ #line 63 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'compiler', 0]);
+ $output .= "\n ";
+ #line 64 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'compiler_version', 0]);
+ $output .= "</span> <span class=\"arch\">";
+ #line 66 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'architecture', 0]);
+ $output .= "</span></td>\n <td class=\"status\">";
+ #line 69 "/home/community/pgbuildfarm/templates/dashboard.tt"
+
+ # FILTER
+ $output .= do {
+ my $output = '';
+ my $filter = $context->filter('replace', [ '\s', ' ' ])
+ || $context->throw($context->error);
+
+ $output .= $stash->get(['row', 0, 'when_ago', 0]);
+
+ &$filter($output);
+ };
+
+ $output .= " ago \n ";
+ #line 70 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'stage', 0]);
+ $output .= " <a href=\"show_log.pl?nm=";
+ #line 73 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['row', 0, 'sysname', 0]);
+ $output .= "&dt=";
+ #line 75 "/home/community/pgbuildfarm/templates/dashboard.tt"
+
+ # FILTER
+ $output .= do {
+ my $output = '';
+ my $filter = $context->filter('uri')
+ || $context->throw($context->error);
+
+ $output .= $stash->get(['row', 0, 'snapshot', 0]);
+
+ &$filter($output);
+ };
+
+ $output .= "\">";
+ #line 77 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ if ($stash->get(['row', 0, 'stage', 0]) ne 'OK') {
+ $output .= "Details";
+ }
+ else {
+ $output .= "Config";
+ }
+
+ $output .= "</a></td>\n\n <td class=\"flags\">";
+ #line 79 "/home/community/pgbuildfarm/templates/dashboard.tt"
+
+ # FOREACH
+ do {
+ my ($value, $error, $oldloop);
+ my $list = $stash->get(['row', 0, 'build_flags', 0, 'split', 0, 'sort', 0]);
+
+ unless (UNIVERSAL::isa($list, 'Template::Iterator')) {
+ $list = Template::Config->iterator($list)
+ || die $Template::Config::ERROR, "\n";
+ }
+
+ ($value, $error) = $list->get_first();
+ eval { $oldloop = $stash->get('loop') };
+ $stash->set('loop', $list);
+ eval {
+ LOOP: while (! $error) {
+ $stash->{'flag'} = $value;
+ #line 79 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $context->process('img');;
+ ($value, $error) = $list->get_next();
+ }
+ };
+ $stash->set('loop', $oldloop);
+ die $@ if $@;
+ $error = 0 if $error && $error eq Template::Constants::STATUS_DONE;
+ die $error if $error;
+ };
+
+ $output .= "</td>\n</tr>\n";;
+ ($value, $error) = $list->get_next();
+ }
+ };
+ $stash->set('loop', $oldloop);
+ die $@ if $@;
+ $error = 0 if $error && $error eq Template::Constants::STATUS_DONE;
+ die $error if $error;
+ };
+
+ $output .= "\n </table>\n</div>\n\n";
+ } };
+ if ($@) {
+ $error = $context->catch($@, \$output);
+ die $error unless $error->type eq 'return';
+ }
+
+ return $output;
+ },
+ DEFBLOCKS => {
+ 'cl' => sub {
+ my $context = shift || die "template sub called without context\n";
+ my $stash = $context->stash;
+ my $output = '';
+ my $error;
+
+ eval { BLOCK: {
+ $output .= " class=\"";
+ #line 27 "/home/community/pgbuildfarm/templates/dashboard.tt"
+
+ # SWITCH
+ do {
+ my $result = $stash->get('bgfor');
+ my $match;
+ SWITCH: {
+ $match = 'OK';
+ $match = [ $match ] unless ref $match eq 'ARRAY';
+ if (grep(/^$result$/, @$match)) {
+ $output .= "pass";
+ last SWITCH;
+ }
+ $match = 'ContribCheck';
+ $match = [ $match ] unless ref $match eq 'ARRAY';
+ if (grep(/^$result$/, @$match)) {
+ $output .= "warn";
+ last SWITCH;
+ }
+ $match = [ 'Check', 'InstallCheck' ];
+ $match = [ $match ] unless ref $match eq 'ARRAY';
+ if (grep(/^$result$/, @$match)) {
+ $output .= "warnx";
+ last SWITCH;
+ }
+ $output .= "fail";
+ }
+ };
+
+ $output .= "\"";
+ } };
+ if ($@) {
+ $error = $context->catch($@, \$output);
+ die $error unless $error->type eq 'return';
+ }
+
+ return $output;
+ },
+ 'img' => sub {
+ my $context = shift || die "template sub called without context\n";
+ my $stash = $context->stash;
+ my $output = '';
+ my $error;
+
+ eval { BLOCK: {
+ #line 22 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ if ($stash->get('flag') eq 'depend' || $stash->get('flag') eq 'gnu-ld') {
+
+ }
+ elsif ($stash->get(['flag_imgs', 0, $stash->get('flag'), 0])) {
+ #line 22 "/home/community/pgbuildfarm/templates/dashboard.tt"
+
+ # FILTER
+ $output .= do {
+ my $output = '';
+ my $filter = $context->filter('collapse')
+ || $context->throw($context->error);
+
+ $output .= "<img src=\"";
+ #line 19 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get(['flag_imgs', 0, $stash->get('flag'), 0]);
+ $output .= "\" \n title=\"";
+ #line 20 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get('flag');
+ $output .= "\" alt=\"";
+ #line 20 "/home/community/pgbuildfarm/templates/dashboard.tt"
+ $output .= $stash->get('flag');
+ $output .= "\" \n height=\"16\" width=\"16\" class=\"inline\" align=\"bottom\" /> \n ";
+
+ &$filter($output);
+ };
+
+ }
+
+ } };
+ if ($@) {
+ $error = $context->catch($@, \$output);
+ die $error unless $error->type eq 'return';
+ }
+
+ return $output;
+ },
+ },
+});
--- /dev/null
+[%- BLOCK cl %] class="[% SWITCH bgfor -%]
+ [%- CASE 'OK' %]pass[% CASE 'ContribCheck' %]warn[% CASE [ 'Check' 'InstallCheck' ] %]warnx[% CASE %]fail[% END %]"
+[%- END -%]
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+ <title>PostgreSQL BuildFarm History</title>
+ <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
+ <style type="text/css"><!--
+ li#status a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat 100% -20px; }
+ li#status { background: url(/inc/b/l.png) no-repeat 0% -20px; }
+ --></style>
+</head>
+<body class="history">
+<div id="wrapper">
+<div id="banner">
+<a href="/index.html"><img src="/inc/pgbuildfarm-banner.png" alt="PostgreSQL BuildFarm" width="800" height="73" /></a>
+<div id="nav">
+<ul>
+ <li id="home"><a href="/index.html" title="PostgreSQL BuildFarm Home">Home</a></li>
+ <li id="status"><a href="/cgi-bin/show_status.pl" title="Current results">Status</a></li>
+ <li id="members"><a href="/cgi-bin/show_members.pl" title="Platforms tested">Members</a></li>
+ <li id="register"><a href="/cgi-bin/register-form.pl" title="Join PostgreSQL BuildFarm">Register</a></li>
+ <li id="pgfoundry"><a href="http://pgfoundry.org/projects/pgbuildfarm/">PGFoundry</a></li>
+</ul>
+</div><!-- nav -->
+</div><!-- banner -->
+<div id="main">
+<h1>PostgreSQL BuildFarm Status History</h1>
+<table cellspacing="0">
+ <tr><th class="head" colspan="3">System Detail</th></tr>
+ <tr class="member"><th>Farm member</th><td>[% member %]</td></tr>
+ <tr><th>OS</th><td>[% statrows.0.operating_system %] [% statrows.0.os_version %]</td></tr>
+<!-- <tr><th>OS Version</th><td>[% statrows.0.os_version %]</td></tr> -->
+ <tr><th>Compiler</th><td>[% statrows.0.compiler %] [% statrows.0.compiler_version %]</td></tr>
+<!-- <tr><th>Compiler Version</th><td>[% statrows.0.compiler_version %]</td></tr> -->
+ <tr><th>Architecture</th><td>[% statrows.0.architecture %]</td></tr>
+ </table>
+ <h3>Branch: [% branch %][% IF statrows.size >= 240 %] (last 240 entries shown)[% END %]</h3>
+[% BLOCK stdet %]
+<tr [% PROCESS cl bgfor=row.stage %]>
+ <td>[%- row.when_ago | replace('\s',' ') %] ago </td>
+ <td class="status">[% row.stage -%]</td>
+ <td class="status"><a href="show_log.pl?nm=
+ [%- row.sysname %]&dt=
+ [%- row.snapshot | uri %]">
+ [%- IF row.stage != 'OK' %]Details[% ELSE %]Config[% END -%]</a></td>
+
+</tr>
+[% END %]
+<table border="0"> <tr>
+[% FOREACH offset IN [0,1,2] %][% low = offset * statrows.size / 3 ; high = -1 + (offset + 1) * statrows.size / 3 %]
+[% TRY %][% PERL %]
+ use POSIX qw(floor);
+ $stash->set(low => floor($stash->get('low')));
+ $stash->set(high => floor($stash->get('high')));
+[% END %][% CATCH %]<!-- [% error.info %] --> [% END %]
+ <td><table cellspacing="0">
+<!-- <tr><th colspan=3>low = [% low %], high = [% high %]</th></tr> -->
+ [% FOREACH xrow IN statrows.slice(low,high) %][% PROCESS stdet row=xrow %][% END %]
+ </table></td>
+[% END %]
+</table>
+ </div><!-- main -->
+ </div><!-- wrapper -->
+ </body>
+</html>
--- /dev/null
+[%- BLOCK cl %] class=" [% SWITCH bgfor -%]
+ [%- CASE 'OK' %]pass[% CASE 'ContribCheck' %]warn[% CASE [ 'Check' 'InstallCheck' ] %]warnx[% CASE %]fail[% END %]"
+[%- END -%]
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+ <title>PostgreSQL BuildFarm Status</title>
+ <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
+ <style type="text/css"><!--
+ li#status a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat 100% -20px; }
+ li#status { background: url(/inc/b/l.png) no-repeat 0% -20px; }
+ --></style>
+</head>
+<body>
+<div id="wrapper">
+<div id="banner">
+<a href="/index.html"><img src="/inc/pgbuildfarm-banner.png" alt="PostgreSQL BuildFarm" width="800" height="73" /></a>
+<div id="nav">
+<ul>
+ <li id="home"><a href="/index.html" title="PostgreSQL BuildFarm Home">Home</a></li>
+ <li id="status"><a href="/cgi-bin/show_status.pl" title="Current results">Status</a></li>
+ <li id="members"><a href="/cgi-bin/show_members.pl" title="Platforms tested">Members</a></li>
+ <li id="register"><a href="/cgi-bin/register-form.pl" title="Join PostgreSQL BuildFarm">Register</a></li>
+ <li id="pgfoundry"><a href="http://pgfoundry.org/projects/pgbuildfarm/">PGFoundry</a></li>
+ <li id="postgresql.org"><a href="http://www.postgresql.org">PostgreSQL.org</a></li>
+</ul>
+</div><!-- nav -->
+</div><!-- banner -->
+<div id="main">
+ <h1>PostgreSQL BuildFarm Status</h1>
+ <p>
+ Shown here is the latest status of each farm member
+ for each branch it has reported on in the last 30 days.
+ </p>
+ <p>
+ Use the farm member link for history of that member
+ on the relevant branch.
+ </p>
+ <table cellspacing="0">
+[% brch = "" %]
+[% FOREACH row IN statrows %]
+[% IF row.branch != brch ; brch = row.branch %]
+<tr><th class="head" colspan="3">Branch: [% brch %]</th></tr>
+<tr><th>Alias</th><th>System</th><th>Status</th></tr>
+[% END %]
+<tr [% PROCESS cl bgfor=row.stage %]>
+ <td><a
+ href="show_history.pl?nm=[% row.sysname %]&br=[% row.branch %]"
+ title="History"
+ >[% row.sysname %]</a></td>
+ <td><span class="opsys">[% row.operating_system %]
+ [% row.os_version %]</span> <span class="compiler">
+ [%- row.compiler %]
+ [% row.compiler_version %]</span> <span class="arch">
+ [%- row.architecture %]</span></td>
+ <td class="status">
+ [%- row.when_ago | replace('\s',' ') %] ago
+ [% row.stage -%]
+ <a href="show_log.pl?nm=
+ [%- row.sysname %]&dt=
+ [%- row.snapshot | uri %]">
+ [%- IF row.stage != 'OK' %]Details[% ELSE %]Config[% END -%]</a></td>
+
+</tr>
+[% END %]
+ </table>
+</div><!-- main -->
+</div><!-- wrapper -->
+ </body>
+</html>
+
+
+
+
+
+
+
+
--- /dev/null
+[%- BLOCK cl %] class="[% SWITCH bgfor -%]
+ [%- CASE 'OK' %]pass[% CASE 'ContribCheck' %]warn[% CASE [ 'Check' 'InstallCheck' ] %]warnx[% CASE %]fail[% END %]"
+[%- END -%]
+[% WRAPPER 'page.tt'
+ title = 'PostgreSQL BuildFarm History'
+ bodyclass = 'history'
+ pagebutton = 'none'
+%]
+<h1>PostgreSQL BuildFarm Status History</h1>
+ <table cellspacing="0">
+ <tr><th class="head" colspan="3">System Detail</th></tr>
+ <tr class="member"><th>Farm member</th><td>[% member %]</td></tr>
+ <tr><th>OS</th><td>[% statrows.0.operating_system %] [% statrows.0.os_version %]</td></tr>
+ <tr><th>Compiler</th><td>[% statrows.0.compiler %] [% statrows.0.compiler_version %]</td></tr>
+ <tr><th>Architecture</th><td>[% statrows.0.architecture %]</td></tr>
+ <tr><th>Owner</th><td>[% statrows.0.owner_email %]</td></tr>
+ </table>
+[% IF statrows.0.sys_notes %]
+ <br />
+ <table>
+ <tr>
+ <th class="head" rowspan="2">System Notes</th>
+ <th>Date</th>
+ <th>Notes</th>
+ </tr>
+ <tr>
+ <td>[% statrows.0.sys_notes_date %]</td>
+ <td>[% statrows.0.sys_notes %]</td>
+ </tr>
+ </table>
+[% END %]
+ <h3>Branch: [% branch %][% IF statrows.size >= hm %] (last [% hm %] entries shown)[% END %]</h3>
+[% BLOCK stdet %]
+ <tr [% PROCESS cl bgfor=row.stage %]>
+ <td>[%- row.when_ago | replace('\s',' ') %] ago </td>
+ <td class="status">[% row.stage -%]</td>
+ <td class="status"><a href="show_log.pl?nm=
+ [%- row.sysname %]&dt=
+ [%- row.snapshot | uri %]">
+ [%- IF row.stage != 'OK' %]Details[% ELSE %]Config[% END -%]</a></td>
+
+ </tr>
+[% END %]
+<table border="0"> <tr>
+ [% FOREACH offset IN [0,1,2] %][% low = offset * statrows.size / 3 ; high = -1 + (offset + 1) * statrows.size / 3 %]
+ [% TRY %][% PERL %]
+ use POSIX qw(floor);
+ $stash->set(low => floor($stash->get('low')));
+ $stash->set(high => floor($stash->get('high')));
+ [% END %][% CATCH %]<!-- [% error.info %] --> [% END %]
+ <td><table cellspacing="0">
+ [% FOREACH xrow IN statrows.slice(low,high) %][% PROCESS stdet row=xrow %][% END %]
+ </table></td>
+ [% END %]
+</table>
+[% END %]
--- /dev/null
+[%#
+
+ Use this template to generate the index page, with something like:
+
+ tpage index.tt > ../htdocs/index.html
+
+-%]
+[% WRAPPER 'page.tt'
+ title = 'PostgreSQL BuildFarm'
+ bodyclass = 'none'
+ pagebutton = 'home'
+%]
+<!-- html generated from index.tt -->
+<p>
+The PostgreSQL build farm is a distributed system for automatically testing
+changes in the source code for PostgreSQL as they occur, on a wide variety
+of platforms. This server is the central repository for the results of those
+tests.
+</p>
+<p>
+To see the current status of tests on various branches, check the
+<a href="/cgi-bin/show_status.pl" title="Status Page">Status Page</a>.
+</p>
+<p>
+If you are interested in running a member of the build farm, then please visit
+the <a href="/cgi-bin/register-form.pl" title="Register">Registration Page</a>.
+We are particularly interested in unusual platforms or combinations of
+architecture, operating system and compiler.
+</p>
+<p>To see what is involved in running a buildfarm member, please
+read <a href="http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto">http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto</a>.
+The client code can be found at the
+<a href="http://pgfoundry.org/projects/pgbuildfarm/">project page</a> at
+<a href="http://pgfoundry.org/">PGFoundry</a>.
+</p>
+<p>The build farm software should run on all platforms that can support PostgreSQL.
+</p>
+[% END %]
--- /dev/null
+[% PERL %]
+ use POSIX qw(ceil);
+ my $lrfactor = 6;
+ $stash->set(lrfactor => $lrfactor);
+ my $rows = $stash->get('log_file_names');
+ my $logrows = ceil(scalar(@$rows)/$lrfactor);
+ my $logcells = $lrfactor * $logrows;
+ $stash->set( logcells => $logcells);
+ $stash->set( logrows => $logrows );
+[% END -%]
+[% mytitle = BLOCK %]PostgreSQL BuildFarm | [% IF stage != 'OK' %]Log for system "[% system %]" failure on snapshot taken [% urldt ; ELSE %]Configuration summary for system "[% system %]" snapshot taken [% urldt ; END ; END -%]
+[%
+ cvsurl = 'http://anoncvs.postgresql.org/cvsweb.cgi';
+ giturl = scmurl || 'http://git.postgresql.org/gitweb?p=postgresql.git;a=commit;h=';
+-%]
+[% WRAPPER 'page.tt'
+ title = mytitle
+ bodyclass = 'none'
+ pagebutton = 'none'
+%]
+<h1>PostgreSQL Build Farm Log</h1>
+<h2>Details for system "[% system %]"[% IF stage != 'OK' %] failure at stage [% stage ; ELSE %], status 'OK'[% END %], snapshot taken [% urldt %]</h2>
+<table cellspacing="0">
+ <tr>
+ <th class="head" rowspan="2">System Information</th>
+ <th>Farm member</th>
+ <th>Branch</th>
+ <th>OS</th>
+ <th>Compiler</th>
+ <th>Architecture</th>
+ <th>Owner</th>
+ </tr>
+ <tr>
+ <td>[% system %]</td>
+ <td><a href="/cgi-bin/show_history.pl?nm=[% system %]&br=[% branch %]">[% branch %]</a></td>
+ <td>[% info_row.operating_system %] [% info_row.os_version %]</td>
+ <td>[% info_row.compiler %] [% info_row.compiler_version %]</td>
+ <td>[% info_row.architecture %]</td>
+ <td>[% info_row.owner_email %]</td>
+ </tr>
+ </table>
+[% IF info_row.sys_notes %]
+ <br />
+ <table>
+ <tr>
+ <th class="head" rowspan="2">System Notes</th>
+ <th>Date</th>
+ <th>Notes</th>
+ </tr>
+ <tr>
+ <td>[% info_row.sys_notes_date %]</td>
+ <td>[% info_row.sys_notes %]</td>
+ </tr>
+ </table>
+[% END %]
+[% cell = 0; FOREACH logstage IN log_file_names ; striplog = logstage.replace('\.log$','') ; cell = loop.count %]
+ [% IF loop.first %]
+ <br /> <table><tr><th class='head' rowspan='[% logrows %]'>Stage Logs</th>
+ [% END %]
+ [% IF loop.count > 1 and loop.count % lrfactor == 1 %]<tr>[% END %]
+ <td><a href='show_stage_log.pl?nm=[% system %]&dt=[% urldt | uri %]&stg=[% striplog %]'>[% striplog %]</a></td>
+ [% IF loop.count % lrfactor == 0 %]</tr>[% END %]
+[% END %]
+
+[% IF cell > 0 ; nrcell = cell + 1; ncells = [ nrcell .. logcells ] ; FOREACH rcell IN ncells %]
+ [% IF rcell > 1 and rcell % lrfactor == 1 %]<tr>[% END %]
+ <td> </td>
+ [% IF rcell % lrfactor == 0 %]</tr>[% END %]
+ [% END %]
+ </table>
+[% END %]
+
+<h3>Configuration summary</h3>
+<pre>
+[% conf | html %]
+</pre>
+<h3>Files changed this run</h3>
+<pre>
+[%- IF changed_this_run.0 -%]
+[%- FOREACH changed IN changed_this_run %]
+<a href="[% IF scm == 'git' ; giturl; changed.1; ELSE ; cvsurl ; changed.0; 'rev='; changed.1; END %]">[% changed.0 ; IF scm == 'cvs'; ' '; changed.1; END %]</a>
+[%- END -%]
+[%- ELSE %]
+not recorded
+[% END -%]
+</pre>
+[% IF stage != 'OK' %]
+<h3>Files changed since last success</h3>
+<pre>
+[%- IF changed_since_success.0 %]
+[%- FOREACH changed IN changed_since_success %]
+<a href="[% IF scm == 'git' ; giturl; changed.1; ELSE ; cvsurl ; changed.0; 'rev='; changed.1; END %]">[% changed.0 ; IF scm == 'cvs'; ' '; changed.1; END %]</a>
+[%- END -%]
+[%- ELSE %]
+not recorded
+[% END -%]
+</pre>
+[% END %]
+<h3>Log</h3>
+<pre>
+[% log | html %]
+</pre>
+[% END %]
--- /dev/null
+[% WRAPPER 'page.tt'
+ title = 'PostgreSQL BuildFarm Members'
+ bodyclass = 'members'
+ pagebutton = 'members'
+%]
+<h1>PostgreSQL BuildFarm Members</h1>
+ <p>Click branch links to see build history. Click the heading links to resort the list. Select members by checkbox and hit the button at the bottom to create a status custom filter.</p>
+ <form name="filter" method="GET" action="/cgi-bin/show_status.pl">
+ <table cellspacing="0">
+ <tr>
+ <td> </td>
+ <th><a href="/cgi-bin/show_members.pl?sort_by=name">Name</a><br /><a href="/cgi-bin/show_members.pl?sort_by=owner">Owner</a></th>
+ <th><a href="/cgi-bin/show_members.pl?sort_by=os">OS / Version</a></th>
+ <th><a href="/cgi-bin/show_members.pl?sort_by=compiler">Compiler / Version</a></th>
+ <th><a href="/cgi-bin/show_members.pl?sort_by=arch">Arch</a></th>
+ <th>Branches reported on<br />(most recent report)</th>
+ </tr>
+[% alt = true %]
+[% FOREACH row IN statrows ;
+ have_recent = 0;
+ FOREACH branch_days IN row.branches.split(',') ;
+ branch_fields = branch_days.split(':');
+ branch_day = branch_fields.1;
+ IF branch_day < 365 ; have_recent = 1; END;
+ END;
+ IF have_recent ;
+%] <tr [%- IF alt %]class="alt"[% END -%]>
+ [% alt = ! alt %]
+ <td><input type="checkbox" name="member" value="[% row.name %]" /></td>
+ <td>[% row.name %]<br />[% row.owner_email %]
+[% IF row.sys_notes %]
+ <br />
+ Notes: ([% row.sys_notes_date %]) [% row.sys_notes %]
+[% END %]
+ </td>
+ <td>[% row.operating_system %]<br />[% row.os_version %]
+ [% prev_osver = row.osversion;
+ FOREACH personality IN row.personalities;
+ IF personality.os_version != prev_osver
+ %]
+ <br / > w.e.f. [% personality.effective_date %]: [% personality.os_version %]
+ [% prev_osver = personality.os_version; END; END %]
+ </td>
+ <td>[% row.compiler %]<br />[% row.compiler_version %]
+ [% prev_compver = row.compiler_version;
+ FOREACH personality IN row.personalities;
+ IF personality.compiler_version != prev_compver
+ %]
+ <br / > w.e.f. [% personality.effective_date %]: [% personality.compiler_version %]
+ [% prev_compver = personality.compiler_version; END; END %]
+ </td>
+ <td>[% row.arch %]</td>
+ <td class="branch">[% IF ! row.branches ; ' ' ; END -%]
+ <ul>
+ [%-
+ FOREACH branch_days IN row.branches.split(',') ;
+ branch_fields = branch_days.split(':');
+ branch = branch_fields.0;
+ branch_day = branch_fields.1;
+ IF branch_day < 365 ;
+ %]<li><a
+ href="show_history.pl?nm=[% row.name %]&br=[% branch %]"
+ title="History"
+ >[% branch %]</a> ([% branch_day %] days ago)</li>[% END; END %]</ul></td>
+ </tr>
+[% END; END %]
+ </table>
+ <input type="submit" value="Make Filter" />
+ </form>
+[% END %]
--- /dev/null
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+ <title>[% title %]</title>
+ <link rel="icon" type="image/png" href="/elephant-icon.png" />
+ <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
+ <style type="text/css"><!--
+ li#[% pagebutton %] a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat 100% -20px; }
+ li#[% pagebutton %] { background: url(/inc/b/l.png) no-repeat 0% -20px; }
+ --></style>
+ </head>
+ <body class="[% bodyclass %]">
+ <div id="wrapper">
+ <div id="banner">
+ <a href="/index.html"><img src="/inc/pgbuildfarm-banner.png" alt="PostgreSQL BuildFarm" width="800" height="73" /></a>
+ <div id="nav">
+ <ul>
+ <li id="home"><a href="/index.html" title="PostgreSQL BuildFarm Home">Home</a></li>
+ <li id="status"><a href="/cgi-bin/show_status.pl" title="Current results">Status</a></li>
+ <li id="members"><a href="/cgi-bin/show_members.pl" title="Platforms tested">Members</a></li>
+ <li id="register"><a href="/cgi-bin/register-form.pl" title="Join PostgreSQL BuildFarm">Register</a></li>
+ <li id="pgfoundry"><a href="http://pgfoundry.org/projects/pgbuildfarm/">PGFoundry</a></li>
+ </ul>
+ </div><!-- nav -->
+ </div><!-- banner -->
+ <div id="main">
+ [% content %]
+ </div><!-- main -->
+ <hr />
+ <p style="text-align: center;">
+ Hosting for the PostgreSQL Buildfarm is generously
+ provided by:
+ <a href="http://www.commandprompt.com">CommandPrompt, The PostgreSQL Company</a>
+ </p>
+ </div><!-- wrapper -->
+ </body>
+</html>
--- /dev/null
+[% WRAPPER 'page.tt'
+ title = 'PostgreSQL BuildFarm Application'
+ bodyclass = 'application'
+ pagebutton = 'register'
+%]
+<h1>Application to join PostgreSQL BuildFarm</h1>
+
+<p>Here is a short description of what is required to join the buildfarm successfully. Please read it carefully
+before submitting this form.</p>
+
+<ul>
+<li> your machine will need to be able to contact <a href="http://www.pgbuildfarm.org">http://www.pgbuildfarm.org</a>
+ either directly or via proxy, and it will need access to a PostgreSQL CVS repository,
+ either the one at postgresql.org or a mirror (you can set up your own mirror using CSVup on a Linux or FreeBSD machine -
+ this is recommended).</li>
+<li> have a working Postgresql build environment for your platform
+ (for Windows this means MSys/MinGW with the libz and libintl stuff, and ideally native Python and Tcl).</li>
+<li> Windows only: you will need a native perl installed as well as the one in the MSys DTK. The one from ActiveState works fine.</li>
+<li> download and unpack the latest release of client code from
+ <a href="http://pgfoundry.org/frs/?group_id=1000040">http://pgfoundry.org/frs/?group_id=1000040</a></li>
+<li> read instructions at
+ <a href="http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto">http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto</a></li>
+<li> get the software running locally using flags --force --nostatus --nosend</li>
+<li> register your machine on this page</li>
+<li> when you receive credentials, put them in the config file, and schedule regular builds (without those flags)
+ for the branches you want to support - which should be at least HEAD and the most recent stable branch.</li>
+</ul>
+<hr />
+
+<p>Please complete all items.</p>
+<p>For Linux, please specify the name and version of the <b>Distribution</b> for the Operating Systems items.
+Do not use the name "Linux". For example, for my test machine the Operating
+Systems is "Fedora Core" and the version is "4".</p>
+<form method="post" action="/cgi-bin/register.pl">
+<table cellspacing="0">
+<tr>
+ <th>Operating System</th>
+ <td><input type="text" name="os" value="" /></td>
+</tr>
+<tr>
+ <th>OS Version</th>
+ <td><input type="text" name="osv" value="" /></td>
+</tr>
+<tr>
+ <th>Compiler</th>
+ <td><input type="text" name="comp" value="" /></td>
+</tr>
+<tr>
+ <th>Compiler Version</th>
+ <td><input type="text" name="compv" value="" /></td>
+</tr>
+<tr>
+ <th>Architecture</th>
+ <td><input type="text" name="arch" value="" /></td>
+</tr>
+<tr>
+ <th>Your name</th>
+ <td><input type="text" name="owner" value="" /></td>
+</tr>
+<tr>
+ <th>Your email address</th>
+ <td><input type="text" name="email" value="" /></td>
+</tr>
+<tr>
+<th colspan="2">[% captcha %]</th>
+</tr>
+<tr>
+ <th class="submit" colspan="2"><input type="submit" /></th>
+</tr>
+</table>
+</form>
+[% END %]
--- /dev/null
+[% WRAPPER 'page.tt'
+ title = 'PostgreSQL BuildFarm Application'
+ bodyclass = 'application'
+ pagebutton = 'none'
+%]
+<p>You need to complete all the form items.
+<a href="/cgi-bin/register-form.pl">Please click here to try again.</a>
+</p>
+[% END %]
--- /dev/null
+[% WRAPPER 'page.tt'
+ title = 'PostgreSQL BuildFarm Application'
+ bodyclass = 'application'
+ pagebutton = 'none'
+%]
+<h1>PostgreSQL BuildFarm Application received</h1>\
+<p>Thank you. You should hear from us shortly.</p>
+[% END %]
--- /dev/null
+[%
+ flag_imgs = {
+ perl = '/img/camel.png',
+ python = '/img/python.png',
+ debug = '/img/bug.png',
+ pam => '/img/pam.png',
+ cassert => '/img/cassert.png',
+ openssl => '/img/ssl_icon.gif',
+ nls => '/img/translateicon.gif',
+ krb5 => '/img/krb.gif',
+ tcl => '/img/tcl.png',
+ vpath => '/img/vpath.png',
+ xml => '/img/xml.png',
+ 'thread-safety' => '/img/threads.gif',
+ 'integer-datetimes' = '/img/days.png',
+ git => '/img/git.png',
+ }
+-%]
+[%- BLOCK img ; IF flag == 'depend' or flag == 'gnu-ld' ; ; ELSIF flag_imgs.$flag %]<img src="[% flag_imgs.$flag %]" title="[% flag %]" alt="[% flag %]" height="16" width="16" class="inline" align="bottom" /> [% ELSE %][%#
+ flag ; ' '
+%][% END ; END -%]
+[%- BLOCK sysnotes ; IF row.sys_notes %]<img src="/img/notes.png" height="16" width="16" title="[% row.sys_notes_ts.replace(' .*','') | html %]: [% row.sys_notes | html %]" />
+[%- ELSE %] [% END ; END -%]
+[%- BLOCK cl %] class="[% SWITCH bgfor.replace('-.*','') -%]
+ [%- CASE 'OK' %]pass[% CASE 'ContribCheck' %]warn[% CASE [ 'Check' 'InstallCheck' ] %]warnx[% CASE %]fail[% END %]"
+[%- END -%]
+[% WRAPPER 'page.tt'
+ title = 'PostgreSQL BuildFarm Status'
+ bodyclass = 'none'
+ pagebutton = 'status'
+%]
+ <h1>PostgreSQL BuildFarm Status</h1>
+ <p>
+ Shown here is the latest status of each farm member
+ for each branch it has reported on in the last 30 days.
+ </p>
+ <p>
+ Use the farm member link for history of that member
+ on the relevant branch.
+ </p>
+<table><tr><th class="head" rowspan="2">Legend</th>
+[% FOREACH flagset IN flag_imgs %]
+<td><img src="[% flagset.value %]" title="[% flagset.key %]" alt="[% flagset.key %]" height="16" width="16" class="inline" align="center"/> = [% flagset.key %]</td>
+[% IF loop.count == 7 %]</tr><tr>[% END %]
+[% END %]
+</tr></table>
+<br />
+ <table cellspacing="0">
+[% brch = "" %]
+[% FOREACH row IN statrows %]
+[% IF row.branch != brch ; brch = row.branch %]
+<tr><th class="head" colspan="5">Branch: [% brch %]</th></tr>
+<tr><th colspan="2">Alias</th><th>System</th><th>Status</th><th>Flags</th></tr>
+[% END %]
+<tr [% PROCESS cl bgfor=row.stage %]>
+ <td><a
+ href="show_history.pl?nm=[% row.sysname %]&br=[% row.branch %]"
+ title="History"
+ >[% row.sysname %]</a></td>
+ <td>[% PROCESS sysnotes %]</td>
+ <td><span class="opsys">[% row.operating_system %]
+ [% row.os_version %]</span> <span class="compiler">
+ [%- row.compiler %]
+ [% row.compiler_version %]</span> <span class="arch">
+ [%- row.architecture %]</span></td>
+ <td class="status">
+ [%- row.when_ago | replace('\s',' ') %] ago
+ [% row.stage -%]
+ <a href="show_log.pl?nm=
+ [%- row.sysname %]&dt=
+ [%- row.snapshot | uri %]">
+ [%- IF row.stage != 'OK' %]Details[% ELSE %]Config[% END -%]</a></td>
+
+ <td class="flags">[% FOREACH flag IN row.build_flags.split().sort() ; PROCESS img ; END %]</td>
+</tr>
+[% END %]
+ </table>
+[% END %]