Differences between revisions 21 and 22
Revision 21 as of 2016-02-16 06:26:17
Size: 8648
Editor: Mathiasdm
Comment: Start cleaning up and further extending project ideas
Revision 22 as of 2016-02-16 06:26:56
Size: 8658
Editor: Mathiasdm
Comment: Fix project properties
Deletions are marked like this. Additions are marked like this.
Line 70: Line 70:
==== Project properties ==== Project properties ====
Line 98: Line 98:
==== Project properties ==== Project properties ====

GSoC Student Guidance and Project Ideas for 2016

/!\ Please see also our SummerOfCode/2016 page, which contains additional information for GSoC for this year.

1. About Mercurial

  • What is Mercurial? Mercurial is a free, distributed source control management tool. It efficiently handles projects of any size and offers an easy and intuitive interface.

  • Why is it interesting? Besides the extremely good reasons just above, Mercurial is also interesting for many other reasons, including: a great extension system, excellent backwards compatibility, excellent documentation, ... Specifically for students, it's interesting because it offers a range of topics to work on from low-level speed optimizations all the way up to a web interface.

  • Who uses it? Mercurial is used by individuals, organizations and companies all over the world. The same goes for contributors: in the open source community, a well-known organization using Mercurial is the Mozilla project, but companies like Facebook, Google and many others also contribute to Mercurial.

  • What language is it written in? Mercurial is mostly written in Python. We rewrite some parts that are very performance-sensitive in C.

2. Contacting the Mercurial developers

The following channels are used by default for communication. Please use them to introduce yourself!

  • IRC: many developers chat and discuss planned changes to Mercurial here. Keep in mind that most developers are in US timezones, so it might take quite a bit of time (hours) to get a response outside of those timezones!
  • The developer mailing list: this list is mostly used to submit patches and discuss them.

3. Getting started/Candidate checklist

All candidates should do the following before completing their application:

  1. Check the SummerOfCode/Ideas2016 page

  2. Subscribe to this page to get email when it changes

  3. Introduce yourself on IRC

  4. Introduce yourself on the mailing list

  5. Read the ContributingChanges pages.

  6. Look at the easy bugs list and contribute a patch. Feel free to ask questions on IRC or the mailing list while getting started!

4. Things we look for in a candidate

  • Demonstrates understanding of our tools, procedures, and source code by successfully submitting patches (see last step above)
  • Participates in the community, especially via IRC
  • Makes a commitment to work on GSoC full-time
  • Gives an indication that she or he enjoys working with Mercurial enough to become a long-term contributor, after GSoC is over.

5. GSoC ideas

Here are some ideas of possible 2016 summer project ideas for Mercurial. Your own ideas are welcome. You may decide to work on these ideas or use them as a starting point for your own.

5.1. Example Project

  • Project description: This is an example project. Please add a clear description with some details about the idea.

  • Skills: Specific programming languages, domain-specific knowledge... For example: Python, network programming

  • Difficulty level: Easy/Intermediate/Difficult

  • Related reading/Links: Useful links to wiki pages, specific relevant mailing list discussions or patches, ...

  • Further details: Additional detail about the idea

  • Point of Contact: Who wrote this proposal and could answer question about it.

  • Potential mentors: mentors likely to be involved with this project

5.2. Moving toward Python3

5.2.1. Project description

Mercurial currently only supports Python 2. We'd like to improve Python3 support, but that will require a lot of work. A large amount of the work is relatively simple. Some of the first tasks needed will be:

  • Fixing the warnings in the Python3 compatibility test (test-check-py3-compat.t).

  • Fix imports to use absolute_import across the code base. Some examples of this work are available.

  • Some of our modules don't yet parse in Python3. This needs to be fixed as well.
  • We currently use 2to3 to compile to Python3 bytecode. Rather than using this, we should unify our codebase to work in Python2 and Python3.

  • Some Python modules have different names or different properties in Python3. A compatibility layer (or conditional imports) will be necessary to handle these changes.

Further (also more difficult) tasks are listed on the Python3 page, but the above will most likely take up quite a bit of time already.

5.2.2. Project properties

  • Skills: Python

  • Difficulty level: Easy

  • Related reading/Links: Python3

  • Further details: See Python3.

  • Point of Contact: Greg Szorc, Augie Fackler

  • Potential mentors: ?

5.3. Modernize hgweb's graph rendering

5.3.1. Project description

Current graph rendering code in hgweb is pretty clunky and not very extensible or efficient. We could update it to use hgweb's own JSON API, to be faster and smarter, to show more things and to look nicer. You can view an example of the current hgweb interface. This task can vary a lot depending on your own preferences, as you can do quite a few different subtasks.

  • Think up a good (extensible, self-descriptive) format for graph data to put into JSON and implement it server-side
  • Update client-side code to use JSON for initial rendering and rendering on scroll-down ("infinite scroll")
  • Make client-side code to render graph in chunks (will help with performance after a number of infinite-scrolls and will solve issue4020)
  • Maybe use SVG instead of <canvas>

  • Add (non-public) phases to commits in graph (next to branches, tags and bookmarks)
  • Display special (e.g. branch-closing) commits in a different way
  • Display special edges, such as source-destination of a graft
  • Add an ability to see obsoleted changesets (including obsolescence edge)
  • Show faded-out edge(s) from the nodes on the top of the screen if they have children (e.g. when tip is not the topmost graph node), this is already done for nodes with parents at the screen bottom

More ideas and visual decisions could be borrowed from TortoiseHg, BitBucket and Kiln.

5.3.2. Project properties

5.4. Implement templating for more commands

  • Project description: Implement templates for all commands that output information.

    • hg log famously has a flexible templating language. All commands that output information should leverage this to provide fully customizable output, from bookmarks to blame.
  • Skills: Python

  • Difficulty level: Moderate (?)

  • Related reading/Links:

  • Further details:

  • Point of Contact:

  • Potential mentors:

5.5. Allow largefiles to be at a different location

  • Project description: Allow largefiles to be at a different location.

    • Currently, largefiles must be stored in the same location as the main hosting server. The goal of this project would be to 1) allow the user to change the location (to say, a central file server for a team) and 2) all the server to send a url (with an authentication token) to the client that would tell the client where to push the largefile.
  • Skills: Python

  • Difficulty level: Moderate (?)

  • Related reading/Links:

  • Further details:

  • Point of Contact:

  • Potential mentors: Sean Farley

6. Other ideas?

Come talk to us on IRC.


CategoryGsoc

SummerOfCode/Ideas2016 (last edited 2017-01-20 04:06:31 by timeless)