Developer hub/cs
![]() |
Users | ![]() |
System Administrators | ![]() |
Developers |
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.
For an introductory guide to developing MediaWiki, read how to become a MediaWiki hacker.
Pokud potřebujete pomoc s instalací či nastavením MediaWiki, vizte rozcestník pro správce.
Overview[edit | edit source]
MediaWiki is developed in an open source style[1] using the PHP programming language [2] primarily for the LAMP platform[3][4]. Core development is largely coordinated online.
- Development discussion happens on various mailing lists and IRC channels. The main developer list is wikitech-l. The main developer IRC channels are #mediawiki and #wikimedia-dev. Read the Developers article to get a sense for who the people on the mailing lists and IRC channels are.
- MediaWiki roadmap – funkce a vlastnosti plánované do budoucích verzí (pouze základní informace bez závazné platnosti)
- Source code is managed using the Git revision control system. Read the Git article for an overview of how the MediaWiki developers use Git. Read the labsconsole Help:Access article if you'd like access.[5]
- Code review is performed on Gerrit, see this tutorial to get set up with git and gerrit in order to submit patches.
- Developers extending or interfacing with MediaWiki (instead working on the core code) have several convenient extension points, including the API, the Hooks system and Skins – see the #Extending MediaWiki section of this page for an overview.
Key documents[edit | edit source]
Code, development and style[edit | edit source]
|
Debugging and testing[edit | edit source]
|
Architecture[edit | edit source]
|
Sub-systems[edit | edit source]
|
Doplňky do MediaWiki[edit | edit source]
V MediaWiki existuje pět hlavních bodů, kde mohou vývojáři přidávat nové funkce nebo měnit stávající vlastnosti. MediaWiki bylo navrženo tak, aby je bylo možno přizpůsobit bez změn „kódu jádra“. To zajišťuje, že lze upgradovat na novější verzi bez potřeby zamergovat uživatelské úpravy do nové verze. Těmito body jsou:
- API – access the data and metadata of MediaWiki instances through a powerful web API.
- Hooks – Zajistí, že se něco provede pokaždé, když…
- Parser Functions – Vytvoří nový příkaz, např.
{{#if|...|...|...}}
- Skins – Změní vzhled a chování uživatelského rozhraní MediaWiki.
- Special Pages – Přidá novou speciální stránku
- Tag Extensions – create a new tag like:
<newtag>...</newtag>
Nápověda pro tvůrce doplňků[edit | edit source]
- Manual:Developing extensions – a guide to developing extensions.
- Project:WikiProject Extensions
- Extensions FAQ
- Extension Matrix – an auto-generated list of extensions. See also Category:Extensions, a less complete list of extensions.
- Manual:$wgExtensionFunctions – use to defer setup (or run other callbacks) for extensions until after the MediaWiki core is setup.
Help for skin developers[edit | edit source]
- Manual:Skinning – instructions on how to create a skin for MediaWiki.
- Manual:Skin configuration – a guide to configuring skins for a wiki.
Third-party wiki uses[edit | edit source]
- Enterprise hub - For Enterprise wikis
- Academic hub - For Academic wikis
Notes[edit | edit source]
- ↑ Developers are a mix of volunteers and paid Wikimedia Foundation staff (or contractors). For a full list of who works on the MediaWiki code, read the Developers article.
- ↑ Not all of MediaWiki is written in PHP. Some supporting tools are written in other languages, including batch files, shell scripts, makefiles and Python.
- ↑ 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.
- ↑ MediaWiki has support for DBMS other than MySQL, including Oracle, PostgreSQL and SQLite.
- ↑ Browse the source code and revisions at https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/core.git or clone the development version of the code using this Git command:
git clone https://gerrit.wikimedia.org/r/p/mediawiki/core.git MediaWiki
- ↑ Visit http://news.gmane.org/gmane.org.wikimedia.mediawiki.bugs to see recent changes to bugs and issues in the MediaWiki Bugzilla instance.