blob: 5ed154029f113ada3bd5acf44492c62a5334ae0b [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 Downloads";
$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/gef/style.css"/>');
$html = <<<EOHTML
<div id="midcolumn">
<h2>$pageTitle</h2>
<p>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>
<h3>Installation via Eclipse Update Manager</h3>
<p>You may most easily install GEF using the Eclipse Update Manager and point it to one of the <a href="/gef/updates/index.php">Update-Sites</a>.</p>
<h3>Downloadable (runnable-form) update-site and SDK archives</h3>
<p>
While the GEF4 components are (currently) only available via our (online) <a href="/gef/updates/index.php">update-sites</a>, for Draw2d, GEF (MVC), and Zest you may still download an update-site or SDK archive from <a href="/gef/downloads/index.php">(Runnable-Form) Update-Site & SDK Archives</a>.
</p>
<p>
Please note that we will discontinue support for SDK archives after Mars SR1. We will then only provide zipped p2 repositories for GEF and GEF4 (see <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=470240">bug #470240</a> for details).
</p>
<h3>Translations</h3>
<p>
Translations packages can be downloaded from the <a href="http://www.eclipse.org/babel/downloads.php">Babel project downloads page</a> (from GEF 3.4 onwards). Older translation packages (for GEF 3.0 - 3.2) can still be found <a href="translations/translation.html">here</a>
</p>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>