3 * Take page text out of an XML dump file and render basic HTML out to files.
4 * This is *NOT* suitable for publishing or offline use; it's intended for
5 * running comparative tests of parsing behavior using real-world data.
7 * Templates etc are pulled from the local wiki database, not from the dump.
9 * Copyright (C) 2006 Brion Vibber <brion@pobox.com>
10 * http://www.mediawiki.org/
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 * http://www.gnu.org/copyleft/gpl.html
28 * @ingroup Maintenance
31 require_once( __DIR__
. '/Maintenance.php' );
34 * Maintenance script that takes page text out of an XML dump file
35 * and render basic HTML out to files.
37 * @ingroup Maintenance
39 class DumpRenderer
extends Maintenance
{
42 private $outputDirectory, $startTime;
44 public function __construct() {
45 parent
::__construct();
46 $this->mDescription
= "Take page text out of an XML dump file and render basic HTML out to files";
47 $this->addOption( 'output-dir', 'The directory to output the HTML files to', true, true );
48 $this->addOption( 'prefix', 'Prefix for the rendered files (defaults to wiki)', false, true );
49 $this->addOption( 'parser', 'Use an alternative parser class', false, true );
52 public function execute() {
53 $this->outputDirectory
= $this->getOption( 'output-dir' );
54 $this->prefix
= $this->getOption( 'prefix', 'wiki' );
55 $this->startTime
= microtime( true );
57 if ( $this->hasOption( 'parser' ) ) {
59 $wgParserConf['class'] = $this->getOption( 'parser' );
60 $this->prefix
.= "-{$wgParserConf['class']}";
63 $source = new ImportStreamSource( $this->getStdin() );
64 $importer = new WikiImporter( $source );
66 $importer->setRevisionCallback(
67 array( &$this, 'handleRevision' ) );
69 $importer->doImport();
71 $delta = microtime( true ) - $this->startTime
;
72 $this->error( "Rendered {$this->count} pages in " . round($delta, 2) . " seconds " );
74 $this->error( round($this->count
/ $delta, 2) . " pages/sec" );
80 * Callback function for each revision, turn into HTML and save
81 * @param $rev Revision
83 public function handleRevision( $rev ) {
84 $title = $rev->getTitle();
86 $this->error( "Got bogus revision with null title!" );
89 $display = $title->getPrefixedText();
93 $sanitized = rawurlencode( $display );
94 $filename = sprintf( "%s/%s-%07d-%s.html",
95 $this->outputDirectory
,
99 $this->output( sprintf( "%s\n", $filename, $display ) );
102 $options = ParserOptions
::newFromUser( $user );
104 $content = $rev->getContent();
105 $output = $content->getParserOutput( $title, null, $options );
107 file_put_contents( $filename,
108 "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" " .
109 "\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n" .
110 "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" .
112 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n" .
113 "<title>" . htmlspecialchars( $display ) . "</title>\n" .
122 $maintClass = "DumpRenderer";
123 require_once( RUN_MAINTENANCE_IF_MAIN
);