How to become a MediaWiki hacker
Contents |
This article is written to help novice developers learn the skills needed to contribute to MediaWiki development.
If you are an experienced developer, visit the developer hub instead.
Overview
MediaWiki is the software that powers Wikipedia, its sister projects and thousands of wikis all over the world. It runs on most operating systems, is written in PHP, primarily uses the MySQL database server and uses jQuery as the client Javascript library. Development of MediaWiki is primarily supported by the Wikimedia Foundation, though volunteer community developers play a huge part as well.
This page should help you get started on the path to becoming a contributor to MediaWiki. It is not a tutorial; it just points you to various places where you can go learn whatever is necessary.
Prerequisites
PHP
MediaWiki is written in PHP, so you'll need to get familiar with PHP to hack MediaWiki's core.
- Learn PHP
-
- PHP tutorial — Available in many different languages. If you have no knowledge of PHP but know how to program in other object-oriented programming languages, PHP will be easy for you to learn.
- PHP Programming at Wikibooks.
- PHP resources
-
- The PHP manual — Available in many different languages.
- PHP coding conventions within the MediaWiki community.
- Stuff to know
-
- The script maintenance/eval.php in MediaWiki provides a basic PHP interpreter with MediaWiki objects and classes loaded.
Database
Many features require some amount of database manipulation, so you'll often need to be familiar with MySQL.
- Learn MySQL
-
- MySQL tutorial — From the MySQL 5.0 reference manual.
- MySQL at Wikibooks.
- MySQL resources
-
- MySQL Reference Manuals — Available in many different languages.
- Database coding conventions within the MediaWiki community.
- Stuff to know
-
- Test your code with MySQL.
- MediaWiki currently uses MySQL as the primary database back-end. It also supports other DBMSes, such as PostgreSQL and SQLite. However, almost all developers use MySQL and don't test other DBs, which consequently break on a regular basis. You're therefore advised to use MySQL when testing patches, unless you're specifically trying to improve support for another DB. In the latter case, make sure you're careful not to break MySQL (or write queries that are horribly inefficient in it), since that's what everybody else uses.
- Test your code with MySQL.
JavaScript and CSS
JavaScript and CSS have become omnipresent in front-end code. You don't have to be familiar with JavaScript, jQuery and CSS to work on MediaWiki, but you might need to, depending on what you choose to work on.
- Learn JavaScript and CSS
-
- JavaScript and CSS at Wikibooks.
- Getting Started with jQuery — A jQuery tutorial.
- JavaScript and CSS resources
-
- JavaScript coding conventions within the MediaWiki community.
- CSS coding conventions within the MediaWiki community.
MediaWiki
The MediaWiki code base is large and ugly; don't be overwhelmed by it. When you're first starting off, aim to write features or fix bugs which are constrained to a small region of code.
- MediaWiki primers and must-reads
-
- MediaWiki architecture — A high-level overview of the main components of MediaWiki and how they work with each other.
- Security for developers — An overview of why and how to write secure code.
- MediaWiki resources
-
- Manual:Code — A list of important files and links to more detailed information.
- Coding conventions — An overview of general coding conventions within the MediaWiki community.
- Intro-to-MediaWiki workshop syllabus — Ways to hack MediaWiki, from user preferences to extensions and core.
- Complete documentation (warning: huge page) — Automatically generated documentation from the code and code comments.
- How to debug — A guide to debugging MediaWiki.
- eval.php — A tool to interact with MediaWiki objects live.
Set up your environment
- Installation requirements — Check hardware requirements, and install a LAMP, MAMP or WAMP server (Linux, Mac or Windows, plus Apache, MySQL and PHP).
- Download from Git — Download the latest source code from Git.
- Installation guide — Continue with the installation and initial configuration
- Set up the various debug modes in your environment to display warning and errors early.
It's not necessary to download Wikipedia database dumps in order to develop MediaWiki features. In fact, in many cases it's easier to use a near-empty database with a few specially-crafted test pages. However, if for some reason you want to have a copy of Wikipedia, you can get a dump.
Get started
The two main paths to get started with MediaWiki development are to fix an annoying little bug in the existing code, or to add a new feature, usually through a MediaWiki extension.
- MediaWiki extensions primers
-
- Developing extensions — How to write an extension for MediaWiki.
- Writing an extension for deployment — If you intend to have your extension deployed on Wikimedia sites (including possibly Wikipedia), additional scrutiny is warranted in terms of performance and security.
- Extension writing tutorial
- MediaWiki extensions resources
-
- List of simple extensions — A simple way to become more familiar with how extensions work.
- A brief introduction to MediaWiki extension development — A video presentation about how to create a MediaWiki extension (slides).
- Making a MediaWiki extension — Covers how to develop an extension for Mediawiki, best practices, and how to engage the Mediawiki community. From February 2011.
- Special page template — Add a special page to display some handy information.
- Extending wiki markup — Add a parser hook to modify the content of wikitext.
Submit your changes
There are two main avenues for submitting changes to MediaWiki. You can either submit patches through our bug tracking system, or you can get Developer access so you can submit changes to Gerrit, our code review tool. Getting developer access is easy.
Pushing for review through Gerrit
- Get developer access if you do not already have it (we usually respond to requests within 24 hours).
- Make your changes in a branch in Git (see Git/Workflow).
- Check your code against the pre-commit checklist. Don't skip this step; you'll be happy you didn't.
- Submit your change to Gerrit (see Git/Workflow).
- Post a link to your Gerrit changeset in the appropriate bug report in Bugzilla with
gerrit <changenumber>
, and mark it with thepatch
andpatch-need-review
keywords.- Feel free to ping the Bugmeister if you see that your patch hasn't been pushed for review. This can be a slower process than just pushing it yourself, but by doing it once or twice you demonstrate your good faith, and your ability to write reasonably stable code.
- Ask for your code to be reviewed, watch for email updates, and make requested changes.
Submit a patch to bugzilla
- Check your code changes against the pre-commit checklist. Don't skip this step; you'll be happy you didn't.
- Create a patch of your changes (you can use 'git diff' or 'svn diff' if you're making changes against the code repository; for help, take a look at OpenHatch's diff and patch training mission)
- Attach your patch to a corresponding bug in Bugzilla - if one does not exist, go ahead and create it
- Add the
patch
andpatch-need-review
keywords to the bug
Discuss and get help
MediaWiki has a very friendly, large and diverse community. There are multiple places to get help. If you already have an idea for a feature you want to implement, it's also a good idea to talk to a senior developer before you start, especially if you're not sure how your feature will affect other parts of the code.
- IRC — Specifically, the #mediawikiconnect channel. The MediaWiki developer community is distributed around the world, and there most likely is someone awake, no matter what your timezone is. Hop in and start talking.
- Mailing Lists — Since you are looking to be a developer, wikitech-l is where you should be at. You can also browse through the archives to get a feel of how the community operates.
See also
- "Learn how to hack MediaWiki" workshop
- Developer hub – When you've thoroughly read the information in this article, it's time to move on to the information in the developer hub.
- Other Wikimedia technical projects you can help with
- MediaWiki Virtual Library (MVL) books; this page forms also part of the MediaWiki Developers Guide.
Language: | English • Deutsch • Zazaki • français • Bahasa Indonesia • 日本語 • occitan • polski • português do Brasil • српски / srpski • Türkçe • 中文 |
---|