''Hub'' desenvolvedor
![]() |
Users | ![]() |
System Administrators | ![]() |
Developers |
Esta é unha vista xeral de alto nivel de desenvolvemento MediaWiki ', incluíndo enlaces para os principais documentos, recursos e ferramentas dispoñibles para os desenvolvedores de MediaWiki. Está escrito 'para desenvolvedores cualificados LAMP que teñen experiencia usando MediaWiki'.
For an introductory guide to developing MediaWiki, read how to become a MediaWiki hacker.
For help installing or customizing MediaWiki, visit the Sysadmin hub. For help using MediaWiki, visit the User hub.
Vista xeral[edit | edit source]
MediaWiki é desenvolvido nun código abertostyle[1] usando a linguaxe de programación PHP [2] sobre todo para a plataforma LAMP[3] [4]. O desenvolvemento do núcleo é en gran parte coordinado liña.
- 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.
- 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 wikitech:Help:Access#Access FAQ 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.
Documentos clave[edit | edit source]
Código, desenvolvemento e estilo[edit | edit source]
- Development policy - unha visión xeral das principais políticas de desenvolvemento.
- Coding conventions – learn how to write PHP code in the MediaWiki style.
- Security for developers - aprenda a axudar a manter o MediaWiki seguro.
- Pre-commit checklist – read this checklist before committing code.
- Guía de revisión de código - unha guía para os revisores de commits ó código fonte MediaWiki.
- Requests for Comment (RfC) – read about or suggest new features for the MediaWiki ecosystem
Depuración e probas[edit | edit source]
- How to debug – a guide to debugging MediaWiki.
- Manual:Errors and symptoms – an overview of common MediaWiki errors and their correlating symptoms.
- Selenium Framework – learn to write UI tests for MediaWiki using Selenium.
- Unit testing – learn to write unit tests for MediaWiki using PHPUnit.
- Security – security issues are reported to [email protected].
Architecture[edit | edit source]
- Manual:Code – an overview of the key parts of MediaWiki's source code.
- Database layout – an overview of MediaWiki's database schemas.
- Global object variables – a partial list of key global variables.
- Localisation – learn about MediaWiki's internationalisation system.
- Manual namespace on this wiki – documentation for developers.
- MediaWiki Class Reference – technical documentation generated from the MediaWiki source code. (Note: The class reference is a large, slow-to-load page.)
- MediaWiki Virtual Library – manuals, guides, collections of selected articles.
Sub-systems[edit | edit source]
- 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[edit | edit source]
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 a powerful 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>
Help for extension developers[edit | edit source]
- Manual:Developing extensions – a guide to developing extensions.
- Project:WikiProject Extensions
- Extensions FAQ
- See Category:Extensions, for a list of extensions.
- Manual:$wgExtensionFunctions – use to defer setup (or run other callbacks) for extensions until after the MediaWiki core is setup.
- Extension:BoilerPlate - a blank extension template
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.
Help for library code reuse[edit | edit source]
- Manual:Developing libraries – a guide to packaging third-party libraries for use with MediaWiki
Third-party wiki uses[edit | edit source]
- Enterprise hub - For Enterprise wikis
- Academic hub - For Academic wikis
Notas[edit | edit source]
- ↑ Os creadores son unha mestura de voluntarios e funcionarios pagados Fundación Wikimedia (ou contratados). Para unha lista completa de quen traballa co código MediaWiki, lea o artigo Developers
- ↑ Non todo MediaWiki está escrito en PHP. Algunhas ferramentas de apoio están escritos noutras linguaxes, incluíndo batch files shell scripts, makefiles e Python.
- ↑ MediaWiki execútase na maioría das plataformas que poden apoiar PHP, con todo, a falta de certos servizos públicos ou recursos do sistema operativo poden limitar a funcionalidade ou funcionamento de MediaWiki en plataformas NO-LAMP.
- ↑ MediaWiki ten soporte para DBMS exceptoMySQL, incluíndo Oracle, PostgreSQL e 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 Wikimedia Phabricator instance.