wiki.techinc.nl/skins
SomeRandomDeveloper 9ffec9dc56 Update git submodules
* Update skins/Vector from branch 'REL1_43'
  to 29d89be3529fc0b0a2c00dd6cc7bea9c9606546f
  - SECURITY: Insert portlet labels as text instead of HTML
    
    CVE-2025-6596
    
    This addresses a stored XSS vulnerability through system
    messages.
    
    Bug: T396685
    Change-Id: Ib474c00a887a9cbe4816c25a798cb869044bcf13
    (cherry picked from commit 9a92de327ba7d4748b8dece500df442d2ba45b25)
2025-06-30 20:16:38 +00:00
..
MinervaNeue@0b53fa0d59 Update git submodules 2025-06-21 00:22:36 +00:00
MonoBook@bbf8d36f6f Update git submodules 2025-06-19 05:39:46 +00:00
Timeless@2458a449f5 Update git submodules 2025-06-21 00:22:37 +00:00
Vector@29d89be352 Update git submodules 2025-06-30 20:16:38 +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