+
+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;
+}
+