Developer hub

From mediawiki.org
Jump to navigation Jump to search
  • Community Noun project 2280.svg Users
  • Octicons-terminal.svg System Administrators
  • Source code project 1171.svg Developers
  • OOjs UI icon language-ltr.svg Translators


This is a high-level overview of MediaWiki development, including links to the key documents, resources and tools available to MediaWiki developers. It is written for skilled LAMP developers who have experience using MediaWiki.

Overview

MediaWiki is the software that powers Wikipedia, its sister projects and thousands of wikis all over the world.

MediaWiki is written in the PHP programming language.[1] It uses jQuery as the client JavaScript library.

MediaWiki is primarily written for the LAMP platform[2] and runs on most operating systems. MediaWiki primarily uses the MySQL and MariaDB database servers.[3]

Development happens in an open source style[4], is largely coordinated online, and supported by the Wikimedia Foundation, though volunteer community developers play a huge part as well.

Key documents

Code, development and style

Debugging and testing

Architecture

Sub-systems

  • API – MediaWiki's API provides direct, high-level access to the data contained in the MediaWiki databases.
  • ContentHandler – MediaWiki's framework for supporting custom types of page content.
  • Database access – an overview of using databases in MediaWiki, including a brief guide to the database abstraction layer.
  • Job queue – MediaWiki's framework for processing long-running tasks asynchronously.
  • Messages API – MediaWiki's framework for providing localized application messages with PHP or JavaScript.

Extending MediaWiki

MediaWiki has been designed to allow for modification without changing the "core code". This makes it easy to update to a new version of MediaWiki without having to manually merge in old extension code changes. There are six main extension points that allow developers to change or extend what MediaWiki can do. The extension points are:

  • API – access the data and metadata of MediaWiki instances through its web API.
  • Hooks – every time a given event happens, do something.
  • Parser functions – create a new command like: {{#if:...|...|...}}.
  • Skins – change the look and feel of MediaWiki.
  • Special pages – add a new special page.
  • Tag extensions – create a new tag like: ‎<newtag>...‎</newtag>.
  • Extending wiki markup – add a parser hook to modify the content of wikitext.

Help for extension developers

Help for skin developers

Help for library code reuse


Notes

  1. Not all of MediaWiki is written in PHP. Some supporting tools are written in other languages, including batch files, shell scripts, makefiles and Python.
  2. MediaWiki runs on most platforms that can support PHP, however, the lack of certain utilities or operating system features may limit the functionality or performance of MediaWiki on non-LAMP platforms.
  3. MediaWiki has support for DBMS other than MySQL and MariaDB, including PostgreSQL and SQLite.
  4. Developers are a mix of volunteers and paid staff (or contractors) for various organizations. For a full list of who works on the MediaWiki code, read the Developers article.
  5. Browse the source code and revisions of code repositories at phab:diffusion/ or download the source code to your system by using Gerrit.