blob: 1c5b9ae42dbf1cf9bedffe164606e53bc242ae0b [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'
$pageTitle = "Ganymede Simultaneous Release";
include( '_commonLeftNav.php' );
ob_start();
?>
<style type="text/css">
h2 {
border-bottom: solid
}
h3 {
border-bottom: thin dotted
}
</style>
<div id="maincontent">
<div id="midcolumn">
<h1><?= $pageTitle ?></h1>
<h2>Goal</h2>
<p>The goal of the Ganymede Simultaneous Release is currently the same as
<a href="europa.php">last year's goal for Europa</a>: to release N major Eclipse
projects at the same time. We are doing this simultaneous release to support
the needs of the ecosystem
members who integrate Eclipse frameworks into their own software and products.
While those product producers naturally accept the ultimate responsibility for their
customers' experiences, Ganymede's goal is to eliminate uncertainity about
project version numbers, and thus to allow ecosystem members to start their
own integration, cross-project, and cross-product testing efforts earlier.
Ganymede is about improving the productivity of
the developers working on top of Eclipse frameworks by providing a more
transparent and predictable development cycle; Ganymede is about developers
helping developers serve the whole Eclipse community.</p>
<p><em>While Ganymede is about the simultaneous release of N projects, it is
not a unification of the projects - each project remains a
separate open source project operating with its own project leadership,
its own committers, and its own project plan.</em></p>
<h2>Consumers and Early Adopters</h2>
<p>Please see <a href="http://wiki.eclipse.org/index.php/Ganymede_Simultaneous_Release_For_Users">the wiki pages
for consumers and early adopters</a>.
<h2>Project Teams and Release Engineers</h2>
<p>Please see <a href="http://wiki.eclipse.org/index.php/Ganymede_Simultaneous_Release">the wiki pages
for project teams</a>.
<p>The "PMC" for the Ganymede Simultaneous Release is the
<a href="/org/foundation/council.php">Planning Council</a>.
</div></div>
<?php
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>