blob: 3cd1ba6fce0899ccbb5d1744870a926191fb0112 [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", "_self", 3);
$Nav->addNavSeparator(" Development", "index.php");
$Nav->addCustomNav(" Team Committers", "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>About JWT</h1>
Currently there is no further description about this project. For the moment please refer to the
<a href="http://www.eclipse.org/proposals/jwt/">project proposal</a>.
<hr class="clearer">
</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);
?>