| <?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 M4 information"; |
| $pageKeywords = "M4,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"); |
| include($_SERVER['DOCUMENT_ROOT'] . "/$projectShortName/items/milestones_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>What's in M4 ?</h2> |
| |
| <p> |
| This is an interim release for a bunch of bug fixes and some new features. |
| It includes most (if not all) of the bug fixes contributed by the |
| <a href="http://community.jboss.org/en/jbosstools">JBoss Riftsaw and BPEL team</a> (thanks guys!) |
| </p> |
| |
| <!-- feature --> |
| <p> |
| <span class="feature"></span> |
| According to the <a href="/bpel/developers/milestone_plan.php">milestone plan</a> |
| we now have the ability to deploy to <a href="http://ode.apache.org/">ODE</a> as well as <a href="http://jboss.org/riftsaw">Riftsaw</a> runtimes, |
| although the deployment classes were coded before the WTP deployment framework was completed. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=324823">here</a> for more info. |
| We are working on this and should have a working and tested patch soon. |
| <br/> |
| Development and design work on process debugging has still not begun and may not be available until the 1.0 release or later. |
| </p> |
| |
| <!-- feature --> |
| <p> |
| <span class="feature"></span> |
| Here is a <a href="https://bugs.eclipse.org/bugs/buglist.cgi?chfieldto=Now;query_format=advanced;chfieldfrom=2010-01-01;resolution=FIXED;product=BPEL;classification=Technology"> |
| complete list of bug fixes and features</a> that have been added since M3. |
| </p> |
| |
| <!-- feature --> |
| <p> |
| <span class="feature"></span> |
| The BPEL "New File" Wizard has been enhanced to |
| allow specification of a SOAP or HTTP service endpoint, which generates the |
| <service> and <binding> elements in the WSDL artifact. |
| <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=319216">See here</a> for details. |
| </p> |
| |
| <div class="screenshot"> |
| <img src="img/NewFileWizard.png"/> |
| </div> |
| |
| <!-- feature --> |
| <p> |
| <span class="feature"></span> |
| A new Property Sheet Tab has been added for the Process and Activities. This tab displays a list of all |
| namespaces and namespace prefixes that are in-scope. Missing namespace prefixes can also be assigned here. |
| <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=324162">See here</a> for details. |
| |
| <div class="screenshot"> |
| <img width="800" id="palette" src="img/NamespacesPropertyTab.png" /> |
| </div> |
| </p> |
| |
| |
| |
| </div> |
| </div> |
| |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |