blob: 330637ab5ccff22f0fff7b9e21b1f121fbf34612 [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)
$Nav->addNavSeparator(" Getting started", "/jwt/index.php");
$Nav->addCustomNav(" About JWT", "/jwt/about.php", "_blank", 3);
$Nav->addNavSeparator(" Development", "/jwt/index.php");
$Nav->addCustomNav(" Team/Committers", "/jwt/team.php", "_blank", 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">
<h1>Eclipse Java Workflow Tooling (JWT) Project</h1>
<div class="homeitem3col">
<h3> Desktop tools</h3>
<p>
In the Desktop tools we want to provide users with the possibility to simulate or
execute their processes and workflows, but without using a process engine. This will
be possible using a previewer which runs on every desktop computer.
</p>
<br/>
<p>
A sample implementation that is compatible with the <a href="../we/index.php">Workflow Editor (WE)</a>
is the AgilPro Simulator and can be found <a href="http://sf.net/projects/agilpro">here</a>.
</p>
</div>
<hr class="clearer">
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Incubation</h6>
<div align="center"><img src="/jwt/project-info/Eclipse_Incubation.jpg">
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>