wiki.techinc.nl/skins
Translation updater bot 1ac231f08f Update git submodules
* Update skins/Vector from branch 'REL1_43'
  to 210e513841da380e13bb539e55a70095d4163dad
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I3a8b78eb7207b6ac1b0129ac40bdba98f35d6358
2025-02-25 06:31:12 +00:00
..
MinervaNeue@a764a4b30b Update git submodules 2025-02-25 06:31:05 +00:00
MonoBook@4f2266626b Update git submodules 2025-02-25 06:31:11 +00:00
Timeless@4fb4f38f2a Update git submodules 2025-02-04 06:22:18 +00:00
Vector@210e513841 Update git submodules 2025-02-25 06:31:12 +00:00
.gitignore
.vsls.json
README

== User Information ==

Skins, such as the default skin Vector, are distributed separately. Drop them
into this directory and enable as per the skin's installation instructions.

You can find a list of available skins at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Category:All_skins>,
and more information about installing and configuring skins at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration>.

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

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

The default skin Vector can be installed by cloning from Git:
    git clone https://gerrit.wikimedia.org/g/mediawiki/extensions/Vector

Other skins are also available:
    https://gerrit.wikimedia.org/g/mediawiki/extensions


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