mediawiki_arch/extensions
nl6720 367c4c0eb9
Disable sidebar's gradient in new Vector
It conflicts with the faint blue background color.
2021-12-23 09:41:12 +02:00
..
AbuseFilter@872882d0cb Update extensions 2021-12-19 15:12:05 +01:00
ArchLinux Disable sidebar's gradient in new Vector 2021-12-23 09:41:12 +02:00
BounceHandler@f60dea9f16 Update extensions 2021-12-19 15:12:05 +01:00
CategoryTree Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
CheckUser@f2000227d8 Update extensions 2021-12-19 15:12:05 +01:00
Cite Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
CiteThisPage Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
CodeEditor Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
CodeMirror@6a641830d9 Update extensions 2021-12-19 15:12:05 +01:00
ConfirmEdit Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
FlarumAuth@52bf0df2fc Update extensions 2021-12-19 15:12:05 +01:00
Gadgets Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
ImageMap Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
InputBox Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
Interwiki Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
LocalisationUpdate Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
Lockdown@5d8ea76899 Update extensions 2021-12-19 15:12:05 +01:00
MultimediaViewer Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
Nuke Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
OATHAuth Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
PageImages Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
ParserFunctions Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
PdfHandler Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
Poem Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
Renameuser Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
ReplaceText Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
Scribunto Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
SecureLinkFixer Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
SpamBlacklist Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
SyntaxHighlight_GeSHi Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
TemplateData Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
TextExtracts Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
TitleBlacklist Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
TitleKey@427f44c486 Update extensions 2021-12-19 15:12:05 +01:00
UserMerge@57f440bcb7 Update extensions 2021-12-19 15:12:05 +01:00
VisualEditor Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01:00
WikiEditor Update to MediaWiki 1.37.1 2021-12-19 15:08:59 +01: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