blob: eab5556591ec6ba4d49860e37c9c98ef14d34eea [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 of Java Workflow Tooling (JWT)
#
# Author: Florian Lautenbacher
# Date: 2007-02-26
#
# Description: The start page of the Java Workflow Tooling project
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "JWT Getting started";
$pageKeywords = "JWT , Java Workflow Tooling Project, Workflow Editor, Workflow Administration and Monitoring, Eclipse";
$pageAuthor = "Florian Lautenbacher";
# 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(" Getting started", "index.php");
$Nav->addCustomNav(" About JWT", "about.php", "_blank", 3);
$Nav->addNavSeparator(" Development", "index.php");
$Nav->addCustomNav(" Team Committers", "team.php", "_self", 3);
$Nav->addCustomNav(" Wiki", "http://wiki.eclipse.org/index.php/Java_Workflow_Toolbox_Project", "_blank", 3);
$Nav->addCustomNav(" Newsgroup", "http://www.eclipse.org/newsportal/thread.php?group=eclipse.technology.jwt", "_blank", 3);
$Nav->addCustomNav(" Bugs", "http://bugs.eclipse.org/bugs/", "_blank", 3);
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td valign="top" align="left"><h1>JWT Team</h1></td>
</tr>
</table>
<div class="homeitem">
<h3>JWT Project Lead</h3>
<ul>
<li><span>Marc Dutoo <br>(project lead)<br><a href="http://www.openwide.fr">OpenWide</a></span></li>
<li><span>Florian Lautenbacher <br>(project lead)<br><a href="http://www.informatik.uni-augsburg.de/ds/">University of Augsburg</a></span></li>
</ul>
<h3>JWT Board Members</h3>
<li><span>Fabrice Dewasmes<br><a href="http://www.pragmaconsult.lu/">Pragma Consult</a></span></li>
<li><span>Alain Boulze<br><a href="http://www.inria.fr/">INRIA / OW2</a></span></li>
<li><span>Miguel Valdez<br><a href="http://www.bull.com/fr/index.php">Bull SA</a></span></li>
<li><span>G&uuml;nther Palfinger<br><a href="http://www.e-mundo.de/en/home.html">eMundo GmbH - The mobile mind company</a></span></li>
</ul>
</div>
<div class="homeitem">
<h3>JWT Contributors</h3>
<ul>
<li><span>Emmanuel Rias<br><a href="http://www.bull.com/fr/index.php">Bull SA</a></span></li>
<li><span>Tim Stephenson<br><a href="http://www.jku.at">TIBCO corp.</a></span></li>
<li><span>Wojciech Zurek<br><a href="http://www.ucy.ac.cy">TIBCO corp.</a></span></li>
<li><span>Koen Aers<br><a href="http://labs.jboss.com/portal/jbossjbpm/">Red Hat / JBoss</a></span></li>
<li><span>Yann Jouanique<br><a href="http://www.amadeus.com/amadeus/amadeus.html">Amadeus SA</a></span></li>
<li><span>Etienne Juliot<br><a href="http://www.obeo.fr/">Obeo SA</a></span></li>
<li><span>Pardeep Sood<br>Independent Consultant</span></li>
</ul>
</div>
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Incubation</h6>
<div align="center"><img src="project-info/Eclipse_Incubation.jpg">
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>