Annotation of FreeBSD/tinderbox/webui/templates/default/list_builds.tpl, revision 1.1.1.1

1.1       as          1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
                      2: <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
                      3: <head>
                      4: <!-- $MCom: portstools/tinderbox/webui/templates/default/list_builds.tpl,v 1.6 2007/10/07 00:58:56 ade Exp $ //-->
                      5: <title><?=$tinderbox_name?></title>
                      6: <link href="<?=$templatesuri?>/tinderstyle.css" rel="stylesheet" type="text/css" />
                      7: </head>
                      8: <body>
                      9: <h1><?=$tinderbox_title?></h1>
                     10: <?if(!$no_list){?>
                     11:        <table>
                     12:                <tr>
                     13:                        <th style="width: 20px">&nbsp;</th>
                     14:                        <th>Build Name</th>
                     15:                        <th>Build Description</th>
                     16:                        <th>
                     17:                                <span title="success / unknown / fail / leftovers">
                     18:                                S / U / F / L
                     19:                                </span>
                     20:                        </th>
                     21:                        <th>Build Packages</th>
                     22:                </tr>
                     23: 
                     24:                <?foreach($data as $row) {?>
                     25:                        <tr>
                     26:                                <td class="<?=$row['status_field_class']?>">&nbsp;</td>
                     27:                                <td><a href="index.php?action=list_buildports&amp;build=<?=$row['name']?>"><?=$row['name']?></a></td>
                     28:                                <td><?=$row['description']?></td>
                     29:                                <td align="center">
                     30:                                        <span title="success / unknown / fail / leftovers">
                     31:                                        <?=$row['results']['SUCCESS']?>
                     32:                                        /
                     33:                                        <?=$row['results']['UNKNOWN']?>
                     34:                                        /
                     35:                                        <?=$row['results']['FAIL']?>
                     36:                                        /
                     37:                                        <?=$row['results']['LEFTOVERS']?>
                     38:                                        </span>
                     39:                                </td>
                     40:                                <?if($row['packagedir']){?>
                     41:                                        <td><a href="<?=$row['packagedir']?>">Package Directory</a></td>
                     42:                                <?}else{?>
                     43:                                        <td><i>No packages for this build</i></td>
                     44:                                <?}?>
                     45:                        </tr>
                     46:                <?}?>
                     47: 
                     48:        </table>
                     49: <?}else{?>
                     50:        <p>There are no builds configured.</p>
                     51: <?}?>
                     52: 
                     53: <form method="get" action="index.php">
                     54: <p>
                     55: <a href="index.php?action=latest_buildports">Current And Latest Builds</a><br />
                     56: <a href="index.php?action=failed_buildports">All Build Failures</a><br />
                     57: <a href="index.php?action=bad_buildports">All (really) Build Failures</a><br />
                     58: <input type="hidden" name="action" value="failed_buildports" />
                     59: All Build Failures for the maintainer <select name="maintainer">
                     60:        <option></option>
                     61: <?foreach($maintainers as $maintainer) {?>
                     62:        <option><?=$maintainer?></option>
                     63: <?}?>
                     64: </select>
                     65: <input type="submit" name="Go" value="Go" />
                     66: </p>
                     67: </form>
                     68: <?=$display_login?>
                     69: </body>
                     70: </html>