blob: 063fb722f3f1bd283df0c9a5c73dd164c39a6d1a [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 Help with the e4-Rover Mars Challenge";
$pageKeywords = "eclipse, e4, rover, mars, challenge, eclipsecon, contest, robot, lego, prize, help";
$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;"/>Kickoff Session</h3>
<p>There was a <a href="http://www.eclipsecon.org/2010/sessions/?page=sessions&id=1612">Mission
Launch of the e4-Rover Mars Challenge</a> to kickoff the contest on Monday, 8:15am - 8:45am, in the
Cypress Room.
</p>
<h3><img src="http://dev.eclipse.org/large_icons/actions/media-seek-forward.png" style="position:relative;top:7px;"/>Birds of a Feather (BoF) Session</h3>
<p>An <a href="http://www.eclipsecon.org/2010/sessions/?page=sessions&id=1638">e4-Rover Mars Challenge
BoF</a> will be held Tuesday, 8:15pm - 9:15pm, in the Cypress Room to answer questions and brainstorm
approaches to improve the client.
</p>
<h3><img src="http://dev.eclipse.org/large_icons/actions/media-seek-forward.png" style="position:relative;top:7px;"/>Mars Arena</h3>
<p>Come see us throughout the week at the e4-Rover Mars arena in the hall outside the Alameda Room. Various e4 experts
will be on hand to answer questions.
<ul>
<li>Monday, 9:00am - 5:00pm</li>
<li>Tuesday, 10:00am - 5:00pm</li>
<li>Wednesday, 10:00am - 5:00pm</li>
<li>Thursday, 10:00am - 11:30pm</li>
</ul>
</p>
<h3><img src="http://dev.eclipse.org/large_icons/actions/media-seek-forward.png" style="position:relative;top:7px;"/>FAQ</h3>
<p>Consult the <a href="http://docs.google.com/View?id=dcxsfdff_25dp9b5wgf">e4-Rover Mars Challenge FAQ</a>
for additional help.
</p>
<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);
?>