Add README Copyright and License notices, pus minor tidying.
authorAndrew Dunstan <andrew@dunslane.net>
Sat, 18 Dec 2010 22:56:23 +0000 (17:56 -0500)
committerAndrew Dunstan <andrew@dunslane.net>
Sat, 18 Dec 2010 22:56:23 +0000 (17:56 -0500)
24 files changed:
License [new file with mode: 0644]
README [new file with mode: 0644]
cgi-bin/addnotes.pl
cgi-bin/get_bf_status_soap.pl
cgi-bin/pgstatus.pl
cgi-bin/register-form.pl
cgi-bin/register.pl
cgi-bin/show_history.pl
cgi-bin/show_log.pl
cgi-bin/show_members.pl
cgi-bin/show_stage_log.pl
cgi-bin/show_status.pl
cgi-bin/show_status_soap.pl
cgi-bin/typedefs.pl
cgi-bin/upgrade.pl
htdocs/index.html
templates/history.tt
templates/index.tt
templates/members.tt
templates/page.tt
templates/register-form.tt
templates/register-incomplete.tt
templates/register-ok.tt
templates/status.tt

diff --git a/License b/License
new file mode 100644 (file)
index 0000000..d3b5379
--- /dev/null
+++ b/License
@@ -0,0 +1,20 @@
+This software, the PostgreSQL Build Farm Server, is released under the terms 
+of the PostgreSQL License.
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+Permission to use, copy, modify, and distribute this software and its 
+documentation for any purpose, without fee, and without a written agreement 
+is hereby granted, provided that the above copyright notice and this paragraph 
+and the following two paragraphs appear in all copies.
+
+IN NO EVENT SHALL Andrew Dunstan BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, 
+SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING 
+OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF Andrew Dunstan 
+HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Andrew Dunstan SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT 
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 
+PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
+AND Andrew Dunstan HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, 
+UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..481d073
--- /dev/null
+++ b/README
@@ -0,0 +1,4 @@
+This is the code to run the PostgreSQL Build Farm server.
+
+See License file for License and Copyright details.
+
index acab114a346753f5f129defafcc91133e008df0c..11186ddc2bce9490516e0274a4a7fd9663dc4863 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 
 use CGI;
index 02059e7d84e77eaf17480fe401118c7eb5ef7fac..f7772fa7aa926f834fb74a256365beec6741c225 100755 (executable)
@@ -1,6 +1,12 @@
 #!/usr/bin/perl
 
-use lib "/home/community/pgbuildfarm/lib/lib/perl5/site_perl";
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
 
 use SOAP::Lite +trace;
 
index c9b0268be2c8bf52bd227880763effdcf0d3f117..52e02df30e74896cf63751783c175ec0cf219276 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 
 use vars qw($dbhost $dbname $dbuser $dbpass $dbport
index cf4621a6bedaeeca619b13b709c63b9863221276..91d0826a02d0b506a53b5bb1f9358bcf64f1299c 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 use Template;
 use Captcha::reCAPTCHA;
index 37290f8808e13b4fb70f184830b11d67d23483b0..5b1ce0a649be81b256cc8e671e96312f61259a6e 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 use DBI;
 use Template;
index b55c381b6cb364a418138bf9c5b3345515738bd5..288183ddf137281da70ecf38705d09f8063b2f6f 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 use DBI;
 use Template;
index 21c6ec570b9a0d168cfbc395a034df78605e5b36..b2c56461c5cd2a0495912b20e1f1624185f47be3 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 use DBI;
 use Template;
index f6fb3961867dff06244ae7a8dac373e56770db60..d45acd6145dbf2e745e033697a9eb3a6edf199d3 100755 (executable)
@@ -1,15 +1,20 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 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";
 
index 539d5a1cfe17f6dbc430492a9743456afbde2f82..7fd6438de7fe399fc6413c56d33b0afed9c943fd 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 use DBI;
 use Template;
index 646195c44fa9bdac5de2199549a150a932596f3e..c75b20e52f3acd73fc93a2c0eb02fcb2f720ccae 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 use DBI;
 use Template;
index 5d12800beec2440501b1ce7074314fbc290dfc0f..de314f74a391e0107d8621507d10cb4a4b98ab51 100755 (executable)
@@ -1,14 +1,19 @@
 #!/usr/bin/perl
 
-use strict;
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
 
+=cut 
+
+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;
index 5f3b216f305d0dbcb85db62a81674fb1715bd683..63c0fc56bf86d6cc9fd087da07375066c000bd2a 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 use DBI;
 use CGI;
index f4cbb9981f1468a12af52f2926f4f3742e71834e..a34f4ed12b0caabbce378b0b461f453a19ebe0b1 100755 (executable)
@@ -1,5 +1,13 @@
 #!/usr/bin/perl
 
+=comment
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+=cut 
+
 use strict;
 
 use CGI;
index b17ceb2c6671fdcb8d3f100254d0c9724efaaa0c..9609bb4b54c6780e98c26ed0a0d8a953a98840b2 100644 (file)
@@ -1,5 +1,12 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<!--
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-->
 <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" />
index dd050edfc1d3f6a465f9cefa9b2aaeefd4c3a32f..37463db83cba66733e34a1746a2571434a4071b1 100644 (file)
@@ -1,3 +1,10 @@
+[%#
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-%]
 [%- BLOCK cl %] class="[% SWITCH bgfor -%]
   [%- CASE 'OK' %]pass[% CASE 'ContribCheck' %]warn[% CASE [ 'Check' 'InstallCheck' ] %]warnx[% CASE %]fail[% END %]"
 [%- END -%]
index ad99339f8c0a997d360a1b323590fc29d52a3959..ba640cfd07bf414a3c664135e8f89282cc719d08 100644 (file)
@@ -1,3 +1,10 @@
+[%#
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-%]
 [%#
 
        Use this template to generate the index page, with something like:
index d55e7a56b1bbc4acbfaf2390d875e6a94d1a5269..e490b6417dbbafd0c93a0edbce64d2a07c62bbd2 100644 (file)
@@ -1,3 +1,10 @@
+[%#
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-%]
 [% WRAPPER 'page.tt' 
        title = 'PostgreSQL BuildFarm Members'
        bodyclass = 'members'
index f00da9b473530706eb9e394e5c34478970885bb7..381b467f1df4147d805de21d3dfea9baff33cf60 100644 (file)
@@ -1,3 +1,10 @@
+[%#
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-%]
 <!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">
index 0f4f82b3e79878d8b2bffffa7a19dad0df5c2483..fd9ffe663dc628780acc94dad92a2ab49ab532cf 100644 (file)
@@ -1,3 +1,10 @@
+[%#
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-%]
 [% WRAPPER 'page.tt' 
        title = 'PostgreSQL BuildFarm Application'
        bodyclass = 'application'
index bc73f4190b0966b01203196bd31c6b08535e139d..c866f557e8a36f18694be399830ae08292afd616 100644 (file)
@@ -1,3 +1,10 @@
+[%#
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-%]
 [% WRAPPER 'page.tt' 
     title = 'PostgreSQL BuildFarm Application'
     bodyclass = 'application'
index fdfea9666121692e896c8ab27f2685719fc9b455..7810d9003a0a9bf8a1990fe38f58a52d866ce744 100644 (file)
@@ -1,3 +1,10 @@
+[%#
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-%]
 [% WRAPPER 'page.tt' 
     title = 'PostgreSQL BuildFarm Application'
     bodyclass = 'application'
index 875c988d262461032454ce85245a01fd62ae6667..a9f8ad202e57dabe47e21d925ba05d439285fcee 100644 (file)
@@ -1,3 +1,10 @@
+[%#
+
+Copyright (c) 2003-2010, Andrew Dunstan
+
+See accompanying License file for license details
+
+-%]
 [%
  flag_imgs = {
      perl = '/img/camel.png',