31require_once __DIR__ .
'/Maintenance.php';
45 parent::__construct();
47 'Take page text out of an XML dump file and render basic HTML out to files' );
48 $this->
addOption(
'output-dir',
'The directory to output the HTML files to',
true,
true );
49 $this->
addOption(
'prefix',
'Prefix for the rendered files (defaults to wiki)',
false,
true );
50 $this->
addOption(
'parser',
'Use an alternative parser class',
false,
true );
54 $this->outputDirectory = $this->
getOption(
'output-dir' );
55 $this->prefix = $this->
getOption(
'prefix',
'wiki' );
61 $this->prefix .=
"-{$wgParserConf['class']}";
67 $importer->setRevisionCallback(
68 [ $this,
'handleRevision' ] );
69 $importer->setNoticeCallback(
function ( $msg,
$params ) {
73 $importer->doImport();
76 $this->
error(
"Rendered {$this->count} pages in " .
round( $delta, 2 ) .
" seconds " );
78 $this->
error(
round( $this->count / $delta, 2 ) .
" pages/sec" );
88 $title =
$rev->getTitle();
90 $this->
error(
"Got bogus revision with null title!" );
94 $display = $title->getPrefixedText();
99 $filename =
sprintf(
"%s/%s-%07d-%s.html",
100 $this->outputDirectory,
107 $options = ParserOptions::newFromUser( $user );
113 "<!DOCTYPE html>\n" .
114 "<html lang=\"en\" dir=\"ltr\">\n" .
116 "<meta charset=\"UTF-8\" />\n" .
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
$wgParserConf
Parser configuration.
Maintenance script that takes page text out of an XML dump file and render basic HTML out to files.
handleRevision( $rev)
Callback function for each revision, turn into HTML and save.
__construct()
Default constructor.
execute()
Do the actual work.
Imports a XML dump from a file (either from file upload, files on disk, or HTTP)
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
getStdin( $len=null)
Return input from stdin.
hasOption( $name)
Checks to see if a particular option exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
XML file reader for the page data importer.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
require_once RUN_MAINTENANCE_IF_MAIN