blob: a9de9d3dcc1bf84e9ddf93cfcbbe5afffd63dcb3 [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 for the Eclipse Workbench UI. It bundles three components:
<ul>
<li><a href="/gef/draw2d/index.php">Draw2d</a> (org.eclipse.draw2d) - A layout and rendering toolkit for displaying graphics on an SWT Canvas.</li>
<li><a href="/gef/gef_mvc/index.php">GEF (MVC)</a> (org.eclipse.gef) - An interactive model-view-controler (MVC) framework, which fosters the implementation of SWT-based tree and Draw2d-based graphical editors for the Eclipse Workbench UI.</li>
<li><a href="/gef/zest/index.php">Zest</a> (org.eclipse.zest) - A visualization toolkit based on Draw2d, which enables implementation of graphical views for the Eclipse Workbench UI.</li>
</ul>
<img class="displayed" width="450" src="/gef/images/Logic_Example.png" alt="GEF Snapshots" border="0"/>
</p>
</div>
</div>
<div id="rightcolumn">
<div>
<h3>Current Status</h3>
<p>GEF is participating in the annual <a href="http://wiki.eclipse.org/Simultaneous_Release">Eclipse Simultaneous Release</a>.
Having completed GEF 3.6.2 as part of the Helios SR2 release, we are currently working on GEF 3.7.0, which will be available as part of the Indigo release in June 2011.</p>
</div>
<div id="headlines">
<h3>Milestone 3.7RC1 Available</h3>
<p><i>May 17, 2011-</i> Milestone 3.7RC1 is available as part of the Indigo simultaneous release.
Follow the <a href="/gef/downloads.php">Download</a> link to obtain it. For further information please refer to the
<a href="http://wiki.eclipse.org/GEF/New_and_Noteworthy/3.7">New and Noteworthy (3.7)</a> page.</p>
</div>
<h3>Release 3.6.2 Available</h3>
<p><i>February 25, 2011-</i> Release 3.6.2 is available as part of the Helios SR2 simultaneous release.
Follow the <a href="/gef/downloads.php">Download</a> link to obtain it. For further information please refer to the
<a href="http://wiki.eclipse.org/GEF/New_and_Noteworthy/3.6">New and Noteworthy (3.6)</a> page.</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.
<!--<a href="http://wiki.eclipse.org/GEF"><img width="200" src="/gef/images/gef_wiki.png" alt="GEF Wiki" title="GEF Wiki"></a>-->
</p>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>