mediawiki_arch/extensions
Pierre Schmitz 67d3d9cad3 Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
..
AbuseFilter@b85db7adb7 Update extensions 2021-07-15 08:05:15 +02:00
ArchLinux Fix the ArchLinux extension's incompatibility with CodeMirror 2021-06-06 20:01:44 +02:00
BounceHandler@6deba3e624 Update extensions 2021-07-15 08:05:15 +02:00
CategoryTree Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
CheckUser@025d552c4c Update extensions 2021-07-15 08:05:15 +02:00
Cite Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
CiteThisPage Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
CodeEditor Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
CodeMirror@b5c9a1b6d2 Switch to WikiEditor as the editing interface and use CodeMirror for syntax highlighting 2021-04-30 13:44:50 +02:00
ConfirmEdit Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
FluxBBAuth Restore FluxBBAuth extension 2020-11-14 17:26:20 +01:00
Gadgets Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
ImageMap Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
InputBox Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
Interwiki Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
LocalisationUpdate Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
Lockdown@4d595408c9 Update extensions 2021-07-15 08:05:15 +02:00
MultimediaViewer Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
Nuke Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
OATHAuth Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
PageImages Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
ParserFunctions Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
PdfHandler Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
Poem Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
Renameuser Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
ReplaceText Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
Scribunto Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
SecureLinkFixer Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
SpamBlacklist Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
SyntaxHighlight_GeSHi Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
TemplateData Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
TextExtracts Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
TitleBlacklist Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
TitleKey@6eeec31fbe Update extensions 2021-07-15 08:05:15 +02:00
UserMerge@1c161b2c12 Update extensions 2021-07-15 08:05:15 +02:00
VisualEditor Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
WikiEditor Update to MediaWiki 1.36.1 2021-07-15 08:33:23 +02:00
README Update to MediaWiki 1.28.0 2017-01-15 11:27:25 +01:00

README

== User Information ==

Extensions are distributed separately. Drop them into this directory and enable
as per the extension's installation instructions.

You can find a list of extensions and documentation at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions>.

== Development Information ==

If you are a developer, you might want to fetch the extension tree in another
directory and make a symbolic link:

 mediawiki/extensions$ ln -s ../../extensions-trunk/FooBar

Most extensions are available through Git:
    https://phabricator.wikimedia.org/diffusion/MEXT/


Please note that under POSIX systems (Linux...), parent of a symbolic path
refers to the link source, NOT to the target! You should check the env
variable MW_INSTALL_PATH in case the extension is not in the default location.

The following code snippet lets you override the default path:

 $IP = getenv( 'MW_INSTALL_PATH' );
 if( $IP === false ) {
	$IP = __DIR__ . '/../..';
 }
 require_once "$IP/maintenance/Maintenance.php"; // a MediaWiki core file