| <?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: Nathan Gervais |
| # Date: 2008-04-21 |
| # |
| # Description: Ganymede Landing Page |
| # |
| #**************************************************************************** |
| |
| # |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "Pulsar Working Group"; |
| $pageKeywords = "eclipse pulsar, mobile, working group"; |
| $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 |
| # |
| include('newsfeeds.php'); |
| $nokia = @ rss_to_small_news_html("/home/data/httpd/writable/community/pulsar/nokia.rss", 7); |
| // $nokia = @ rss_to_small_news_html("nokia.rss",3); |
| # Place your html content in a file called content/en_pagename.php |
| ob_start(); |
| ?> |
| <div id="fullcolumn" class="galileo"> |
| |
| <div id="midcolumn"> |
| <div id="banner"> |
| <img src='logo.png'/> |
| </div> |
| <div class="homeitem"> |
| <div class="block"> |
| <div class="image"> |
| <a href="http://www.eclipse.org/dsdp/mtj/development/tutorial/gettingstarted.php"><img src="http://dev.eclipse.org/huge_icons/emblems/emblem-symbolic-link.png"/></a> |
| </div> |
| <div class="text"> |
| <h4><a href="http://www.eclipse.org/dsdp/mtj/development/tutorial/gettingstarted.php">Getting Started</a></h4> |
| <p>Look here to get up to speed on Pulsar</p> |
| </div> |
| </div> |
| <div class="block"> |
| <div class="image"> |
| <a href="http://live.eclipse.org/search/node/MTJ"><img src="http://dev.eclipse.org/huge_icons/mimetypes/x-office-presentation.png"/></a> |
| </div> |
| <div class="text"> |
| <h4><a href="http://live.eclipse.org/search/node/MTJ">Webinars</a></h4> |
| <p>Check out the MTJ Webinars</p> |
| </div> |
| </div> |
| <div class="block"> |
| <div class="image"> |
| <a href="http://wiki.eclipse.org/EMIWG"><img src="http://dev.eclipse.org/huge_icons/apps/system-users.png"/></a> |
| </div> |
| <div class="text"> |
| <h4><a href="http://wiki.eclipse.org/EMIWG">Pulsar Working Group</a></h4> |
| <p>Learn more about the Pulsar Working Group</p> |
| </div> |
| </div> |
| |
| </div> |
| </div> |
| <div id="rightcolumn"> |
| <div class="sideitem"> |
| <img src="download.png"> |
| </div> |
| <div class="sideitem"> |
| <a href="http://developer.motorola.com/"><img src="motodev.png"/></a> |
| <div class="modal"> |
| RSS FEED |
| </div> |
| </div> |
| <div class="sideitem"> |
| <a href="http://www.blackberry.com/developers"><img src="blackberry.gif"/></a> |
| <div class="modal"> |
| RSS FEED |
| </div> |
| </div> |
| <div class="sideitem"> |
| <a href="http://www.forum.nokia.com/"><img src="forumnokia.gif"/></a> |
| <div class="modal noBG"> |
| <?=$nokia;?> |
| </div> |
| </div> |
| </div> |
| </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, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |