blob: 38cd37e5eacdb3c8c38ae568b689f469963a1e86 [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'
#
# Begin: page-specific settings. Change these.
$pageTitle = "e4 Project";
$pageKeywords = "Eclipse, e4";
$pageAuthor = "e4 team";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
# End: page-specific settings
# Paste your HTML content between the markers!
ob_start();
?>
<div id="midcolumn">
<h1><?= $pageTitle ?></h1>
<div class="homeitem3col">
<h3>About e4</h3>
e4 is an incubator project for community exploration of future
technologies for the Eclipse Platform.
<p>
Originally this project was
used for the development of the underlying engine of the Eclipse 4
platform which concluded with the release of Eclipse 4.
</p>
<p>
After this the project incubated the new E4 Rich Client Tooling
used to visually create the Application Model. This project also
graduated and is now part of Eclipse Platform.
</p>
<p>
You can find the E4 tooling in the
<a href="http://download.eclipse.org/releases/mars">Release Train repository</a>.
The projects that are currently cooking are:
</p>
<h4>Eclipse Spies</h4>
Spies are tools that enable you to look inside the Eclipse engine while it is running.
Invaluable for RCP Developers;
<br/>
<h4>Eclipse Smart Project Importer Framework</h4>
Tooling to ease the import of projects into the Eclipse Workspace.</li>
For more details, see the project
<a href="/projects/project_summary.php?projectid=eclipse.e4">about page</a>.
</p>
</div>
<div class="homeitem3col">
<h3>Eclipse Spies</h3>
E4 spies is a set of tools to help in developing application using Eclipse 4.
These tools are very helpful when creating a "pure E4" project
the spies makes the development of "pure e4" applications easier
and helps to understand the underlying E4 concepts like "application model",
"events" and "CSS Styling".
<h4><a href="http://download.eclipse.org/e4/downloads/">Downloads</a></h4>
Download the latest and the greatest snapshot.
<h4><a href="https://www.youtube.com/watch?v=CcClGXmZPcI">EclipseCon Talk by Olivier Proovost</a></h4>
<h3>Smart Project importer Framework</h3>
<h4>Project wiki.</a></h4>
Release plans and other information about this project.
<p>
Currently, when importing a project, users are facing the difficult choices
of what project they are importing and how to import it. The various
technologies involved in a project can easily be detected by some automated
check, such as presence of specific files, some content in a file or files with
a specific extension. The purpose of the framework is to use such interesting data
to automatically detect the nature of the project and automatically configure it at
best, with very minimal effort from the user.
</p>
</div>
</div>
<div id="rightcolumn">
<div class="sideitem">
<br/><br/><br/><br/>
<h5>Eclipse Model Spies</h5>
Want to take a look under the covers? Download the latest snapshot!
<br/><br/>
<a href="http://download.eclipse.org/e4/snapshots/org.eclipse.e4.tools/">Eclipse Spies Repository</a>
<br/><br/>
<h5>Smart Import Framework</h5>
The Smart Project Import Framework is the latest experiment cooking in our e4 labs.
<br/><br/>
<a href="http://download.eclipse.org/e4/snapshots/org.eclipse.e4.ui/">Eclipse E4 UI Repository</a>
<br/><br/>
<h5>Eclipse Model tooling (Graduated!)</h5>
Several e4 components graduated into the Eclipse Platform project to
produce the <a href="http://www.eclipse.org/eclipse4">Eclipse 4</a> stream of releases.
<br/><br/>
<h5>We build with Hudson</h5>
<a href="http://hudson.eclipse.org/e4">Eclipse 4 Hudson Build Server</a>
</div>
</div>
<?= $rightcolumn ?>
<?php
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>