2012-02-24 23:14:02 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Dynamically create a simple stylesheet for unit tests in MediaWiki.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
2018-05-19 21:41:41 +00:00
|
|
|
|
|
|
|
|
// This file doesn't run as part of MediaWiki
|
|
|
|
|
// phpcs:disable MediaWiki.Usage.SuperGlobalsUsage.SuperGlobals
|
|
|
|
|
|
2022-02-16 13:31:54 +00:00
|
|
|
header( 'Cache-Control: private, no-cache, must-revalidate' );
|
2012-02-24 23:14:02 +00:00
|
|
|
header( 'Content-Type: text/css; charset=utf-8' );
|
|
|
|
|
|
|
|
|
|
// Do basic sanitization
|
2022-11-28 12:26:44 +00:00
|
|
|
$params = array_map( static function ( $val ) {
|
|
|
|
|
return is_string( $val ) ? preg_replace( '/[^A-Za-z0-9\.\- #]/', '', $val ) : null;
|
|
|
|
|
}, $_GET );
|
2012-02-24 23:14:02 +00:00
|
|
|
|
|
|
|
|
// Defaults
|
2017-10-06 22:17:58 +00:00
|
|
|
$selector = $params['selector'] ?? '.mw-test-example';
|
|
|
|
|
$property = $params['prop'] ?? 'float';
|
|
|
|
|
$value = $params['val'] ?? 'right';
|
2012-05-03 00:09:26 +00:00
|
|
|
$wait = isset( $params['wait'] ) ? (int)$params['wait'] : 0; // seconds
|
|
|
|
|
|
|
|
|
|
sleep( $wait );
|
2012-02-24 23:14:02 +00:00
|
|
|
|
2013-02-15 10:35:55 +00:00
|
|
|
$css = "
|
2012-02-24 23:14:02 +00:00
|
|
|
/**
|
2013-02-15 10:35:55 +00:00
|
|
|
* Generated " . gmdate( 'r' ) . ".
|
2012-05-03 00:09:26 +00:00
|
|
|
* Waited {$wait}s.
|
2012-02-24 23:14:02 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
$selector {
|
|
|
|
|
$property: $value;
|
|
|
|
|
}
|
|
|
|
|
";
|
|
|
|
|
|
|
|
|
|
echo trim( $css ) . "\n";
|