MediaWiki  1.23.14
jsparse.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
31 class JSParseHelper extends Maintenance {
32  public $errs = 0;
33 
34  public function __construct() {
35  parent::__construct();
36  $this->mDescription = "Runs parsing/syntax checks on JavaScript files";
37  $this->addArg( 'file(s)', 'JavaScript file to test', false );
38  }
39 
40  public function execute() {
41  if ( $this->hasArg() ) {
43  } else {
44  $this->maybeHelp( true ); // @todo fixme this is a lame API :)
45  exit( 1 ); // it should exit from the above first...
46  }
47 
48  $parser = new JSParser();
49  foreach ( $files as $filename ) {
51  $js = file_get_contents( $filename );
53  if ( $js === false ) {
54  $this->output( "$filename ERROR: could not read file\n" );
55  $this->errs++;
56  continue;
57  }
58 
59  try {
60  $parser->parse( $js, $filename, 1 );
61  } catch ( Exception $e ) {
62  $this->errs++;
63  $this->output( "$filename ERROR: " . $e->getMessage() . "\n" );
64  continue;
65  }
66 
67  $this->output( "$filename OK\n" );
68  }
69 
70  if ( $this->errs > 0 ) {
71  exit( 1 );
72  }
73  }
74 }
75 
76 $maintClass = "JSParseHelper";
77 require_once RUN_MAINTENANCE_IF_MAIN;
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
$files
$files
Definition: importImages.php:67
Maintenance\maybeHelp
maybeHelp( $force=false)
Maybe show the help.
Definition: Maintenance.php:710
wfSuppressWarnings
wfSuppressWarnings( $end=false)
Reference-counted warning suppression.
Definition: GlobalFunctions.php:2434
$maintClass
$maintClass
Definition: jsparse.php:76
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance\hasArg
hasArg( $argId=0)
Does a given argument exist?
Definition: Maintenance.php:236
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
JSParseHelper\__construct
__construct()
Default constructor.
Definition: jsparse.php:34
Maintenance\$mArgs
$mArgs
Definition: Maintenance.php:77
wfRestoreWarnings
wfRestoreWarnings()
Restore error level to previous value.
Definition: GlobalFunctions.php:2464
$parser
do that in ParserLimitReportFormat instead $parser
Definition: hooks.txt:1961
JSParseHelper\$errs
$errs
Definition: jsparse.php:32
JSParseHelper
Maintenance script to do test JavaScript validity parses using jsmin+'s parser.
Definition: jsparse.php:31
Maintenance\addArg
addArg( $arg, $description, $required=true)
Add some args that are needed.
Definition: Maintenance.php:207
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
JSParseHelper\execute
execute()
Do the actual work.
Definition: jsparse.php:40
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:314
JSParser
Definition: jsminplus.php:673
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:1632