Localisation updates for core messages from translatewiki.net (2009-09-03 16:52 UTC)
[lhc/web/wiklou.git] / maintenance / renameDbPrefix.php
index 562f143..daf79fc 100644 (file)
@@ -3,19 +3,37 @@
  * Run this script to after changing $wgDBprefix on a wiki.
  * The wiki will have to get downtime to do this correctly.
  *
- * @file
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
  * @ingroup Maintenance
  */
  
-require_once( "Maintenance.php" );
+require_once( dirname(__FILE__) . '/Maintenance.php' );
 
 class RenameDbPrefix extends Maintenance {
        public function __construct() {
                parent::__construct();
-               $this->addParam( "old", "Old db prefix [0 for none]", true, true );
-               $this->addParam( "new", "New db prefix [0 for none]", true, true );
+               $this->addOption( "old", "Old db prefix [0 for none]", true, true );
+               $this->addOption( "new", "New db prefix [0 for none]", true, true );
        }
-       
+
+       protected function getDbType() {
+               return Maintenance::DB_ADMIN;
+       }
+
        public function execute() {
                // Allow for no old prefix
                if( $this->getOption( 'old', 0 ) === '0' ) {
@@ -35,10 +53,10 @@ class RenameDbPrefix extends Maintenance {
                }
        
                if( $old === false || $new === false ) {
-                       $this->error( "Invalid prefix!\n", true );
+                       $this->error( "Invalid prefix!", true );
                }
                if( $old === $new ) {
-                       $this->( "Same prefix. Nothing to rename!\n", true );
+                       $this->output( "Same prefix. Nothing to rename!\n", true );
                }
        
                $this->output( "Renaming DB prefix for tables of $wgDBname from '$old' to '$new'\n" );
@@ -62,3 +80,6 @@ class RenameDbPrefix extends Maintenance {
                $this->output( "Done! [$count tables]\n" );
        }
 }
+
+$maintClass = "RenameDbPrefix";
+require_once( DO_MAINTENANCE );
\ No newline at end of file