blob: 73b784afd3ad1e38ebfba78cbf51b0004f7e1af1 [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 = "Past Reviews";
include( '_commonLeftNav.php' );
ob_start();
?>
<div id="maincontent">
<div id="midcolumn">
<h1>Past Reviews</h1>
The life-cycle of an Eclipse Project goes through a <a href="development_process.php#Project_Lifecycle">number of phases</a>.
At the end of each phase, the community meets to review the project.
The following is an archive of past Reviews:
<ul class="midlist">
<?php
include_once("fragments/archived-reviews-list.php");
?>
</ul>
<?php include( '_commonFooter.php' ); ?>
</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);
?>