http://www.mediawiki.org/wiki/Special:Code/MediaWiki/72867

Revision: 72867
Author:   ialex
Date:     2010-09-12 15:39:49 +0000 (Sun, 12 Sep 2010)

Log Message:
-----------
Whitespaces fixes:
* use tabs for indentation
* removed trailing whitespaces

Modified Paths:
--------------
    trunk/phase3/maintenance/importImages.php

Modified: trunk/phase3/maintenance/importImages.php
===================================================================
--- trunk/phase3/maintenance/importImages.php   2010-09-12 15:39:32 UTC (rev 
72866)
+++ trunk/phase3/maintenance/importImages.php   2010-09-12 15:39:49 UTC (rev 
72867)
@@ -61,10 +61,10 @@
                $checkUserBlock = false;
        }
 
-       # Get --from 
+       # Get --from
        $from = @$options['from'];
 
-       # Get sleep time. 
+       # Get sleep time.
        $sleep = @$options['sleep'];
        if ( $sleep ) $sleep = (int)$sleep;
 
@@ -92,17 +92,17 @@
 
        # Batch "upload" operation
        if ( ( $count = count( $files ) ) > 0 ) {
-       
+
                foreach ( $files as $file ) {
                        $base = wfBaseName( $file );
-       
+
                        # Validate a title
                        $title = Title::makeTitleSafe( NS_FILE, $base );
                        if ( !is_object( $title ) ) {
                                echo( "{$base} could not be imported; a valid 
title cannot be produced\n" );
                                continue;
                        }
-       
+
                        if ( $from ) {
                                if ( $from == $title->getDBkey() ) {
                                        $from = NULL;
@@ -149,49 +149,49 @@
                                $svar = 'added';
                        }
 
-            if ( isset( $options['source-wiki-url'] ) ) {
-                /* find comment text directly from source wiki, through MW's 
API */
-                $real_comment = getFileCommentFromSourceWiki( 
$options['source-wiki-url'], $base );
-                if ( $real_comment === false )
-                    $commentText = $comment;
-                else
-                    $commentText = $real_comment;
+                       if ( isset( $options['source-wiki-url'] ) ) {
+                               /* find comment text directly from source wiki, 
through MW's API */
+                               $real_comment = getFileCommentFromSourceWiki( 
$options['source-wiki-url'], $base );
+                               if ( $real_comment === false )
+                                       $commentText = $comment;
+                               else
+                                       $commentText = $real_comment;
 
-                /* find user directly from source wiki, through MW's API */
-                $real_user = getFileUserFromSourceWiki( 
$options['source-wiki-url'], $base );
-                if ( $real_user === false ) {
-                    $wgUser = $user;
-                } else {
-                    $wgUser = User::newFromName( $real_user );
-                    if ( $wgUser === false ) {
-                        # user does not exist in target wiki
-                        echo ( "failed: user '$real_user' does not exist in 
target wiki." );
-                        continue;
-                    }
-                }
-            } else {
-                # Find comment text
-                $commentText = false;
+                               /* find user directly from source wiki, through 
MW's API */
+                               $real_user = getFileUserFromSourceWiki( 
$options['source-wiki-url'], $base );
+                               if ( $real_user === false ) {
+                                       $wgUser = $user;
+                               } else {
+                                       $wgUser = User::newFromName( $real_user 
);
+                                       if ( $wgUser === false ) {
+                                               # user does not exist in target 
wiki
+                                               echo ( "failed: user 
'$real_user' does not exist in target wiki." );
+                                               continue;
+                                       }
+                               }
+                       } else {
+                               # Find comment text
+                               $commentText = false;
 
-                if ( $commentExt ) {
-                    $f = findAuxFile( $file, $commentExt );
-                    if ( !$f ) {
-                        echo( " No comment file with extension {$commentExt} 
found for {$file}, using default comment. " );
-                    } else {
-                        $commentText = file_get_contents( $f );
-                        if ( !$f ) {
-                            echo( " Failed to load comment file {$f}, using 
default comment. " );
-                        }
-                    }
-                }
+                               if ( $commentExt ) {
+                                       $f = findAuxFile( $file, $commentExt );
+                                       if ( !$f ) {
+                                               echo( " No comment file with 
extension {$commentExt} found for {$file}, using default comment. " );
+                                       } else {
+                                               $commentText = 
file_get_contents( $f );
+                                               if ( !$f ) {
+                                                       echo( " Failed to load 
comment file {$f}, using default comment. " );
+                                               }
+                                       }
+                               }
 
-                if ( !$commentText ) {
-                    $commentText = $comment;
-                }
-            }
+                               if ( !$commentText ) {
+                                       $commentText = $comment;
+                               }
+                       }
 
 
-                       # Import the file       
+                       # Import the file
                        if ( isset( $options['dry'] ) ) {
                                echo( " publishing {$file} by '" . 
$wgUser->getName() . "', comment '$commentText'... " );
                        } else {
@@ -202,14 +202,14 @@
                                        continue;
                                }
                        }
-                       
+
                        $doProtect = false;
                        $restrictions = array();
-                       
+
                        global $wgRestrictionLevels;
-                       
+
                        $protectLevel = isset( $options['protect'] ) ? 
$options['protect'] : null;
-                       
+
                        if ( $protectLevel && in_array( $protectLevel, 
$wgRestrictionLevels ) ) {
                                        $restrictions['move'] = $protectLevel;
                                        $restrictions['edit'] = $protectLevel;
@@ -234,19 +234,19 @@
                                                // Wait for slaves.
                                                sleep( 2.0 );
                                                wfWaitForSlaves( 1.0 );
-                                               
+
                                                echo( "\nSetting image 
restrictions ... " );
                                                if ( 
$article->updateRestrictions( $restrictions ) )
-                                                               echo( "done.\n" 
);
+                                                       echo( "done.\n" );
                                                else
-                                                               echo( 
"failed.\n" );
+                                                       echo( "failed.\n" );
                                }
 
                        } else {
                                echo( "failed.\n" );
                                $svar = 'failed';
                        }
-                       
+
                        $$svar++;
                        $processed++;
 
@@ -256,7 +256,7 @@
                        if ( $sleep )
                                sleep( $sleep );
                }
-               
+
                # Print out some statistics
                echo( "\n" );
                foreach ( array( 'count' => 'Found', 'limit' => 'Limit', 
'ignored' => 'Ignored',
@@ -265,7 +265,7 @@
                        if ( $$var > 0 )
                                echo( "{$desc}: {$$var}\n" );
                }
-               
+
        } else {
                echo( "No suitable files could be found for import.\n" );
        }



_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to