Top Banner
MEDIAWIKI EXTENSION DEVELOPMENT Richa Jain
23

Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Oct 31, 2019

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

MEDIAWIKI EXTENSION DEVELOPMENT

Richa Jain

Page 2: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

● Mediawiki● What are Extensions?● How to create Extensions?

OUTLINES

Page 3: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

● Free and Open software Wiki package● Written in PHP● Wikipedia and other Wikis

What is Mediawiki ?

Page 4: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup
Page 5: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

WHAT SHOULD YOU HAVE?

● PHP, JavaScript/CSS● MySQL (orSQLite)● SublimeText, Geany, Vim or Notepad++

Page 6: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Mediawiki Installation

● Requirements● Download it● Put it in your localhost● Open it in a web browser and follow the

instructions to install

Page 7: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup
Page 8: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup
Page 9: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

What are Extensions?

● Extend the Wiki markup● Add new reporting and administrative

features● Change the look and design

Page 10: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

HelloUser/HelloUser.phpHelloUser/HelloUser.i18n.phpHelloUser/HelloUser.body.php

Page 11: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Developing Extensions

● Setup (stores the setup instructions)● Execution (execution code for the extension)● Localisation

Page 12: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Setup

Page 13: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Installing Extensions

● Include the Setup file in Localsettings.php● You are done installing the extension!● Head on towards Internationalization

Page 14: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Internationalisation

Page 15: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Using Messages

wfMessage(‘message-name’)->parse()wfMessage(‘message-name’)->plain()

wfMessage(‘message-name’, param1, param2)->parse()

Page 16: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Extension Types

● Special Pages● Hooks● Tag Extensions

Page 17: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Special Page Setup

Page 18: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Special Page File

Page 19: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Hooks Setup

Page 20: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup
Page 21: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Parser Setup

Page 22: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup
Page 23: Richa Jain MEDIAWIKI EXTENSION DEVELOPMENTopensourcebridge.org/wiki-raw/.../e/e3/Mediawki_Extension_Development.pdfChange the look and design What are Extensions? Extend the Wiki markup

Thank You