Add release notes 3.7.4.RELEASE and update download page
diff --git a/download/index.php b/download/index.php index 319eca7..445cde4 100644 --- a/download/index.php +++ b/download/index.php
@@ -30,13 +30,25 @@ <h2>Virgo Releases</h2> <p> - Sample applications can be found on the <a href="http://www.eclipse.org/virgo/samples">Samples</a> page. All downloads are + Sample applications can be found on the <a href="https://www.eclipse.org/virgo/samples">Samples</a> page. All downloads are provided under the terms and conditions of the <a href="/legal/epl/notice.php">Eclipse Foundation Software User Agreement</a> unless otherwise specified. </p> <div id='accordion'> - <h4><a href="#">3.7.3.RELEASE</a></h4> + <h4><a href="#">3.7.4.RELEASE</a></h4> + <div> + <ul> + <li><a href='release-notes/3.7.4.RELEASE.php' target='_self'>View Release Notes</a></li> + <li><strong>Virgo Server for Apache Tomcat</strong> - <a href='https://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.4.RELEASE/virgo-tomcat-server-3.7.4.RELEASE.zip' target='_self'>Download</a></li> + <li><strong>Virgo Jetty Server</strong> - <a href='https://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.4.RELEASE/virgo-jetty-server-3.7.4.RELEASE.zip' target='_self'>Download</a> </li> + <li><strong>Virgo Kernel</strong> - <a href='https://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.4.RELEASE/virgo-kernel-3.7.4.RELEASE.zip' target='_self'>Download</a></li> + <!-- <li><strong>Virgo Nano</strong> - <a href='https://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.4.RELEASE/virgo-nano-3.7.4.RELEASE.zip' target='_self'>Download</a></li> --> + <!-- <li><strong>Virgo Nano Full</strong> - <a href='https://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.4.RELEASE/virgo-nano-full-3.7.4.RELEASE.zip' target='_self'>Download</a></li> --> + </ul> + </div> + + <h4><a href="#">3.7.3.RELEASE</a></h4> <div> <ul> <li><a href='release-notes/3.7.3.RELEASE.php' target='_self'>View Release Notes</a></li>
diff --git a/download/release-notes/3.7.4.RELEASE.php b/download/release-notes/3.7.4.RELEASE.php new file mode 100644 index 0000000..dcff912 --- /dev/null +++ b/download/release-notes/3.7.4.RELEASE.php
@@ -0,0 +1,48 @@ +<?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) 2020 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: Florian Waibel + * + *******************************************************************************/ + + # Begin: page-specific settings. Change these. + $pageTitle = "Virgo - Release Notes"; + $pageKeywords = "Eclipse, EclipseRT, Virgo, OSGi, Downloads"; + $pageAuthor = "Florian Waibel"; + + ob_start(); +?> + +<div id="midcolumn"> + <h3>3.7.4.RELEASE - Release Notes</h3> + <p> + This release updates the version of Apache Tomcat, and fixes <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=563105">Bug 563105</a>. + </p> + + <h4>Version Upgrades</h4> + <ul> + <li>Apache Tomcat is upgraded to 8.5.56</li> + <li>Gemini Web is upgraded to 3.0.6</li> + </ul> + <p>Take <a href='../../download/index.php' target='_self'>Virgo</a> for a spin.</p> + +</div> + +<? + $html = ob_get_clean(); + # Generate the web page + $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); +?>