blob: 8ef4ff8bcd89b03e0a45243dcf63dba797e97601 [file] [log] [blame]
<?php
include( $_SERVER['DOCUMENT_ROOT'] . "/rap/_projectCommon.php" );
require_once( "../Noteworthy.class.php" );
$pageTitle = "RAP Project - New and Noteworthy";
$pageKeywords = "ajax, rap, osgi, equinox, eclipse rap, equinox rap";
$pageAuthor = "The RAP Team";
$header = <<<EOHTML
<p>
Here's a list of the most noteworthy things that are available in the
milestone build 1.4 M5 (February 4, 2011) which is now available
for <a href="http://www.eclipse.org/rap/downloads/">download</a>.
</p>
<p>
<a href="https://bugs.eclipse.org/bugs/buglist.cgi?classification=RT&product=RAP&target_milestone=1.4+M5&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&query_format=advanced">
This list</a> shows all bugs that were fixed during this milestone.
</p>
EOHTML;
$footer = <<<EOHTML
<p>
The above features are just the ones that are new since the last
milestone build. Summaries for earlier builds:
</p>
<ul>
<li><a href="news_M1.php">News for RAP 1.4 M1</a></li>
<li><a href="news_M2.php">News for RAP 1.4 M2</a></li>
<li><a href="news_M3.php">News for RAP 1.4 M3</a></li>
<li><a href="news_M4.php">News for RAP 1.4 M4</a></li>
</ul>
EOHTML;
$news = new Noteworthy( 'news_14.xml', 'M5', $header, $footer );
$html = $news->getHtml();
$navPosition = array( "documentation", "noteworthy" );
generateRapPage( $pageAuthor, $pageKeywords, $pageTitle, $html, $navPosition );
?>