| <?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 = "Watch 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;"/>Watch the e4-Rover Webcam</h3> |
| |
| <iframe id="remote_iframe_185" name="remote_iframe_185" style="border:0;padding:0;margin:0;width:100%;height:370px;overflow:hidden" frameborder="0" scrolling="no" onload="_ifr_ol(this)" src="http://ig.gmodules.com/gadgets/ifr?view=home&url=http://www.benjamin-cabe.com/econ/Webcam.xml%3F_&nocache=0&lang=fr&country=fr&.lang=fr&.country=fr&synd=ig&mid=185&ifpctok=-5325646661890087630&exp_rpc_js=1&exp_track_js=1&exp_ids=17259,300885&parent=http://www.google.fr&refresh=3600&libs=core:core.io:core.iglegacy:auth-refresh&is_signedin=1"></iframe> |
| |
| <h3><img src="http://dev.eclipse.org/large_icons/actions/media-seek-forward.png" style="position:relative;top:7px;"/>Watch the e4-Rover Scoreboard</h3> |
| |
| <iframe id="remote_iframe_187" name="remote_iframe_187" style="border:0;padding:0;margin:0;width:100%;height:485px;overflow:hidden" frameborder="0" scrolling="no" onload="_ifr_ol(this)" src="http://ig.gmodules.com/gadgets/ifr?view=home&url=http://www.benjamin-cabe.com/econ/gadgetSite.xml&nocache=1&lang=fr&country=fr&.lang=fr&.country=fr&synd=ig&mid=187&ifpctok=-2529867967974901308&exp_rpc_js=1&exp_track_js=1&exp_ids=17259,300885&parent=http://www.google.fr&refresh=3600&libs=core:core.io:core.iglegacy:auth-refresh&is_signedin=1"></iframe> |
| |
| |
| <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); |
| ?> |