mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-13 17:57:21 +00:00
6b5a76939b
Bug: T104721 Change-Id: Iee1ef18d3227807110d4e25f0c48f17907adf8ad
30 lines
665 B
PHP
30 lines
665 B
PHP
<?php
|
|
if ( sizeof( $argv ) < 3 ) {
|
|
print "Call with 2 arguments: the path to the load url and the file to output to";
|
|
exit();
|
|
}
|
|
$loadUrl = $argv[1];
|
|
$outputFile = $argv[2];
|
|
|
|
define( 'MEDIAWIKI', true );
|
|
const NS_MAIN = 0;
|
|
$wgVersion = 1.23;
|
|
$wgSpecialPages = array();
|
|
$wgResourceModules = array();
|
|
|
|
include "Resources.php";
|
|
|
|
$query = array();
|
|
$blacklist = array(
|
|
);
|
|
foreach( $wgResourceModules as $moduleName => $def ) {
|
|
if ( !in_array( $moduleName, $blacklist ) ) {
|
|
$query[] = $moduleName;
|
|
}
|
|
}
|
|
|
|
$url = $loadUrl . '?only=styles&skin=vector&modules=' . implode( $query, '|' );
|
|
echo $url;
|
|
$css = file_get_contents($url);
|
|
file_put_contents( $outputFile, $css );
|