| <?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' |
| |
| #***************************************************************************** |
| # |
| # template.php |
| # |
| # Author: Denis Roy |
| # Date: 2005-06-16 |
| # |
| # Description: Type your page comments here - these are not sent to the browser |
| # |
| # |
| #**************************************************************************** |
| $documentRoot = $_SERVER['DOCUMENT_ROOT']; |
| require_once ($documentRoot .'/galileo/scripts/projectsTable.php'); |
| |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "Eclipse Galileo Release Projects"; |
| $pageKeywords = "eclipse Galileo, Galileo, Galileo 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>Galileo 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); |
| ?> |