blob: 91c61738b456bb49ec29cb39ee4d752d03190f7c [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'
#*****************************************************************************
#
# template.php
#
# Author: Denis Roy
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Get Started with the e4-Rover Client";
$pageKeywords = "eclipse, e4, rover, mars, challenge, eclipsecon, contest, robot, lego, prize, client";
$pageAuthor = "Lynn Gayowski";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 1);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1);
# End: page-specific settings
#
// This file is linked to from lots of different places.
// Use absolute paths to make sure that we can actually test
// that the file renders properly (i.e. testing using) "/index.php",
// and "/home/index.php" both work.
# Paste your HTML content between the EOHTML markers!
ob_start(); ?>
<div id="fullcolumn">
<div id="midcolumn">
<h1><?=$pageTitle;?></h1>
<img id="rover" src="rover.png" /><br/><br/>
<h3><img src="http://dev.eclipse.org/large_icons/actions/media-seek-forward.png" style="position:relative;top:7px;"/>Download Eclipse e4</h3>
<p>
Download e4 SDK integration build (the build ID is I20100314-2100)<br>
<ul><li><a href="http://www.eclipse.org/downloads/download.php?file=/e4/downloads/drops/I20100314-2100/eclipse-e4-SDK-incubation-I20100314-2100-win32.zip">Windows (32 bit) Download</a></li>
<li><a href="http://www.eclipse.org/downloads/download.php?file=/e4/downloads/drops/I20100314-2100/eclipse-e4-SDK-incubation-I20100314-2100-linux-gtk.tar.gz">Linux (32 bit) Download</a></li>
<li><a href="http://www.eclipse.org/downloads/download.php?file=/e4/downloads/drops/I20100314-2100/eclipse-e4-SDK-incubation-I20100314-2100-macosx-cocoa.tar.gz">Cocoa (32 bit) Download</a></li>
<li><a href="http://welcome.to.eclipsecon.org/e4/downloads/drops/I20100314-2100/download.php?dropFile=eclipse-e4-SDK-incubation-I20100314-2100-macosx-cocoa-x86_64.tar.gz">Cocoa (64 bit - for Snow Leopard)</a>
<li><a href="http://download.eclipse.org/e4/downloads/drops/I20100314-2100/index.html#EclipseE4">Other Platforms</a>.
</li></ul>
</ul>
</p>
<h3><img src="http://dev.eclipse.org/large_icons/actions/media-seek-forward.png" style="position:relative;top:7px;"/>Download the e4-Rover Client</h3>
<ol>
<li>Download the following zip file and save it locally (without extracting it): <a href="http://github.com/bokowski/e4rover/zipball/master">http://github.com/bokowski/e4rover/zipball/master</a>.
Note that we may make a few more tweaks to the client over the next days - we'll make an announcement if we do, so that you can download a
new version.</li>
<li>Start the e4 SDK using a new workspace.</li>
<li>Select "File" -> "Import" -> "General" -> "Existing Projects into Workspace" and click "Next".</li>
<li>Select "Archive File" and click on "Browse".</li>
<li>Select the downloaded zip file and click "Open", then "Finish" to import the following projects:
<ul>
<li>com.thoughtworks.xstream</li>
<li>org.apache.commons.io</li>
<li>org.eclipsecon.e4rover.client</li>
<li>org.eclipsecon.e4rover.client.production</li>
<li>org.eclipsecon.e4rover.common</li>
</ul></li>
</ol>
<h3><img src="http://dev.eclipse.org/large_icons/actions/media-seek-forward.png" style="position:relative;top:7px;"/>Register for a Key</h3>
<ol>
<li>Register for a player key in-person at the Mars arena in the hall outside the Alameda Room. You will receive a confirmation e-mail
with your key. Add your key to the "Player Key" field in the e4-Rover UI. Make sure there are no
preceding or trailing blanks. Note: Only EclipseCon 2010 attendees can register to play.</li>
</ol>
<h3><img src="http://dev.eclipse.org/large_icons/actions/media-seek-forward.png" style="position:relative;top:7px;"/>Start the e4-Rover Client</h3>
<ol>
<li>The project "org.eclipsecon.e4rover.client" contains a file called "e4roverclient.product".
Open the file, and click the "Launch Eclipse Application" link in the editor that opens.</li>
</ol>
<br><br>
</div>
<!-- remove the entire <div> tag to omit the right column! -->
</div>
<? $html = ob_get_clean();
# Generate the web page
$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="style.css"/>');
$App->generatePage("Nova", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>