blob: 78aa9c9bcd91b644a5906b4f04cceb1c66a97a2e [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 Getting Involved";
$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/gef/style.css"/>');
$html = <<<EOHTML
<div id="midcolumn">
<h2>$pageTitle</h2>
<p>As every Eclipse project, GEF is strongly dependent on active support by its community.
You may become part of that community and get involved by reporting bugs or enhancement request,
by contributing patches, by participation in disscussions on the mailing list, or by supporting the maintaining of the GEF wiki.</p>
<h3>Contributor Guide</h3>
<p>If you want to set up your workspace and contribute to GEF (e.g. by providing a patch to a known bug), please refer to the <a href="http://wiki.eclipse.org/GEF_Contributor_Guide">Contributor Guide</a> for further details on how to set-up your workspace.</p>
<h3>Contributor Mailing List</h3>
<p>Technical or organizational discussions (no help wanted questions) around the GEF project take place at the <a href="http://dev.eclipse.org/mailman/listinfo/gef-dev">GEF Developer Mailing List</a>.
It is intended for use by developers actually working on or otherwise contributing to day-to-day development of the GEF project itself. Older discussions can be found in the <a href="http://dev.eclipse.org/mhonarc/lists/gef-dev/maillist.html">Mailing List Archive</a>.</p>
<h3>CVS</h3>
<p>All GEF sources are located in the Tools cvs repository. You may browse them online via the <a href="http://dev.eclipse.org/viewcvs/viewvc.cgi/org.eclipse.gef/?root=Tools_Project">CVS Online Repository</a> or check them into your local workspace as described
in the <a href="http://wiki.eclipse.org/GEF_Contributor_Guide">Contributor Guide</a>.</p>
<h3>Bugzilla</h3>
<p>You may search the Bugzilla for <a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=GEF&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&order=Reuse+same+sort+as+last+time">Open Bugs and Enhancement Requests</a>.
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>