blob: 4d7c7a190e9f058d69e7485bf9829d4f4d880114 [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'
#*****************************************************************************
#
# /components/desktop/index.php of Java Workflow Tooling (JWT)
#
# Author: Florian Lautenbacher
# created: 2007-10-12
#
# Description: The Desktop tools page of the Java Workflow Tooling project
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Java Workflow Tooling (JWT)";
$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)
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h1>Java Workflow Tooling (JWT)</h1>
<div class="homeitem3col">
<h3> Runtime tools</h3>
<p>
In the Runtime tools we support the user with all kinds of tools for the runtime of a workflow. A first idea
currently discussed in the Task Engine Framework that is further described <a href="http://wiki.eclipse.org/JWT_Runtime">here</a>.
</p>
<br/>
<br/>
<div align="center"><img width=678 height=623 src="/jwt/images/TaskEngineFramework.png"></div>
<br/>
</div>
<hr class="clearer">
</div>
<div id="rightcolumn">
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>