blob: d0428466cf94fd1cd12faf01f14701e0a79ec8e1 [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'
/*******************************************************************************
* Copyright (c) 2010
* 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:
*
*******************************************************************************/
$pageTitle = "GEF Update-Sites";
$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/gef/style.css"/>');
$html = <<<EOHTML
<div id="midcolumn">
<h2>$pageTitle</h2>
<p>Using the Eclipse Update Manager (see <a href="http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.user/tasks/tasks-129.htm">Eclipse Help</a> for detailed instructions), all GEF and GEF4 components can be installed from the update sites listed on our <a href="https://projects.eclipse.org/projects/tools.gef/downloads">dashboard</a>.</p>
<p>
Please note that when changing our build infrastructure to a new Tycho/Hudson based one (see <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=363394">Bug 363394</a> for details), the old-style updates sites have been cleaned (the releases site was re-created), but can still be accessed at the following locations:
<ul>
<li>Releases (old): <a href="http://download.eclipse.org/tools/gef/updates-pre-3_8/releases/">http://download.eclipse.org/tools/gef/updates-pre-3_8/releases/</a></li>
<li>Milestones (old): <a href="http://download.eclipse.org/tools/gef/updates-pre-3_8/milestones/">http://download.eclipse.org/tools/gef/updates-pre-3_8/milestones/</a></li>
<li>Integration and Maintenance (old): <a href="http://download.eclipse.org/tools/gef/updates-pre-3_8/interim/">http://download.eclipse.org/tools/gef/updates-pre-3_8/interim/</a></li>
</ul>
</p>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>