blob: 9e9814fe080bb0ba74a63309f9b2b06436fb727d [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2010 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:
*
*******************************************************************************/
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());
$localVersion = false;
$pageTitle = "GEF";
$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/gef/style.css"/>');
// # Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="bigbuttons">
<h3>Primary Links</h3>
<ul>
<li><a id="buttonDownload" href="/gef/downloads.php" title="Download">
Update-Sites, P2 Repositories & SDK Dropins</a></li>
<li><a id="buttonDocumentation" href="documentation.php" title="Documentation">
New and Noteworthy, Reference Documentation, Articles, Tutorials, Slides, Examples</a></li>
<li><a id="buttonSupport" href="support.php" title="Support">
FAQ, Troubleshooring Guide, Community Forum, Report a Bug</a></li>
<li><a id="buttonInvolved" href="getting_involved.php" title="Getting Involved">
Contribution Guide, Contributors Mailing List, CVS Online Repository, Open Bugs & Enhancements</a></li>
</ul>
</div>
<div id="midcolumn">
<h3>GEF (Graphical Editing Framework)</h3>
<div id="introText">
<p>
The Graphical Editing Framework (GEF) provides technology to create rich graphical editors and views. It is currently developed in two streams, namely:
<ul>
<li>Development of the next generation production components in terms of <a href="https://wiki.eclipse.org/GEF/GEF4">GEF4</a>.</li>
<img class="displayed" width="450" src="/gef/images/GEF4_MVC_FX_UI_Example.png" alt="GEF4 MVC.FX.UI Example" border="0"/>
<li>Maintenance of the currently available production components <a href="/gef/draw2d/index.php">Draw2d 3.x</a>, <a href="/gef/gef_mvc/index.php">GEF (MVC) 3.x</a>, and <a href="/gef/zest/index.php">Zest 1.x</a>.</li>
<img class="displayed" width="450" src="/gef/images/Logic_Example.png" alt="GEF 3.x Logic Example" border="0"/>
</ul>
</p>
</div>
</div>
<div id="rightcolumn">
<div>
<h3>Current Status</h3>
<p>
The original project components Draw2d 3.x, GEF (MVC) 3.x, and Zest 1.x are still maintained but will not be developed further.
Our main development effort is currently spent on building up the next generation components in terms of <a href="http://wiki.eclipse.org/GEF/GEF4">GEF4</a>.
</p>
<p>
GEF is participating in the annual <a href="http://wiki.eclipse.org/Simultaneous_Release">Eclipse Simultaneous Release</a>.
</p>
<p>
For Kepler SR2, we will NOT contribute a dedicated release, but stick to GEF 3.9.1, which includes Draw2d 3.9.1, GEF (MVC) 3.9.1, and Zest 1.5.1.
</p>
<p>
For Luna we will contribute a GEF 3.9.100 service release, which will include Draw2d 3.9.100, GEF (MVC) 3.9.100, and Zest 1.5.100.
</p>
<p>
For Mars, we are planning to provide a release which delivers service revisions of the original components (i.e. Draw2d 3.9.200, GEF (MVC) 3.9.200, and Zest 1.5.200) as well as a first release (with yet provisional API) of the newly developed GEF4 replacement components.
</p>
</div>
<div id="headlines">
<h3>Release 3.9.1 Available</h3>
<p><i>September 27, 2013 -</i> Release 3.9.1 is available as part of the Kepler SR1 simultaneous release. Follow the <a href="/gef/downloads.php">Download</a> link to obtain it. For further information about included features or bug fixes, please refer to the
<a href="http://wiki.eclipse.org/GEF/New_and_Noteworthy/3.9">New and Noteworthy (3.9)</a> page.
</p>
<p>
IMPORTANT: While the <a href="http://download.eclipse.org/tools/gef/updates/releases/">GEF releases update-site</a> contains the correct 3.8.1 and 3.8.2 Juno release versions, the Juno <a href="http://download.eclipse.org/releases/juno/">simultaneous release update-site</a> by mistake contains 3.9.0M1 and 3.9.0M5 milestone versions instead (see bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=401477">#401477</a> for details).
</p>
<div>
<h3>Wiki</h3>
<p>
While the bulk of information about the GEF project can be found here, you may also consider the <a href="http://wiki.eclipse.org/GEF">GEF Wiki</a> as a source for further information.
</p>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>