| <?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(); $theme = "Phoenix"; include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop' |
| |
| #***************************************************************************** |
| # |
| # index.php |
| # |
| # Author: Ian Skerrett |
| # Date: 2008-06-18 |
| # |
| # Description: EclipseRT Getting Started Page |
| # |
| #**************************************************************************** |
| # |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "EclipseRT Getting Started"; |
| $pageKeywords = "eclipse, eclipsert, equinoix, osgi"; |
| $pageAuthor = "Eclipse Foundation, Inc."; |
| |
| # Add page-specific Nav bars here |
| # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank) |
| # $Nav->addCustomNav("My Link", "mypage.php", "_self"); |
| # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank"); |
| |
| # End: page-specific settings |
| # |
| |
| # Place your html content in a file called content/en_pagename.php |
| ob_start(); |
| ?> |
| <div id="midcolumn"> |
| <h1>Getting Started</h1> |
| <ul> |
| <li><p>Read the <a href="whitepaper/20080310_equinox.php">Component Oriented Development and Assembly</a> |
| white paper to better understand the benefits of using EclipseRT and OSGi. |
| </p></li> |
| |
| <li><p>EclipseRT <a href="case_studies/case_studies.php">Case Studies</a></p></li> |
| </ul> |
| <h1>Webinars</h1> |
| <h2>Getting Started with OSGi</h2> |
| <a href="http://live.eclipse.org/node/407"><img src="../images_new/demo/407.png"></a> |
| <h2>Introduction to Eclipse Equinox and OSGi</h2> |
| <a href="http://live.eclipse.org/node/387"><img src="../images_new/demo/387.png"></a> |
| </div> |
| |
| <? |
| $html = ob_get_clean(); |
| # Generate the web page |
| $App->Promotion = TRUE; |
| $App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>'); |
| $App->generatePage("Nova", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |