Antoine Musso fcf8708425 Update git submodules 8 年之前
..
Cite @ fc48a763e0 fcf8708425 Update git submodules 6 年之前
CiteThisPage @ 1d36774f5e cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
ConfirmEdit @ ec629cc979 f2576a141a Update git submodules 6 年之前
Gadgets @ 4014d58809 cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
ImageMap @ 43aaced550 cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
InputBox @ e66224b0bb cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
Interwiki @ 7ee2b27e53 cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
LocalisationUpdate @ e41495a0d5 cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
Nuke @ 074358412a cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
ParserFunctions @ d0a5d10aaf cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
PdfHandler @ df4bdf0d99 5268a77c2d Update git submodules 6 年之前
Poem @ 8cdc76d08f cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
Renameuser @ 615d76190e cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
SpamBlacklist @ c8992f0d0e cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
SyntaxHighlight_GeSHi @ d321b8430f cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
TitleBlacklist @ e40d40e2f5 cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
WikiEditor @ 952e04b327 cc236f87ad Add REL1_27 submodules for bundled extensions/skins/vendor 7 年之前
.gitignore 22f2a62077 Revert "Creating new WMF 1.22wmf3 branch" 11 年之前
README f55e4cb5d1 Point skins/extension READMEs to Phabricator 8 年之前

README

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
.


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