MarcoAurelio e7f2209acf Add Extension:Nuke submodule to REL1_31 6 år sedan
..
CategoryTree @ c24e5edb2f 2101b2e3b1 Adding CategoryTree 6 år sedan
Cite @ 20e26df4fc f43faf8791 1.31.0-rc.0 bump -- include submodules 6 år sedan
CiteThisPage @ f224f44304 f00e24f186 Update git submodules 6 år sedan
CodeEditor @ 886d7971ae b15dfb09ca Update git submodules 6 år sedan
ConfirmEdit @ b52469cf57 1c298bfb9a Update git submodules 6 år sedan
Gadgets @ bac29aee15 341f0c558b Update git submodules 6 år sedan
ImageMap @ 6ca1ad79b0 8f8d16aa99 Update git submodules 6 år sedan
InputBox @ dfec2613dd f6a35d8674 Update git submodules 6 år sedan
Interwiki @ b78d2d1d83 a77569a49a Update git submodules 6 år sedan
LocalisationUpdate @ 0249f52dca e929ecc1e7 Update git submodules 6 år sedan
MultimediaViewer @ 1273d3e0b2 b05a1697f3 Update git submodules 6 år sedan
Nuke @ c6ec842cc2 e7f2209acf Add Extension:Nuke submodule to REL1_31 6 år sedan
OATHAuth @ cf9f8c126b 7fedfccdf9 Update git submodules 6 år sedan
ParserFunctions @ 7ec426b9a1 34639f0d4b Update git submodules 6 år sedan
PdfHandler @ 21f2fe9690 b0e8b3a0f7 Update git submodules 6 år sedan
Poem @ c4098df5ea 594fdc00ca Update git submodules 6 år sedan
Renameuser @ f8e515711d 546d94dea4 Update git submodules 6 år sedan
ReplaceText @ a027ec972c 6a329de835 Update git submodules 6 år sedan
SpamBlacklist @ f6fa789ad2 43efcaef34 Update git submodules 6 år sedan
SyntaxHighlight_GeSHi @ a7d04ae334 7792e775e3 Update git submodules 6 år sedan
TitleBlacklist @ 1143a1f61e 53da3f37b7 Update git submodules 6 år sedan
WikiEditor @ 277159cd3a 749f15c0a8 Update git submodules 6 år sedan
.gitignore 3815a7e3ce Revert "Creating new WMF 1.30.0-wmf.17 branch" 7 år sedan
README 3815a7e3ce Revert "Creating new WMF 1.30.0-wmf.17 branch" 7 år sedan

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
.

== 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