blob: 5a173010ba2e352129e5839ee6e0b6f4fc1dc98e [file] [log] [blame]
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
$pageTitle = "Gazoo";
$pageKeywords = "projects";
$pageAuthor = "Bjorn Freeman-Benson Dec 05/05";
ob_start();
?>
<div id="maincontent">
<div id="midcolumn">
<h1><?= $pageTitle ?></h1>
<p>Projects in the <a href="/projects/dev_process/validation-phase.php">Incubation
Phase</a> and proposal in the <a href="/projects/dev_process/proposal-phase.php">Proposal
Phase</a> have pictures of our little green alien at the top of the left
column. These are your fun indication that the project is not yet a
fully mature Eclipse project.</p>
<div align="center">
<center>
<table border="0" cellpadding="3" cellspacing="3">
<tr>
<td valign="top" align="center">
<p align="center"><img border="0" src="/images/gazoo-proposal.jpg"><br>
Proposal<br>
Phase</td>
<td valign="top" align="center"></td>
<td valign="top" align="center">
<p align="center"><img border="0" src="/images/gazoo-incubation.jpg"><br>
Incubation<br>
Phase</td>
</tr>
</table>
</center>
</div>
<p>Project leads: see the
<a href="/projects/dev_process/project-status-infrastructure.php">project status reporting infrastructure page</a> for the
necessary HTML fragments.</p>
</div>
</div>
<?php
# Paste your HTML content between the EOHTML markers!
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>