blob: 17bbc6b7f5a8f6052bfa1aa784a77dfb16b1a4e5 [file] [log] [blame]
Ivan Furnadjievfe119d82013-02-13 12:25:45 +02001<?php
2
3 include( $_SERVER['DOCUMENT_ROOT'] . "/rap/_projectCommon.php" );
4 require_once( $_SERVER['DOCUMENT_ROOT'] . "/rap/_Builds.php" );
5
6 $buildName = isset( $_GET[ 'build' ] ) ? $_GET[ 'build' ] : "R";
7
8 $builds = new Builds( "2.1" );
9
10 $build = $builds->findBuild( $buildName );
11 if( !$build ) {
12 header( "HTTP/1.1 404 Not Found" );
13 exit( "Unknown build id" );
14 }
15
Ralf Sternbergc50dc5d2013-06-11 22:03:06 +020016 $PAGE_TITLE = "RAP " . $build->getName() . " - New and Noteworthy";
17 $PAGE_NAV_POSITION = array( "documentation", "noteworthy" );
18
19 printHeader();
Ivan Furnadjievfe119d82013-02-13 12:25:45 +020020
21?>
22
23<div id="midcolumn">
24
Ralf Sternbergee14f4b2013-06-11 22:26:38 +020025 <h1><?= $PAGE_TITLE ?></h1>
Ivan Furnadjievfe119d82013-02-13 12:25:45 +020026
27 <p>
28 Here's a list of the most noteworthy things in the RAP
29 <?= $build->getName() ?> <?= strtolower( $build->getType() ) ?>
30<? if( $build->isCompleted() ) { ?>
31 which is available for <a href="http://www.eclipse.org/rap/downloads/">download</a>
32 since <?php echo formatDate( $build->getPublishDate() ) ?>.
33<? } else { ?>
34 which will be available for <a href="http://www.eclipse.org/rap/downloads/">download</a>
35 on <?php echo formatDate( $build->getPublishDate() ) ?>.
36 In the meantime, all changes described here are available in the most recent
37 <a href="http://www.eclipse.org/rap/downloads/">nightly build</a>.
38<? } ?>
39 </p>
40
41<? include( "_news-${buildName}.html" ); ?>
42
43 <h2>Bugfixes</h2>
44
45 <p>
46 <a href="<?= createBuglistUrl( $build->getTargetMilestones() ) ?>">This list</a>
47 shows all bugs that have been fixed for this <?php echo strtolower( $build->getType() ); ?>.
48 </p>
49
50<? if( $buildName !== "R" && substr( $buildName, 0, 2 ) !== "SR" ) { ?>
51 <h2>Previous Builds</h2>
52
53 <p>
54 The above features are just the ones that are new since the last milestone build.
55 Summaries for earlier builds:
56 </p>
57 <ul>
58<? foreach( $builds->getPreviousBuilds( $build->getShortName() ) as $prevBuild ) { ?>
59 <li>
60 <a href="./?build=<?php echo $prevBuild->getShortName(); ?>">News for RAP <?php echo $prevBuild->getName(); ?></a>
61 </li>
62<? } ?>
63 </ul>
64<? } ?>
65
66</div>
67
68<div id="rightcolumn">
69 <? includeSidebar( "migrationguide.php" ) ?>
70 <? includeSidebar( "releases.php" ) ?>
71</div>
72
73<?
74 printFooter();
75?>