30require_once __DIR__ .
'/Maintenance.php';
40 parent::__construct();
41 $this->
addArg(
'path',
'The file name to format',
false );
42 $this->
addOption(
'outfile',
'The output file name',
false,
true );
43 $this->
addOption(
'html',
'Use HTML output format. By default, wikitext is used.' );
47 if ( $this->
hasArg( 0 ) ) {
48 $fileName = $this->
getArg( 0 );
49 $inFile = fopen( $fileName,
'r' );
51 $this->
fatalError(
"Unable to open input file \"$fileName\"" );
58 $fileName = $this->
getOption(
'outfile' );
59 $outFile = fopen( $fileName,
'w' );
61 $this->
fatalError(
"Unable to open output file \"$fileName\"" );
67 $inText = stream_get_contents( $inFile );
68 $outText = InstallDocFormatter::format( $inText );
72 $opt = ParserOptions::newFromAnon();
73 $title = Title::newFromText(
'Text file' );
74 $out = $parser->parse( $outText, $title, $opt );
75 $outText =
"<html><body>\n" .
78 ->run( $out, $opt, [] )
79 ->getContentHolderText()
80 .
"\n</body></html>\n";
83 fwrite( $outFile, $outText );
89require_once RUN_MAINTENANCE_IF_MAIN;
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true, $multi=false)
Add some args that are needed.
getArg( $argId=0, $default=null)
Get an argument.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
hasOption( $name)
Checks to see if a particular option was set.
getOption( $name, $default=null)
Get an option, or return the default.
hasArg( $argId=0)
Does a given argument exist?
getServiceContainer()
Returns the main service container.