blob: 0a751ac5e32695615acff8526b60215fb4ef48ed [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'
#*****************************************************************************
#
# File : newsNoteworthy.php
#
# Author : Diego Madruga Sandin (dmadruga)
# Date : 2009-05-27
#
# Description: Project New & Noteworthy
#
#
#****************************************************************************
# Begin: page-specific settings. Change these.
$pageTitle = "Mobile Tools for Java 1.1.x &nbsp; (MTJ) &nbsp; New & Noteworthy";
$pageKeywords = "MTJ, New & Noteworthy";
$pageAuthor = "Diego Madruga Sandin";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h1>$pageTitle</h1>
<p>This document contains descriptions of some of the more interesting or significant changes
made to MTJ for the 1.1.x releases.
</p>
<ul>
<li><a href="#1.1.2">MTJ 1.1.2 release</a></li>
<li><a href="#1.1.1">MTJ 1.1.1 release</a></li>
<li><a href="#1.1">MTJ 1.1 release</a></li>
</ul>
<br>
<table
cellpadding="10"
cellspacing="0"
width="100%"
summary="New and noteworthy items">
<colgroup>
<col width="15%">
<col width="85%">
</colgroup>
<tbody>
<!-- MTJ 1.1.2 Release new & noteworthy -->
<tr>
<td colspan="2"><a name="1.1.2"></a>
<div style="font-size: 20px; font-weight: bold;"><br>
MTJ 1.1.2 Release</div>
</td>
</tr>
<tr>
<td>
<p align="left"><b>New Wizard: Exporting Midlet Package</b></p>
</td>
<td>
<p>A new wizard for exporting midlet packages that is deployable to devices from project(s) in the workbench is added. This replaces the
export menu item.</p>
<p><img
src="images/ExportMidletPackage.png"
alt="Export Midlet Package" /></p>
</td>
</tr>
<tr>
<td>
<p align="left"><b>New Wizard: Export Antenna Buildfiles Wizard</b></p>
</td>
<td>
<p>A new wizard for exporting buildfiles for consumption with the Buildfiles wizard.</p>
<p><img
src="images/ExportAntennaWizard.png"
alt="Export Antenna Buildfiles Wizard" /></p>
</td>
</tr>
<!-- MTJ 1.1.1 Release new & noteworthy -->
<tr>
<td colspan="2"><a name="1.1.1"></a>
<div style="font-size: 20px; font-weight: bold;"><br>
MTJ 1.1.1 Release</div>
</td>
</tr>
<tr>
<td>
<p align="left"><b>Improved Javadoc discovery</b></p>
</td>
<td>
<p>MTJ now uses package-list files to discover and match the Javadocs shipped with SDKs to the corresponding libraries contained in the SDKs.
This enables the Eclipse code assist to work better with Java ME libraries. In order to get the full benefit of this improvement, it is necessary
to recreate the devices that already exists in your workspace.</p>
<p><img
src="images/codeassist.png"
alt="Code assist for SDK provided libraries" /></p>
</td>
</tr>
<!-- MTJ 1.1 release new & noteworthy -->
<tr>
<td colspan="2"><a name="1.1"></a>
<div style="font-size: 20px; font-weight: bold;"><br>
MTJ 1.1 Release</div>
</td>
</tr>
<tr>
<td>
<p align="left"><b>Automatic SDK installation</b></p>
</td>
<td>
<ul>
<li><a href="#1.1.1">MTJ 1.1.1 release</a></li>
<li><a href="#1.1">MTJ 1.1 release</a></li>
</ul>
<p>A new extension point has been introduced to MTJ that enables the automatic installation of SDKs. SDK providers can now use this extension
point to introduce their SDKs to MTJ without the need for a manual install. This change also made numerous changes to the Device management UI</p>
<p><img
src="images/DeviceManagement.png"
alt="New device management pages" /></p>
</td>
</tr>
</tbody>
</table>
<hr></hr>
<p>
<h3>New & Noteworth for earlier releases</h3>
<ul>
<li><a href="http://www.eclipse.org/dsdp/mtj/development/releasenotes/MTJ1.0.1/newsNoteworthy.php">MTJ 1.0.1 release</a></li>
<li><a href="http://www.eclipse.org/dsdp/mtj/development/releasenotes/MTJ1.0/newsNoteworthy.php">MTJ 1.0 release</a></li>
</ul>
</p>
</div>
EOHTML;
# Generate the web page
$App->AddExtraHtmlHeader('<style type="text/css">
td {
border-top: solid thin black;
}
td table tbody tr td {
border-top: none;
} /* no border for nested tables */
tr {
vertical-align: top;
}
ul {
padding-left: 1.2em;
}
</style>' . "\n");
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>