add support for recapthcha on form to reduce spam
[buildfarm-server.git] / templates / register-form.tt
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6         <title>PostgreSQL BuildFarm Application</title>
7         <link rel="icon" type="image/png" href="/elephant-icon.png" />
8         <link rel="stylesheet" rev="stylesheet" href="/inc/pgbf.css" charset="utf-8" />
9         <style type="text/css"><!--
10         li#register a { color:rgb(17,45,137); background: url(/inc/b/r.png) no-repeat 100% -20px; } 
11         li#register { background: url(/inc/b/l.png) no-repeat 0% -20px; }
12         --></style>
13 </head>
14 <body class="application">
15 <div id="wrapper">
16 <div id="banner">
17 <a href="/index.html"><img src="/inc/pgbuildfarm-banner.png" alt="PostgreSQL BuildFarm" width="800" height="73" /></a>
18 <div id="nav">
19 <ul>
20     <li id="home"><a href="/index.html" title="PostgreSQL BuildFarm Home">Home</a></li>
21     <li id="status"><a href="/cgi-bin/show_status.pl" title="Current results">Status</a></li>
22     <li id="members"><a href="/cgi-bin/show_members.pl" title="Platforms tested">Members</a></li>
23     <li id="register"><a href="/cgi-bin/register-form.pl" title="Join PostgreSQL BuildFarm">Register</a></li>
24     <li id="pgfoundry"><a href="http://pgfoundry.org/projects/pgbuildfarm/">PGFoundry</a></li>
25 </ul>
26 </div><!-- nav -->
27 </div><!-- banner -->
28 <div id="main">
29 <h1>Application to join PostgreSQL BuildFarm</h1>
30
31 <p>Here is a short description of what is required to join the buildfarm successfully. Please read it carefully
32 before submitting this form.</p>
33
34 <ul>
35 <li> your machine will need to be able to contact <a href="http://www.pgbuildfarm.org">http://www.pgbuildfarm.org</a>
36      either directly or via proxy, and it will need access to a PostgreSQL CVS repository, 
37      either the one at postgresql.org or a mirror (you can set up your own mirror using CSVup on a Linux or FreeBSD machine - 
38      this is recommended).</li>
39 <li> have a working Postgresql build environment for your platform 
40      (for Windows this means MSys/MinGW with the libz and libintl stuff,  and ideally native Python and Tcl).</li>
41 <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>
42 <li> download and unpack the latest release of client code from 
43      <a href="http://pgfoundry.org/frs/?group_id=1000040">http://pgfoundry.org/frs/?group_id=1000040</a></li>
44 <li> read instructions at 
45      <a href="http://pgfoundry.org/docman/view.php/1000040/4/PGBuildFarm-HOWTO.txt">http://pgfoundry.org/docman/view.php/1000040/4/PGBuildFarm-HOWTO.txt</a></li>
46 <li> get the software running locally using flags --force --nostatus --nosend</li>
47 <li> register your machine on this page</li>
48 <li> when you receive credentials, put them in the config file, and schedule regular builds (without those flags) 
49      for the branches you want to support - which should be at least HEAD and the most recent stable branch.</li>
50 </ul>
51
52 <p>There is also some extra information in this 
53 <a href="http://www.onlamp.com/pub/a/onlamp/2005/02/24/pg_buildfarm.html">article about buildfarm</a> on the O'Reilly network.</p>
54
55 <hr />
56
57 <p>Please complete all items.</p>
58 <p>For Linux, please specify the name and version of the <b>Distribution</b> for the Operating Systems items. 
59 Do not use the name "Linux". For example, for my test machine the Operating 
60 Systems is "Fedora Core" and the version is "4".</p>
61 <form method="post" action="/cgi-bin/register.pl">
62 <table cellspacing="0">
63 <tr>
64   <th>Operating System</th>
65   <td><input type="text" name="os" value="" /></td>
66 </tr>
67 <tr>
68   <th>OS Version</th>
69   <td><input type="text" name="osv" value="" /></td>
70 </tr>
71 <tr>
72   <th>Compiler</th>
73   <td><input type="text" name="comp" value="" /></td>
74 </tr>
75 <tr>
76   <th>Compiler Version</th>
77   <td><input type="text" name="compv" value="" /></td>
78 </tr>
79 <tr>
80   <th>Architecture</th>
81   <td><input type="text" name="arch" value="" /></td>
82 </tr>
83 <tr>
84   <th>Your name</th>
85   <td><input type="text" name="owner" value="" /></td>
86 </tr>
87 <tr>
88   <th>Your email address</th>
89   <td><input type="text" name="email" value="" /></td>
90 </tr>
91 <tr>
92 <th colspan="2">[% captcha %]</th>
93 </tr>
94 <tr>
95   <th class="submit" colspan="2"><input type="submit" /></th>
96 </tr>
97 </table>
98 </form>
99 </div><!-- main -->
100 <hr />
101 <p style="text-align: center;">
102 Hosting for the PostgreSQL Buildfarm is generously 
103 provided by: 
104 <a href="http://www.commandprompt.com">CommandPrompt, 
105 The PostgreSQL Company</a>
106 </p>
107 </div><!-- wrapper -->
108 </body>
109 </html>
110
111