blob: d23698d7f93cca2f8282e5d85e90d0cc5dc6ab34 [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'
#*****************************************************************************
#
# template.php
#
# Author: Denis Roy
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "BPEL Designer - New & Noteworthy";
$pageKeywords = "V1.0.3,BPEL,info";
$pageAuthor = "Bob Brodt";
# 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)
# include($_SERVER['DOCUMENT_ROOT'] . "/$projectShortName/items/users_menu.php");
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<STYLE type="text/css">
span.feature {
font-size: 18pt;
font-weight: bold;
}
span.feature:before {
content: counter(featureId) ". " ;
counter-increment: featureId;
}
</STYLE>
<div id="maincontent">
<div id="midcolumn" style="counter-reset: featureId;" >
<h1>$pageTitle</h1>
<h2>Version 1.0.3 - Service Release (October 16, 2013)</h2>
<p>
This release updates the BPEL Designer for Eclipse Kepler.
</br>
Work on fixing the content assist functionality for XPath expression editors has halted due to lack of resources.
We had started to implement an an XText driven content assist feature, but due to lack of manpower it has ground to a halt.
If anyone is interested in helping, please contact the
<a href="/$projectShortName/team.php">Project Lead</a>
</p>
<p>
This release includes several bug fixes.
Here is a list of the bugzilla reports that have been addressed by this release:
</p>
<ul>
<li>
<a href="https://issues.jboss.org/browse/JBDS-2483">Bug JBDS-2483</a> - In BPEL editor design mode and source mode differs
</li>
<li>
<a href="https://bugzilla.redhat.com/show_bug.cgi?id=996874">RH Bug 996874</a> - Cannot set messageType for variable in BPEL Process editor
</li>
</ul>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>