blob: 8362d6b9d67b40c362acc2605e3c4425c6eacda6 [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());
/*******************************************************************************
* Copyright (c) 2013 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Violeta Georgieva
*
*******************************************************************************/
# Begin: page-specific settings. Change these.
$pageTitle = "Gemini Web - Release Notes";
$pageKeywords = "Eclipse, EclipseRT, Virgo, OSGi, Downloads";
$pageAuthor = "Violeta Georgieva";
ob_start();
?>
<div id="midcolumn">
<h3>2.2.1.RELEASE - Release Notes</h3>
<p>The <a href="http://wiki.eclipse.org/Virgo/Future#Release_Branding">Sky</a> (2.2.1) release of Gemini Web
provides a newer Apache Tomcat version and various performance improvements.</p>
<p>
<p>A full list of bugs included in this release is available <a href="https://bugs.eclipse.org/bugs/buglist.cgi?list_id=2407161;classification=RT;query_format=advanced;component=unknown;target_milestone=2.2.1.RELEASE;product=Gemini.Web" target="_self">here</a>.</p>
<p><a href="2.2.0.RELEASE.php" target="_self">2.2.0.RELEASE - Release Notes</a></p>
</div>
<?
$html = ob_get_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>