Select predecesor build on same branch - fixes bug reported by Tom Lane.
[buildfarm-server.git] / templates / log.tt
index 291cbdb14e1dbae87908fe1c3a0002764ede585f..07699b01900ee435bc50d868d288bf71c5644c5e 100644 (file)
@@ -1,3 +1,10 @@
+[%#
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-%]
 [% PERL %]
        use POSIX qw(ceil);
         my $lrfactor = 6;
        $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=';
 -%]
-<!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 | [% IF stage != 'OK' %]Log for system "[% system %]" failure on snapshot taken [% urldt ; ELSE %]Configuration summary for system "[% system %]" snapshot taken [% urldt ; END %]</title>
-    <link rel="icon" type="image/png" href="/elephant-icon.png" />
-    <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
-</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="Status Page">Status</a></li>
-    <li id="members"><a href="/cgi-bin/show_members.pl" title="Status Page">Members</a></li>
-    <li id="register"><a href="/cgi-bin/register-form.pl" title="Register">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 Build Farm Log</h1>
+[% WRAPPER 'page.tt' 
+       title = mytitle
+       bodyclass = 'none'
+       pagebutton = 'none'
+%]
+[%- BLOCK gitlog ;
+       loglines = clog.split('\n');
+       firstline = loglines.shift;
+       commitref = firstline.replace('commit ([0-9A-Fa-f]+)','$1');
+%]
+<!--
+git_head_ref [% git_head_ref %]
+last_build_git_ref [% last_build_git_ref %]
+last_success_git_ref [% last_success_git_ref %]
+-->
+commit <a href="[% giturl ; commitref %]">[% commitref %]</a>
+[% loglines.join("\n")  | html %]
+
+[% END -%]
+<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>
 [% conf | html %]
 </pre>
 <h3>Files changed this run</h3>
-<pre>
 [%- IF changed_this_run.0 -%]
+<pre>
 [%- 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 -%]
+</pre>
+[% END %]
+[% IF changed_this_run_logs.0 %]
+<h5>Git log</h5>
+<blockquote><pre>
+[%- FOREACH clog IN changed_this_run_logs ; PROCESS gitlog -%]
+[%IF not loop.last %]
+===================================================================
+[% END -%]
+[%- END -%]
+</pre></blockquote>
 [%- ELSE %]
+<pre>
 not recorded
-[% END -%]
 </pre>
+[% END -%]
 [% IF stage != 'OK' %]
 <h3>Files changed since last success</h3>
-<pre>
 [%- IF changed_since_success.0 %]
+<pre>
 [%- 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 -%]
+</pre>
+[% END %]
+[% IF changed_since_success_logs.0 %]
+<h5>Git log</h5>
+<blockquote><pre>
+[%- FOREACH clog IN changed_since_success_logs ; PROCESS gitlog -%]
+[%IF not loop.last %]
+===================================================================
+[% END -%]
+[%- END -%]
+</pre></blockquote>
 [%- ELSE %]
+<pre>
 not recorded
-[% END -%]
 </pre>
+[% END -%]
 [% END %]
 <h3>Log</h3>
 <pre>
 [% log | html %]
 </pre>
-</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>
+[% END %]