wiki.techinc.nl/skins
SomeRandomDeveloper 45ebd1ba63 Update git submodules
* Update skins/Vector from branch 'REL1_43'
  to c49fab7557ab0f2478e1053a54e47dfd0e9ec6df
  - SECURITY: Insert sticky header labels as text instead of HTML
    
    CVE-2025-61657
    
    Assigning to.innerHTML to from.textContent essentially unescapes
    any characters inside the labels.
    This fixes a stored XSS vulnerability through system messages.
    
    Bug: T398636
    Change-Id: Ib78c3113a3d7b195bf348e8a52f29058eaf9a59f
2025-10-02 20:25:49 +00:00
..
MinervaNeue@f9c39a05ed Update git submodules 2025-09-30 06:49:52 +00:00
MonoBook@91a719b94e Update git submodules 2025-09-30 06:49:49 +00:00
Timeless@bce7b5ac32 Update git submodules 2025-08-05 06:39:00 +00:00
Vector@c49fab7557 Update git submodules 2025-10-02 20:25:49 +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