wiki.techinc.nl/skins
libraryupgrader 2ac0fe02f1 Update git submodules
* Update skins/Vector from branch 'REL1_43'
  to 2a1dadc68eae62c195b972a4a791861856610e20
  - build: Updating brace-expansion to 1.1.12, 2.0.2
    
    * https://github.com/advisories/GHSA-v6h2-p8h4-qcjw
    
    Change-Id: I3281c5b53d5865128a009aa9b341a0036fff98c9
2025-06-16 07:31:15 +00:00
..
MinervaNeue@e08046c12c Update git submodules 2025-06-10 06:34:34 +00:00
MonoBook@50fb191f6e Update git submodules 2025-05-20 06:39:31 +00:00
Timeless@1b3431d735 Update git submodules 2025-06-03 06:29:56 +00:00
Vector@2a1dadc68e Update git submodules 2025-06-16 07:31:15 +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