blob: f8abbc72f8c7aab4cdefdb2340ba6c19e324e72c [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.2,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.2 - Service Release (November 12, 2012)</h2>
<p>
This release updates the BPEL Designer for Eclipse Juno.
</br>
Sadly, we have had to disable the content assist functionality for XPath expression editors as of Eclipse Juno because support for org.eclipse.ui.internal.EditorSite
and supporting classes have been deprecated and removed. Work is in progress to replace the content assist with an XText version.
</p>
<p>
This release also 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://bugs.eclipse.org/bugs/show_bug.cgi?id=378241">Bug 378241</a> - Unable to create new server runtime in "New BPEL Project" wizard
</li>
<li>
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=378599">Bug 378599</a> - WizardFragments defined in Ode runtime are no longer being displayed for New Server Runtime wizard
</li>
<li>
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=379547">Bug 379547</a> - Namespaces Tab throws NPE when tab is selected
</li>
<li>
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=379613">Bug 379613</a> - Bug 379613 - Changes to the BPEL process are not deployed automatically after save.
Also reported as <a href="https://issues.jboss.org/browse/JBIDE-9789">Bug JBIDE-9789</a>.
</li>
<li>
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=378997">Bug 378997</a> - Bug 378997 - Remove usage of internal packages and fix Juno build
</li>
<li>
<a href="https://bugzilla.redhat.com/show_bug.cgi?id=831712">RH Bug 831712</a> - Adding a BPEL process file to a BPEL project always warns that "the selected location is not a BPEL project" (non-fatal warning message)
</li>
<li>
<a href="https://bugzilla.redhat.com/show_bug.cgi?id=832117">Bug 832117</a> - Cannot import a wsdl file generated by JBoss ESB into BPEL project (was: BPEL - deploy.xml editor blocked from WSDL generated by JBoss ESB)
</li>
</ul>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>