Skip to content
Snippets Groups Projects
Commit fd0c4853 authored by nitind's avatar nitind
Browse files

*** empty log message ***

parent 0fcf2d3e
No related branches found
No related tags found
No related merge requests found
Showing
with 472 additions and 0 deletions
<html>
<head>
<meta http-equiv="refresh" content="0; url=main.php" />
</head>
<body>
<a href="main.php">This document has moved</a>
</body>
</html>
<html>
<head>
<title>Eclipse WTP 3.0 M4 News</title>
</head>
<body>
<h1>Eclipse Web Tools Platform 3.0 M4 - New and Noteworthy</h1>
<p>
The New Year is upon us, and while some committers are still enjoying their vacations, <b>you</b> can still ring in the new year with a new milestone of the Eclipse Web Tools Platform. Here are some
of the more noteworthy features available in WTP 3.0 M4 (January 7, 2008). <a href="http://download.eclipse.org/webtools/downloads/">Download</a>
it now!
</p>
<h2>Subprojects</h2>
<ul>
<li>
<a href="javaee.php">Java EE and EJB Tools</a>
</li>
<!--
<li>
<a href="jsf.php">JavaServer Faces Tools</a>
</li>
<li>
<a href="jpa.php">Dali JPA Tools</a>
</li>
-->
<li>
<a href="server.php">Server Tools</a>
</li>
<li>
<a href="sourceeditors.php">Source Editing</a>
</li>
<li>
<a href="webservices.php">Web Services and WSDL Tools</a>
</li>
</ul>
<p>
Here are the
<a
href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=WebTools&amp;target_milestone=3.0+M4&amp;resolution=FIXED&amp;cmdtype=doit">bugs that were fixed</a>
during this milestone (<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;product=Dali+JPA+Tools&amp;target_milestone=2.0+M4&amp;resolution=FIXED&amp;cmdtype=doit">JPA list</a>).
</p>
<p>
The above features are just the ones that are new since the last milestone build. Summaries for earlier
builds:
<ul>
<li>
<a href="../main.php">Full summaries for earlier milestones and releases.</a>
</li>
</ul>
</p>
</body>
</html>
<?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'
$pageKeywords = "";
$pageAuthor = "Bob Fraser";
$root = $_SERVER['DOCUMENT_ROOT'];
require_once ($root . '/webtools/common.php');
# Generate the web page
// Load the XML source
$xml = DOMDocument::load('javaee.xml');
//Set the page title
$xpath = new DOMXPath($xml);
$titleNode = $xpath->query("/release/attribute::name")->item(0);
$pageTitle = ($titleNode != null) ? "Web Tools Platform " . $titleNode->nodeValue . " News" : "eclipse.org webtools page";
// Load the XSL source
$xsl = DOMDocument::load($root . '/webtools/development/news/phoenix_noteworthy.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
$maincontent = $proc->transformToXML($xml);
$html = <<<EOHTML
$maincontent
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../new_and_noteworthy.xsl"?>
<release name="3.0 M4" root="../../..">
<!--
<component name="component name, such as Java EE Tools">
<item title="item title can go here">
<title>item title can also go here</title>
<description>description of this new feature, preferably with cropped .pngs (800px wide or less) of the UI</description>
</item>
</component>
-->
<component name="Java EE Tools">
<item title="">
<description></description>
</item>
</component>
<component name="EJB Tools">
<item title="">
<description></description>
</item>
</component>
</release>
<?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'
$pageKeywords = "";
$pageAuthor = "Bob Fraser";
$root = $_SERVER['DOCUMENT_ROOT'];
require_once ($root . '/webtools/common.php');
# Generate the web page
// Load the XML source
$xml = DOMDocument::load('jpa.xml');
//Set the page title
$xpath = new DOMXPath($xml);
$titleNode = $xpath->query("/release/attribute::name")->item(0);
$pageTitle = ($titleNode != null) ? "Web Tools Platform " . $titleNode->nodeValue . " News" : "eclipse.org webtools page";
// Load the XSL source
$xsl = DOMDocument::load($root . '/webtools/development/news/phoenix_noteworthy.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
$maincontent = $proc->transformToXML($xml);
$html = <<<EOHTML
$maincontent
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../new_and_noteworthy.xsl"?>
<release name="3.0 M4" root="../../..">
<!--
<component name="component name, such as JPA Tools">
<item title="item title can go here">
<title>item title can also go here</title>
<description>description of this new feature, preferably with cropped .pngs (800px wide or less) of the UI</description>
</item>
</component>
-->
<component name="Dali JPA Tools">
<item title="">
<description></description>
</item>
</component>
</release>
<?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'
$pageKeywords = "";
$pageAuthor = "Bob Fraser";
$root = $_SERVER['DOCUMENT_ROOT'];
require_once ($root . '/webtools/common.php');
# Generate the web page
// Load the XML source
$xml = DOMDocument::load('jsf.xml');
//Set the page title
$xpath = new DOMXPath($xml);
$titleNode = $xpath->query("/release/attribute::name")->item(0);
$pageTitle = ($titleNode != null) ? "Web Tools Platform " . $titleNode->nodeValue . " News" : "eclipse.org webtools page";
// Load the XSL source
$xsl = DOMDocument::load($root . '/webtools/development/news/phoenix_noteworthy.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
$maincontent = $proc->transformToXML($xml);
$html = <<<EOHTML
$maincontent
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../new_and_noteworthy.xsl"?>
<release name="3.0 M4" root="../../..">
<!--
<component name="component name, such as JavaServer Faces Tools">
<item title="item title can go here">
<title>item title can also go here</title>
<description>description of this new feature, preferably with cropped .pngs (800px wide or less) of the UI</description>
</item>
</component>
-->
<component name="JavaServer Faces Tools">
<item title="">
<description></description>
</item>
</component>
</release>
<?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'
$pageKeywords = "";
$pageAuthor = "Bob Fraser";
$root = $_SERVER['DOCUMENT_ROOT'];
require_once ($root . '/webtools/common.php');
# Generate the web page
// Load the XML source
$xml = DOMDocument::load('index.xml');
//Set the page title
$xpath = new DOMXPath($xml);
$titleNode = $xpath->query("/html/head/title")->item(0);
$pageTitle = ($titleNode != null) ? $titleNode->nodeValue : "eclipse.org webtools page";
// Load the XSL source
$xsl = DOMDocument::load($root . '/webtools/wtpphoenix.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
$maincontent = $proc->transformToXML($xml);
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<p>
$maincontent
</p>
</div>
</div>
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>
<?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'
$pageKeywords = "";
$pageAuthor = "Bob Fraser";
$root = $_SERVER['DOCUMENT_ROOT'];
require_once ($root . '/webtools/common.php');
# Generate the web page
// Load the XML source
$xml = DOMDocument::load('server.xml');
//Set the page title
$xpath = new DOMXPath($xml);
$titleNode = $xpath->query("/release/attribute::name")->item(0);
$pageTitle = ($titleNode != null) ? "Web Tools Platform " . $titleNode->nodeValue . " News" : "eclipse.org webtools page";
// Load the XSL source
$xsl = DOMDocument::load($root . '/webtools/development/news/phoenix_noteworthy.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
$maincontent = $proc->transformToXML($xml);
$html = <<<EOHTML
$maincontent
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../new_and_noteworthy.xsl"?>
<release
name="3.0 M4"
root="../../..">
<!--
<component name="component name, such as Server Tools">
<item title="item title can go here">
<title>item title can also go here</title>
<description>description of this new feature, preferably with cropped .pngs (800px wide or less) of the UI</description>
</item>
</component>
-->
<component name="Server Tools">
</item>
<item title="Servers View context menu improvements">
<description>
The context menu of the Server view has been updated to contain
key bindings shortcuts for actions that are common to the Eclipse
Platform.
<br />
<br />
<br />
This could really use a picture.
</description>
</item>
<item title="Servers View tooltips">
<description>
When mousing is over a server in the Servers view, the tooltip will now display the vendor of
the server and the number of modules it contains.
<br />
This is only the default behavior. Adopters can extend this functionality using the org.eclipse.wst.server.ui.serverToolTip extension point.
<br />
<br />
<br />
<img src="server/ServerTooltip.png" alt="Tooltips"/>
</description>
</item>
</component>
</release>
development/news/3.0M4/server/ServerTooltip.png

54.4 KiB

<?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'
$pageKeywords = "";
$pageAuthor = "Bob Fraser";
$root = $_SERVER['DOCUMENT_ROOT'];
require_once ($root . '/webtools/common.php');
# Generate the web page
// Load the XML source
$xml = DOMDocument::load('sourceeditors.xml');
//Set the page title
$xpath = new DOMXPath($xml);
$titleNode = $xpath->query("/release/attribute::name")->item(0);
$pageTitle = ($titleNode != null) ? "Web Tools Platform " . $titleNode->nodeValue . " News" : "eclipse.org webtools page";
// Load the XSL source
$xsl = DOMDocument::load($root . '/webtools/development/news/phoenix_noteworthy.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
$maincontent = $proc->transformToXML($xml);
$html = <<<EOHTML
$maincontent
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../new_and_noteworthy.xsl"?>
<release
name="3.0 M4"
root="../../.."
>
<!--
<component name="component name, such as HTML, CSS, etc.">
<item title="item title can go here">
<title>item title can also go here</title>
<description>description of this new feature, preferably with cropped .pngs of the UI</description>
</item>
</component>
-->
<component name="XML">
<item title="">
<description></description>
</item>
</component>
<component name="JSP">
<item title="">
<description></description>
</item>
</component>
<component name="XML Schema">
<item title="">
<description></description>
</item>
</component>
<component name="Javascript">
<item title="">
<description></description>
</item>
</component>
<component name="HTML">
<item title="">
<description></description>
</item>
</component>
<component name="CSS">
<item title="">
<description></description>
</item>
</component>
<component name="DTD">
<item title="">
<description></description>
</item>
</component>
</release>
<?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'
$pageKeywords = "";
$pageAuthor = "Bob Fraser";
$root = $_SERVER['DOCUMENT_ROOT'];
require_once ($root . '/webtools/common.php');
# Generate the web page
// Load the XML source
$xml = DOMDocument::load('webservices.xml');
//Set the page title
$xpath = new DOMXPath($xml);
$titleNode = $xpath->query("/release/attribute::name")->item(0);
$pageTitle = ($titleNode != null) ? "Web Tools Platform " . $titleNode->nodeValue . " News" : "eclipse.org webtools page";
// Load the XSL source
$xsl = DOMDocument::load($root . '/webtools/development/news/phoenix_noteworthy.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
$maincontent = $proc->transformToXML($xml);
$html = <<<EOHTML
$maincontent
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../new_and_noteworthy.xsl"?>
<release name="3.0 M4" root="../../..">
<!--
<component name="component name, such as Web Services Tools">
<item title="item title can go here">
<title>item title can also go here</title>
<description>description of this new feature, preferably with cropped .pngs of the UI</description>
</item>
</component>
-->
<component name="Web Services">
<item title="New Service Policies preference and extension point">
<description>
The Web Services
<b>Profile Compliance and Validation</b>
preferences have been replaced with the new
<b>Service Policies</b>
preference page. This new page allows for additional options
controlling quality of service requirements.
<br />
<br />
<img src="webservices/servicepolicies.png" alt="the new Service Policies preference page" />
<br />
The <b>Profile Compliance and Validation</b> project properties page has also been moved to
<b>Service Policies</b>.
<br />
Adopters can contribute more service policies extensions via a new extension point.
Please refer to the <a href="http://wiki.eclipse.org/New_Help_for_Old_Friends_III#WebServices_and_WSDL">New Help for Old Friends III wiki</a>
for more details.
</description>
</item>
</component>
<component name="WSDL">
<item title="Zoom In/Zoom Out">
<description>
The Graph View of the WSDL Editor can now be zoomed
in or zoomed out by changing the zoom factor in
the toolbar.
<br />
<br />
<b>Regular view</b><br />
<img src="webservices/wsdlzoom100.jpg" alt="zoom showing 100%" />
<br />
<br />
<b>Zoom at 150%</b><br />
<img src="webservices/wsdlzoom150.jpg" alt="zoom factor at 150%" />
<br />
<br />
<b>Zoom at 75%</b><br />
<img src="webservices/wsdlzoom75.jpg" alt="zoom factor at 75%" />
</description>
</item>
</component>
</release>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment