wiki.techinc.nl/skins
libraryupgrader fe57b122b5 Update git submodules
* Update skins/Vector from branch 'REL1_43'
  to 2b70455d8e21e6a30adf3a6092a7e6fed3d1785b
  - build: Updating @babel/helpers to 7.26.10
    
    * https://github.com/advisories/GHSA-968p-4wvh-cqc8
    
    Change-Id: If858909428592f72305f6ec82c078d045ff0e493
2025-03-14 05:28:45 +00:00
..
MinervaNeue@9244357acc Update git submodules 2025-03-14 05:28:44 +00:00
MonoBook@4f2266626b Update git submodules 2025-02-25 06:31:11 +00:00
Timeless@14c4c89dea Update git submodules 2025-03-04 06:20:36 +00:00
Vector@2b70455d8e Update git submodules 2025-03-14 05:28:45 +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