From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- maintenance/edit.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'maintenance/edit.php') diff --git a/maintenance/edit.php b/maintenance/edit.php index 40623afb..fb462a40 100644 --- a/maintenance/edit.php +++ b/maintenance/edit.php @@ -26,23 +26,23 @@ 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, $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 ); -- cgit v1.2.3-54-g00ecf