From d81f562b712f2387fa02290bf2ca86392ab356f2 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 11 Oct 2006 20:21:25 +0000 Subject: Aktualisierung auf Version 1.8.1 --- maintenance/cleanupTitles.php | 83 ++++--------------------------------------- 1 file changed, 7 insertions(+), 76 deletions(-) (limited to 'maintenance/cleanupTitles.php') diff --git a/maintenance/cleanupTitles.php b/maintenance/cleanupTitles.php index 930072de..12e07b67 100644 --- a/maintenance/cleanupTitles.php +++ b/maintenance/cleanupTitles.php @@ -2,9 +2,9 @@ /* * Script to clean up broken, unparseable titles. * - * Usage: php cleanupTitles.php [--dry-run] + * Usage: php cleanupTitles.php [--fix] * Options: - * --dry-run don't actually try moving them + * --fix Actually clean up titles; otherwise just checks for them * * Copyright (C) 2005 Brion Vibber * http://www.mediawiki.org/ @@ -29,77 +29,12 @@ * @subpackage maintenance */ -$options = array( 'dry-run' ); - require_once( 'commandLine.inc' ); -require_once( 'FiveUpgrade.inc' ); - -class TitleCleanup extends FiveUpgrade { - function TitleCleanup( $dryrun = false ) { - parent::FiveUpgrade(); - - $this->maxLag = 10; # if slaves are lagged more than 10 secs, wait - $this->dryrun = $dryrun; - } - - function cleanup() { - $this->runTable( 'page', - '', //'WHERE page_namespace=0', - array( &$this, 'processPage' ) ); - } +require_once( 'cleanupTable.inc' ); - function init( $count, $table ) { - $this->processed = 0; - $this->updated = 0; - $this->count = $count; - $this->startTime = wfTime(); - $this->table = $table; - } - - function progress( $updated ) { - $this->updated += $updated; - $this->processed++; - if( $this->processed % 100 != 0 ) { - return; - } - $portion = $this->processed / $this->count; - $updateRate = $this->updated / $this->processed; - - $now = wfTime(); - $delta = $now - $this->startTime; - $estimatedTotalTime = $delta / $portion; - $eta = $this->startTime + $estimatedTotalTime; - - global $wgDBname; - printf( "%s %s: %6.2f%% done on %s; ETA %s [%d/%d] %.2f/sec <%.2f%% updated>\n", - $wgDBname, - wfTimestamp( TS_DB, intval( $now ) ), - $portion * 100.0, - $this->table, - wfTimestamp( TS_DB, intval( $eta ) ), - $this->processed, - $this->count, - $this->processed / $delta, - $updateRate * 100.0 ); - flush(); - } - - function runTable( $table, $where, $callback ) { - $fname = 'CapsCleanup::buildTable'; - - $count = $this->dbw->selectField( $table, 'count(*)', '', $fname ); - $this->init( $count, 'page' ); - $this->log( "Processing $table..." ); - - $tableName = $this->dbr->tableName( $table ); - $sql = "SELECT * FROM $tableName $where"; - $result = $this->dbr->query( $sql, $fname ); - - while( $row = $this->dbr->fetchObject( $result ) ) { - $updated = call_user_func( $callback, $row ); - } - $this->log( "Finished $table... $this->updated of $this->processed rows updated" ); - $this->dbr->freeResult( $result ); +class TitleCleanup extends TableCleanup { + function __construct( $dryrun = false ) { + parent::__construct( 'page', $dryrun ); } function processPage( $row ) { @@ -197,14 +132,10 @@ class TitleCleanup extends FiveUpgrade { $linkCache->clear(); } } - - function hexChar( $matches ) { - return sprintf( "\\x%02x", ord( $matches[1] ) ); - } } $wgUser->setName( 'Conversion script' ); -$caps = new TitleCleanup( isset( $options['dry-run'] ) ); +$caps = new TitleCleanup( !isset( $options['fix'] ) ); $caps->cleanup(); ?> -- cgit v1.2.2