blob: 881cb9a6ceae26725de82b933228a17b18bf0539 [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'
#*****************************************************************************
#
# projects.php
#
# Author: Nathan Gervais
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
$documentRoot = $_SERVER['DOCUMENT_ROOT'];
require_once ($documentRoot .'/helios/scripts/projectsTable.php');
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Helios Release Projects";
$pageKeywords = "eclipse Helios, Helios, Helios release train";
$pageAuthor = "Nathan Gervais";
ob_start();
?>
<link rel="stylesheet" type="text/css" href="layout.css" media="screen" />
<div id="fullcolumn">
<div id="midcolumn">
<h2>Helios Projects</h2>
<?=projectTable();?><br/><br/>
</div>
</div>
<?
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->Promotion = TRUE;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>