allow localization of elements via data-msg-text and data-msg-html
[lhc/web/wiklou.git] / maintenance / edit.php
index 7e4b2f7..13b3c49 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Make an edit
+ * Make a page edit.
  *
  * 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
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
+ * @file
  * @ingroup Maintenance
  */
 
 require_once( dirname( __FILE__ ) . '/Maintenance.php' );
 
+/**
+ * Maintenance script to make a page edit.
+ *
+ * @ingroup Maintenance
+ */
 class EditCLI extends Maintenance {
        public function __construct() {
                parent::__construct();
                $this->mDescription = "Edit an article from the command line, text is from stdin";
-               $this->addOption( 'u', 'Username', false, true );
-               $this->addOption( 's', 'Edit summary', false, true );
-               $this->addOption( 'm', 'Minor edit' );
-               $this->addOption( 'b', 'Bot edit' );
-               $this->addOption( 'a', 'Enable autosummary' );
-               $this->addOption( 'no-rc', 'Do not show the change in recent changes' );
+               $this->addOption( 'user', 'Username', false, true, 'u' );
+               $this->addOption( 'summary', 'Edit summary', false, true, 's' );
+               $this->addOption( 'minor', 'Minor edit', false, false, 'm' );
+               $this->addOption( 'bot', 'Bot edit', false, false, 'b' );
+               $this->addOption( 'autosummary', 'Enable autosummary', false, false, 'a' );
+               $this->addOption( 'no-rc', 'Do not show the change in recent changes', false, false, 'r' );
                $this->addArg( 'title', 'Title of article to edit' );
        }
 
        public function execute() {
-               global $wgUser, $wgArticle;
+               global $wgUser, $wgTitle;
 
-               $userName = $this->getOption( 'u', 'Maintenance script' );
-               $summary = $this->getOption( 's', '' );
-               $minor = $this->hasOption( 'm' );
-               $bot = $this->hasOption( 'b' );
-               $autoSummary = $this->hasOption( 'a' );
+               $userName = $this->getOption( 'user', 'Maintenance script' );
+               $summary = $this->getOption( 'summary', '' );
+               $minor = $this->hasOption( 'minor' );
+               $bot = $this->hasOption( 'bot' );
+               $autoSummary = $this->hasOption( 'autosummary' );
                $noRC = $this->hasOption( 'no-rc' );
-               
+
                $wgUser = User::newFromName( $userName );
                if ( !$wgUser ) {
                        $this->error( "Invalid username", true );
@@ -52,20 +58,20 @@ class EditCLI extends Maintenance {
                if ( $wgUser->isAnon() ) {
                        $wgUser->addToDatabase();
                }
-       
-               $title = Title::newFromText( $this->getArg() );
-               if ( !$title ) {
+
+               $wgTitle = Title::newFromText( $this->getArg() );
+               if ( !$wgTitle ) {
                        $this->error( "Invalid title", true );
                }
-       
-               $wgArticle = new Article( $title );
-       
+
+               $page = WikiPage::factory( $wgTitle );
+
                # Read the text
                $text = $this->getStdin( Maintenance::STDIN_ALL );
-               
+
                # Do the edit
                $this->output( "Saving... " );
-               $status = $wgArticle->doEdit( $text, $summary,
+               $status = $page->doEdit( $text, $summary,
                        ( $minor ? EDIT_MINOR : 0 ) |
                        ( $bot ? EDIT_FORCE_BOT : 0 ) |
                        ( $autoSummary ? EDIT_AUTOSUMMARY : 0 ) |
@@ -85,5 +91,5 @@ class EditCLI extends Maintenance {
 }
 
 $maintClass = "EditCLI";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );