blob: 780b3bfe405158e877243f12c170912606c83a4e [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 = "Project Plan";
$pageKeywords = "photran, project plan, plan";
$pageAuthor = "Jeffrey Overbey";
require_once($_SERVER['DOCUMENT_ROOT'] . "/projects/common/project-info.class.php");
$projectInfo = new ProjectInfo("the project's Foundation database key");
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<table border="0" cellspacing="2" cellpadding="3">
<tr>
<th bgcolor="e0e0e0">Date</th>
<th bgcolor="e0e0e0">Milestone</th>
<th bgcolor="e0e0e0">Status</th>
</tr>
<tr>
<td>Thursday, June 14, 2007</td>
<td>4.0 Beta 1</td>
<td>Done</td>
</tr>
<tr>
<td>Thursday, July 19, 2007</td>
<td>4.0 Beta 2</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Thursday, August 16, 2007</td>
<td>4.0 Beta 3</td>
<td>&nbsp;</td>
</tr>
<tr>
<td><b>Thursday, August 30, 2007</b></td>
<td><b>4.0 Release</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td colspan="3"><i>Begin move out of incubator</i></td>
</tr>
<tr>
<td>Thursday, October 11, 2007</td>
<td>4.1 M1</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Thursday, December 6, 2007</td>
<td>4.1 M2</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Thursday, January 10, 2007</td>
<td>4.1 M3</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Thursday, February 7, 2007</td>
<td>4.1 M4</td>
<td>&nbsp;</td>
</tr>
<tr>
<td><b>Thursday, March 6, 2007</b></td>
<td><b>4.1 Release</b></td>
<td>&nbsp;</td>
</tr>
</table>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>