blob: 94224a60b12ff53c66027708f011a054000ffa55 [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.4,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.5 - Service Release (May 30, 2015)</h2>
<p>
This is a minor bug fix release for the following bugs:
</p>
<ul>
<li>
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=468058">Bug 468058</a> - NPE thrown when creating Join Condition expression for ForEach activity
</li>
<li>
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=461558">Bug 461558</a> - ArrayIndexOutOfBoundsException when selecting Completion tab in ForEach activity
</li>
<li>
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=443182">Bug 443182</a> - Properties for ForEach activity is not displayed
</li>
</ul>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>