blob: 17f78323707c9cbf9bf7ce443b81c95f08db6aad [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(); $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 - Eclipse Mobile Tools Platform";
$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", 2);
//$nokia = @ rss_to_small_news_html("nokia.rss",2);
$motorola = rss_to_small_news_html("/home/data/httpd/writable/community/pulsar/motodev.rss", 2);
# 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='devices.png'/>
</div>
<p class="description">Pulsar is a tools integration platform for the mobile developer. It make it easy to get the tools and handset SDKs you need for developing mobile applications.</P>
<div class="homeitem">
<div class="block">
<div class="image">
<a href="quickinstall/"><img src="http://dev.eclipse.org/huge_icons/emblems/emblem-symbolic-link.png"/></a>
</div>
<div class="text">
<h4><a href="quickinstall/">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=""><img src="http://dev.eclipse.org/huge_icons/actions/go-bottom.png"/></a>
</div>
<div class="text">
<h4><a href="http://www.eclipse.org/downloads/packages/pulsar-mobile-java-developers/galileor">Download Pulsar</a></h4>
<p>Download the Pulsar Package</p>
</div>
</div>
<div class="block">
<div class="image">
<a href="http://live.eclipse.org/node/682"><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/node/682">Webinars</a></h4>
<p>Check out the MTJ Webinar</p>
</div>
</div>
<div class="block">
<div class="image">
<a href=""><img src="http://dev.eclipse.org/huge_icons/apps/system-users.png"/></a>
</div>
<div class="text">
<h4><a href="./support.php">Pulsar Support</a></h4>
<p>Looking for help with Pulsar?</p>
</div>
</div>
</div>
</div>
<div id="rightcolumn">
<div class="sideitem">
<a href="http://developer.motorola.com/"><img src="motodev.png"/></a>
<div class="modal noBG">
<?=$motorola;?>
</div>
</div>
<div class="sideitem">
<a href="http://www.blackberry.com/developers"><img src="blackberry.gif"/></a>
<div class="modal noBG">
<ul>
<li class="">
<a href="http://na.blackberry.com/eng/developers/resources/" class="link">Resources</a><br/>
<span class="posted">2009/04/30</span>
</li>
<li class="">
<a href="http://na.blackberry.com/eng/developers/javaappdev/ " class="link">Java Application Development</a><br/>
<span class="posted">2009/04/30</span>
</li>
</ul>
</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);
?>