blob: 9244e97bb03d0b2b64ad9a7262fa34f0b185995c [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'
#*****************************************************************************
#
# index.php (/contribute)
#
# Author: Nathan Gervais
# Date: 2010-01-29
#
# Description: Contribute Landing Page
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Contribute to Eclipse";
$pageKeywords = "eclipse contribute, how can i help, contributing to eclipse";
$pageAuthor = "Nathan Gervais";
# End: page-specific settings
#
$root = $_SERVER['DOCUMENT_ROOT'];
ob_start();
?>
<script type="text/javascript" src="functions.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<div id="widecontainer">
<div id="contentContainer">
<p class="intro">So you want to help? Great! You don't have to be an Eclipse guru or code monkey to help. There are many ways to participate in the Eclipse community. </p>
<h2>Report Bugs and Enhancements</h2>
<ul>
<li>Download one of the latest <a href="/downloads/?tab=developer">Eclipse Package Milestone Builds</a>. Take it for a test drive before the final release and <a href="http://bugs.eclipse.org/bugs/enter_bug.cgi">report any bugs</a> you find.</li>
<li><a href="http://bugs.eclipse.org/bugs/enter_bug.cgi">Report Enhancements</a>: Got an idea for a killer feature? Or maybe something you use often could use some tweaking? Post an enhancement request!</li>
</ul>
<h2>Fix Bugs or Implement Enhancements</h2>
<ul>
<li><a href="http://bugs.eclipse.org/bugs/query.cgi">Is there some bug</a> that really bothers you? Instead of just reporting it, fix it. And there are <a href="http://bugs.eclipse.org/bugs/buglist.cgi?keywords=helpwanted&resolution=---">many bugs marked with helpwanted</a>.
<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;To learn how the bug-fixing process works, check out the <a href="http://wiki.eclipse.org/Bug_Reporting_FAQ">bug reporting FAQ</a>:
<br/>&nbsp;&nbsp;&nbsp;&nbsp;To learn about the lifecycle of bugzilla entries, check out the <a href="http://wiki.eclipse.org/Development_Resources/HOWTO/Bugzilla_Use">development process</a></li>
<li><a href="http://wiki.eclipse.org/Google_Summer_of_Code">Google Summer of Code</a>: Participate and get paid for coding! </li>
</ul>
<h2>Become a Committer</h2>
<ul>
<li>Start a <a href='http://wiki.eclipse.org/Development_Resources/HOWTO/Starting_A_New_Project'>new project</a> or become a committer on an <a href="/projects/listofprojects.php">existing project</a></li>
</ul>
<h2>Promote Eclipse Technologies</h2>
<ul>
<li>Teach with Eclipse. Check out our <a href="/university-outreach/">University Outreach</a> program.</li>
<li>Let other people know that your application is <a href="/artwork">Built on Eclipse or Eclipse Ready</a></li>
<li>Do you or your company have a success story about Eclipse? Send us a <a href="/community/news/eclipseinthenews.php">story</a> and we'll help you spread the word</li>
<li>Follow the Eclipse community on <a href="http://wiki.eclipse.org/Twitter">Twitter</a></li>
</ul>
<h2>Share Your Knowledge</h2>
<ul>
<li>Help other users on the <a href="/forums/">forums</a> or on <a href="http://wiki.eclipse.org/IRC">IRC</a></li>
<li>Share your Eclipse <a href="/resources/">article</a>, <a href="http://planet.eclipse.org/planet/">blog</a> or <a href="http://live.eclipse.org/">multi-media presentation</a>.</li>
<li>Contribute your knowledge to the <a href="http://wiki.eclipse.org">Eclipse Wiki</a></li>
<li>Localization: Help <a href="http://babel.eclipse.org/">translate Eclipse</a> into other languages </li>
</ul>
<h2>Donate</h2>
<ul>
<li>Individuals: Make a donation and become a <a href="/donate/">Friend of Eclipse</a></li>
<li>Companies and Organizations: <a href="/membership/become_a_member/">Become a Member</a></li>
</ul>
</div>
</div>
<?
$html = ob_get_clean();
$html = mb_convert_encoding($html, "HTML-ENTITIES", "auto");
# Generate the web page
$App->Promotion = TRUE;
$App->generatePage("Nova", $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>