Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 5.65 KB

CONTRIBUTING.md

File metadata and controls

41 lines (34 loc) · 5.65 KB

If you'd like to contribute, it's best to follow established GitHub practices by

  1. forking the repository
  2. picking an issue to work on
  3. posting a little comment expressing your intent to make sure nobody else is already working on it
  4. hacking the code, and when ready
  5. pushing to your forked repo, and filing a pull request.

You're also welcome to join our Gourmet team on Launchpad and particularly to subscribe to our mailing list there. We'd kindly ask you to stick to a one issue = one commit = one pull request policy whenever possible, with an expressive commit message mentioning the issue it's supposed to fix on the last line (like so: "Fixes #123."). (That way, the corresponding issue gets closed automatically when merging the commit.)

Our introductory material to the source code is currently rather sparse, but you still might want to check out the Development wiki article and CODING.md file for starters.

To get started, why not check out our list of list of bugs tagged 'easy'?

Currently, our most pressing issues are:

  • Windows Printing.
  • Release a mac version.
  • Code cleanup.
  • This includes using SQLAlchemy's ORM, which is an ongoing effort in the develop branch, and scheduled for release woth version 0.18.0.
  • Parts of Gourmet's source code are about ten years old, and technologies have evolved since development started. Hence, there are some things that were implemented differently back then and could be greatly simplified by using modern technologies available in the present-day versions of the toolkits used by Gourmet (such as Gtk components as in gourmet/gtk_extras/dialog_extras.py, database backends, etc).
  • Also, there are still large portions of commented-out code where something already got replaced by something else,
  • or python modules that aren't actually imported anywhere else anymore (example: 3daaba2db).
  • Remove old logo images, file duplicates, obsolete plugins, etc.
  • Clean up files names which currently are a mixture of camelCaps and under_scores, plus some rather obscure abbreviations.
  • Use pyflakes, pylint or pychecker etc. to detect unnecessary imports etc. I find it very useful to use e.g. the Eclipse IDE with PyDev which features inline pylint checks!
  • Stick to PEP 8 conventions, e.g. by running autopep8 on existing code.
  • Use CloneDigger to find duplicate code and remove redundancies.
  • Write tests. Being the recognized cure for regressions, we could really use some automated testing. There seem to be have been some related efforts spread across the code, but the goal should really be tests that cover pretty much all functionality, and that are run regularly (particularly before releasing) to check if anything is broken (see the TESTS file). We should use some standard Python (and PyGTK) unit test framework to implement this.
    • One of the main issues with the current code is that a lot of it is very intertwined (circular imports, lots of classes constructed with the entired recipe database as an argument, etc). I've tried to implement a couple of unit tests to test single features (which, as the name says, are supposed to act on "units of work") -- e.g. some website importers. That's currently not easy at all, as I need to initialize and pass either a dummy database, or replace some classes they would normally depend on with dummy classes. So we need more "atomic" classes before being able to write proper tests.
  • We could also use some more documentation, both for users and for developers (i.e. by adding comments to the source code).
  • We'd like to turn our current web page into an actual web site. To work on the web site, just fork our repo and check out the gh-pages branch.
  • It should retain most of the current visual elements (icon, color scheme, Lobster font)
  • but use Jekyll (or maybe the Octopress framwork for Jekyll; and maybe Disqus for comments) to provide a news blog into which we'll then feed our old news items back from sourceforge times, and that we're going to use for future announcements (e.g. for releases).
  • What about a download with e.g. a Download for Ubuntu button?
  • A "Star on GitHub" button (like http://docs.python-requests.org/en/latest/ has) would be nice.
  • Some way to donate would be also nice (PayPal, gittip.com, Flattr,...?)
  • Bug triaging. We have about 200 open issues, and some of them are a couple of years old and have already been fixed. Some help in tagging, commenting, and ideally closing bugs is very welcome! (Note that to close a bug, you should really be sure it's okay to do so because you have tested Gourmet to work under the same conditions the bug reporter did.)

Make sure to also check out our upcoming milestones.

More nifty ideas can be found via the gsoc-idea label.