Confirmed users
21
edits
Atuljangra (talk | contribs) |
Atuljangra (talk | contribs) |
||
| Line 1: | Line 1: | ||
Mozilla community members - submit proposals here for 2013 Google Summer of Code projects with Mozilla. (If this page looks empty, it's because accepted ideas have already been transferred to the | <p>Mozilla community members - submit proposals here for 2013 Google Summer of Code projects with Mozilla. (If this page looks empty, it's because accepted ideas have already been transferred to the <a href="Community:SummerOfCode13">official list</a>.) | ||
</p><p><b>Are you a students looking to apply to SoC with Mozilla?</b> Your first stop should be the <a href="Community:SummerOfCode13">official list of ideas</a>. This page is full of weird and whacky ideas, some of which are still on here for a reason - it could be that they are not properly defined, the wrong size, or don't have a mentor. That makes them less likely to get accepted. You <i>can</i>, of course, also submit your own ideas - you don't have to put an idea on this page and get it 'made official' in order to send in a proposal for it. | |||
</p> | |||
<h2>How To Write A Good Project Proposal</h2> | |||
<p>Before adding an proposal to this list, please consider the following: | |||
</p> | |||
<ul><li> <b>Be specific</b>. It's hard to understand the impact of, or the size of, vague proposals. | |||
</li><li> <b>Consider size</b>. The student has eight weeks to design, code, test and document the proposal. It needs to fill, but not overfill, that time. | |||
</li><li> <b>Do your research</b>. Support the idea with well-researched links. | |||
</li><li> <b>Don't morph other people's ideas</b>. If you have a related idea, place it next to the existing one, or add a comment. | |||
</li><li> <b>Insert only your own name into the Mentor column</b>, and then only if you are willing to take on the responsibility. If you think the SoC admins won't know who you are, leave contact details. | |||
</li><li> <b>Check back regularly</b>. The administrators may have questions about your idea that you will need to answer. | |||
</li><li> <b>Know when to give up</b>. If you've added the same idea for the last three years and it hasn't made it to the official page, perhaps you can predict what will happen this time. | |||
</li></ul> | |||
<h2>Suggestion List</h2> | |||
<p><a href="SummerOfCode">Here are the ideas lists from previous years</a>. | |||
</p><p>Proposals can be in almost any part of the Mozilla project - don't be fooled by the "Code" in "Summer of Code". If there is no category below for your part of Mozilla, add one! | |||
</p> | |||
<h2> Mozilla Platform (Gecko) </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
< | <tr> | ||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Firefox </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
== | <tr> | ||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Firefox for Android </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr> | |||
</table> | |||
<h2> Firefox OS / Boot2Gecko </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Calendar </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
== | <tr> | ||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Thunderbird </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr> | |||
<tr> | |||
<td> Tests | |||
</td> | |||
<td> Write tests for Thunderbird features where they are missing. We also have some contributors writing patches that were rejected because the contributor was not up to speed to produce a test for the feature (much harder than just producing the feature/fix). If the student picks up (helps with) these patches/contributors and produces the patches, it would help us. | |||
</td> | |||
<td> Javascript required. Experience with mozmill or xpcshell test infrastructure an advantage. | |||
</td> | |||
<td> aceman | |||
</td> | |||
<td> ?mconley? | |||
</td></tr> | |||
<tr> | |||
<td> Utilize capability attributes of nsIMsgIncomingServer and nsIMsgFolder | |||
</td> | |||
<td> Remove hard-coded checks through-out the comm-central codebase where a simple check of the server (nsIMsgIncomingServer) capability can be used. | |||
<p>Example: | |||
</p> | |||
<dl><dd> if (server.type == "nntp" || server.type == "rss") { enableSubscribe(); } | |||
</dd></dl> | |||
<p>Change to: | |||
</p> | |||
<dl><dd> if (server.canSubscribe) { enableSubscribe(); } | |||
</dd></dl> | |||
<p>For this to work, the student has to see if the server types return the proper value for the capability (some may be unimplemented yet) and may have to add some new attributes where needed. | |||
Example: | |||
Change to: | |||
For this to work, the student has to see if the server types return the proper value for the capability (some may be unimplemented yet) and may have to add some new attributes where needed. | |||
Hard-coded checks are bad because they do not pick up new server types automatically even if they would have the capability. Extension authors have a hard time plugging into these hard-coded spots. Often they have to duplicate the whole function from TB to add their new server type to it. | Hard-coded checks are bad because they do not pick up new server types automatically even if they would have the capability. Extension authors have a hard time plugging into these hard-coded spots. Often they have to duplicate the whole function from TB to add their new server type to it. | ||
The same can be done with folders, i.e. nsIMsgFolder. | The same can be done with folders, i.e. nsIMsgFolder. | ||
</p><p>Starting point: <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=63369">bug 63369</a>. | |||
Starting point: | </p> | ||
</td> | |||
<td> C++, Javascript | |||
</td> | |||
<td> aceman | |||
</td> | |||
<td> ?jcranmer?, ?rkent? | |||
</td></tr> | |||
<tr> | |||
<td> Rewrite our database code to be asynchronous when database if huge. | |||
</td> | |||
<td> This would help us in improving the start-up time of Thunderbird. Main idea is splitting the database in chunks and then loading it, if the database is quie big. I guess related bug would be: Bug 588952 | |||
<p><br /> | |||
</p> | |||
</td> | |||
<td> C++ mainly | |||
</td> | |||
<td> atuljangra | |||
</td> | |||
<td> ?anyone? | |||
</td></tr> | |||
} | } | ||
<h2> SeaMonkey </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2>NSS (Network Security Services)</h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Bugzilla </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
== | <tr> | ||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Firefox Support (SUMO) </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> QA </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
= | <tr> | ||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Documentation </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Mozilla IT and Infrastructure </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
== | <tr> | ||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Persona / BrowserID </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Sync / Services </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
== | <tr> | ||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Developer Tools </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Add-on SDK </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
== | <tr> | ||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Foundation </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Release Engineering </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
== | <tr> | ||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Instantbird </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Emscripten </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
<h2> Security Engineering </h2> | |||
<table class="standard-table" border="1" style="border-collapse: collapse"> | |||
<tr> | |||
<th> Title | |||
</th> | |||
<th> Details | |||
</th> | |||
<th> Skills Needed | |||
</th> | |||
<th> Reporter | |||
</th> | |||
<th> Mentor(s) | |||
</th> | |||
<th> Comments | |||
</th></tr></table> | |||
</table> | |||