bug fixes for show git log on detail pages feature
[buildfarm-server.git] / templates / register-form.tt
1 [%#
2
3 Copyright (c) 2003-2010, Andrew Dunstan
4
5 See accompanying License file for license details
6
7 -%]
8 [% WRAPPER 'page.tt' 
9         title = 'PostgreSQL BuildFarm Application'
10         bodyclass = 'application'
11         pagebutton = 'register'
12 %]
13 <h1>Application to join PostgreSQL BuildFarm</h1>
14
15 <p>Here is a short description of what is required to join the buildfarm successfully. Please read it carefully
16 before submitting this form.</p>
17
18 <ul>
19 <li> your machine will need to be able to contact <a href="http://www.pgbuildfarm.org">http://www.pgbuildfarm.org</a>
20      either directly or via proxy, and it will need access to a PostgreSQL CVS repository, 
21      either the one at postgresql.org or a mirror (you can set up your own mirror using CSVup on a Linux or FreeBSD machine - 
22      this is recommended).</li>
23 <li> have a working Postgresql build environment for your platform 
24      (for Windows this means MSys/MinGW with the libz and libintl stuff,  and ideally native Python and Tcl).</li>
25 <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>
26 <li> download and unpack the latest release of client code from 
27      <a href="http://pgfoundry.org/frs/?group_id=1000040">http://pgfoundry.org/frs/?group_id=1000040</a></li>
28 <li> read instructions at 
29      <a href="http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto">http://wiki.postgresql.org/wiki/PostgreSQL_Buildfarm_Howto</a></li>
30 <li> get the software running locally using flags --force --nostatus --nosend</li>
31 <li> register your machine on this page</li>
32 <li> when you receive credentials, put them in the config file, and schedule regular builds (without those flags) 
33      for the branches you want to support - which should be at least HEAD and the most recent stable branch.</li>
34 </ul>
35 <hr />
36
37 <p>Please complete all items.</p>
38 <p>For Linux, please specify the name and version of the <b>Distribution</b> for the Operating Systems items. 
39 Do not use the name "Linux". For example, for my test machine the Operating 
40 Systems is "Fedora Core" and the version is "4".</p>
41 <form method="post" action="/cgi-bin/register.pl">
42 <table cellspacing="0">
43 <tr>
44   <th>Operating System</th>
45   <td><input type="text" name="os" value="" /></td>
46 </tr>
47 <tr>
48   <th>OS Version</th>
49   <td><input type="text" name="osv" value="" /></td>
50 </tr>
51 <tr>
52   <th>Compiler</th>
53   <td><input type="text" name="comp" value="" /></td>
54 </tr>
55 <tr>
56   <th>Compiler Version</th>
57   <td><input type="text" name="compv" value="" /></td>
58 </tr>
59 <tr>
60   <th>Architecture</th>
61   <td><input type="text" name="arch" value="" /></td>
62 </tr>
63 <tr>
64   <th>Your name</th>
65   <td><input type="text" name="owner" value="" /></td>
66 </tr>
67 <tr>
68   <th>Your email address</th>
69   <td><input type="text" name="email" value="" /></td>
70 </tr>
71 <tr>
72 <th colspan="2">[% captcha %]</th>
73 </tr>
74 <tr>
75   <th class="submit" colspan="2"><input type="submit" /></th>
76 </tr>
77 </table>
78 </form>
79 [% END %]