blob: dbfb8f3d24b2d2c0cd23c9da2cef6c4c4f19d6ef [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'
#*****************************************************************************
#
# index.php
#
# Description: eclipse.org cvs main page
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Platform UI Team";
$pageKeywords = "Platform, UI, Team";
$pageAuthor = "";
# 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", 3);
# $Nav->addCustomNav("Bog and Tric", "http://www.bogandtric.com/", "_blank", 3);
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<script src="drag.js">
</script>
<div width="100%" height="600">
<img class="piece" alt="Francis Upton" style="position: absolute; left: 170px; top: 200px;"
src="images/francis-head-24-fs8.png" onmouseover="handleMouseOver(this, 'Francis Upton');" onmousedown="handleDragStart(event);" />
<img class="piece" alt="Remy Chi Jian Suen" style="position: absolute; left: 300px; top: 200px;"
src="images/remy-head-24-fs8.png" onmouseover="handleMouseOver(this, 'Remy Chi Jian Suen');" onmousedown="handleDragStart(event);" />
<img class="piece" alt="Daniel Megert" style="position: absolute; left: 430px; top: 200px;"
src="images/dani-head-24-fs8.png" onmouseover="handleMouseOver(this, 'Daniel Megert');" onmousedown="handleDragStart(event);" />
<img class="piece" alt="Kevin McGuire" style="position: absolute; left: 560px; top: 200px;"
src="images/kevin-head-24-fs8.png" onmouseover="handleMouseOver(this, 'Kevin McGuire');" onmousedown="handleDragStart(event);" />
<img class="piece" alt="John Arthorne" style="position: absolute; left: 690px; top: 200px;"
src="images/john-head-24-fs8.png" onmouseover="handleMouseOver(this, 'John Arthorne');" onmousedown="handleDragStart(event);" />
<img class="piece" alt="Tom Schindl" style="position: absolute; left: 820px; top: 200px;"
src="images/tom-head-24-fs8.png" onmouseover="handleMouseOver(this, 'Tom Schindl');" onmousedown="handleDragStart(event);" />
<img class="piece" alt="Susan McCourt" style="position: absolute; left: 950px; top: 200px;"
src="images/susan-head-24-fs8.png" onmouseover="handleMouseOver(this, 'Susan McCourt');" onmousedown="handleDragStart(event);" />
<img class="piece" alt="Kim Horne" style="position: absolute; left: 10800px; top: 200px;"
src="images/kim-head-24-fs8.png" onmouseover="handleMouseOver(this, 'Kim Horne');" onmousedown="handleDragStart(event);" />
<img class="piece" alt="Boris Bokowski" style="position: absolute; left: 1410px; top: 200px;"
src="images/boris-head-24-fs8.png" onmouseover="handleMouseOver(this, 'Boris Bokowski');" onmousedown="handleDragStart(event);" />
<img class="piece" style="position: absolute; left: 1540px; top: 200px;"
src="images/nose-small-fs8.png" onmouseover="handleMouseOver(this, 'nose');" onmousedown="handleDragStart(event);" />
<img class="piece" style="position: absolute; left: 1562px; top: 200px;"
src="images/nose-small-fs8.png" onmouseover="handleMouseOver(this, 'nose');" onmousedown="handleDragStart(event);" />
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>