''Hub'' desenvolvedor

From MediaWiki.org
Jump to: navigation, search
This page is a translated version of the page Developer hub and the translation is 18% complete.

Other languages:
العربية • ‎català • ‎čeština • ‎dansk • ‎Deutsch • ‎English • ‎British English • ‎español • ‎فارسی • ‎suomi • ‎français • ‎galego • ‎עברית • ‎Bahasa Indonesia • ‎italiano • ‎日本語 • ‎한국어 • ‎Nederlands • ‎polski • ‎português • ‎português do Brasil • ‎русский • ‎සිංහල • ‎粵語 • ‎中文
Source code project 1171.svg


Crystal Clear app display.png Users Nuvola-inspired-terminal.svg System Administrators Source code project 1171.svg 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.

  • 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]

Depuración e probas[edit | edit source]

  • Bugs – an overview of bug tracking in the MediaWiki project.[6]
  • Unit testing – learn to write unit tests for MediaWiki using PHPUnit.

Architecture[edit | edit source]

  • Manual:Code – an overview of the key parts of MediaWiki's source code.
  • 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.)

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.
  • Skins – change the look and feel of MediaWiki.

Help for extension developers[edit | edit source]

Help for skin developers[edit | edit source]

Help for library code reuse[edit | edit source]

Third-party wiki uses[edit | edit source]

Notas[edit | edit source]

  1. 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
  2. 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.
  3. 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.
  4. MediaWiki ten soporte para DBMS exceptoMySQL, incluíndo Oracle, PostgreSQL e SQLite.
  5. 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
  6. Visit http://news.gmane.org/gmane.org.wikimedia.mediawiki.bugs to see recent changes to bugs and issues in the Wikimedia Phabricator instance.