File:  [Paefchen] / FreeBSD / tinderbox / webui / templates / default / config.tpl
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Fri Nov 2 20:55:00 2007 UTC (17 years ago) by as
CVS tags: MAIN, HEAD
Initial revision

<!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" lang="en" xml:lang="en">
<head>
<!-- $MCom: portstools/tinderbox/webui/templates/default/config.tpl,v 1.5 2007/10/13 02:28:48 ade Exp $ //-->
<title><?=$tinderbox_name?></title>
<link href="<?=$templatesuri?>/tinderstyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1><?=$tinderbox_title?> Config</h1>
<?if($errors){?>
	<p style="color:#FF0000">
	<?foreach($errors as $error){?>
		<?=$error?><br />
	<?}?>
	</p>
<?} else {?>
<h2>configured builds:</h2>
<?if(!$no_build_list){?>
	<table>
		<tr>
			<th>Name</th>
			<th>Description</th>
			<th>Jail Name</th>
			<th>Ports Tree Name</th>
		</tr>

		<?foreach($build_data as $row) {?>
			<tr>
				<td><?=$row['build_name']?></td>
				<td><?=$row['build_description']?></td>
				<td><?=$row['jail_name']?></td>
				<td><?=$row['ports_tree_name']?></td>
			</tr>
		<?}?>

	</table>
<?}else{?>
	<p>There are no builds configured.</p>
<?}?>


<h2>configured jails:</h2>
<?if(!$no_jail_list){?>
	<table>
		<tr>
			<th>Name</th>
			<th>Architecture</th>
			<th>Description</th>
			<th>Last Built</th>
			<th>Tag</th>
			<th>Update Cmd</th>
			<th>Src Mount</th>
		</tr>

		<?foreach($jail_data as $row) {?>
			<tr>
				<td><?=$row['jail_name']?></td>
				<td><?=$row['jail_arch']?></td>
				<td><?=$row['jail_description']?></td>
				<td><?=$row['jail_last_built']?></td>
				<td><?=$row['jail_tag']?></td>
				<td><?=$row['jail_update_cmd']?></td>
				<td><?=$row['jail_src_mount']?></td>
			</tr>
		<?}?>

	</table>
<?}else{?>
	<p>There are no jails configured.</p>
<?}?>


<h2>configured ports trees:</h2>
<?if(!$no_ports_tree_list){?>
	<table>
		<tr>
			<th>Name</th>
			<th>Description</th>
			<th>Last Built</th>
			<th>Update Cmd</th>
			<th>CVSWeb URL</th>
			<th>Ports Mount</th>
		</tr>

		<?foreach($ports_tree_data as $row) {?>
			<tr>
				<td><?=$row['ports_tree_name']?></td>
				<td><?=$row['ports_tree_description']?></td>
				<td><?=$row['ports_tree_last_built']?></td>
				<td><?=$row['ports_tree_update_cmd']?></td>
				<td><?=$row['ports_tree_cvsweb_url']?></td>
				<td><?=$row['ports_tree_ports_mount']?></td>
			</tr>
		<?}?>

	</table>
<?}else{?>
	<p>There are no ports trees configured.</p>
<?}?>

<h2>further configurations:</h2>
<?if(!$no_config_option_list){?>
	<table>
		<tr>
			<th>Name</th>
			<th>Value</th>
		</tr>

		<?foreach($config_option_data as $row) {?>
			<tr>
				<td><?=$row['config_option_name']?></td>
				<td><?=$row['config_option_value']?></td>
			</tr>
		<?}?>

	</table>
<?}else{?>
	<p>There are no further configurations.</p>
<?}?>



<?}?>
<p><a href="index.php">Back to homepage</a></p>
<?=$display_login?>
</body>
</html>