-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-remote-mediawiki: add git-mw command
For now, git-remote-mediawiki is only a remote-helper. This patch adds a new toolset script in which we will be able to build new tools for git-remote-mediawiki. This toolset uses a subcommand-mechanism to launch the proper action. For now only the 'help' subcommand is implemented. It also provides some generic code for the verbose and help command line options. Signed-off-by: Benoit Person <benoit.person@ensimag.fr> Signed-off-by: Matthieu Moy <matthieu.moy@grenoble-inp.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Benoit Person
authored and
Junio C Hamano
committed
Jul 8, 2013
1 parent
192f7a0
commit 07a263b
Showing
2 changed files
with
64 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#!/usr/bin/perl | ||
|
||
# Copyright (C) 2013 | ||
# Benoit Person <benoit.person@ensimag.imag.fr> | ||
# Celestin Matte <celestin.matte@ensimag.imag.fr> | ||
# License: GPL v2 or later | ||
|
||
# Set of tools for git repo with a mediawiki remote. | ||
# Documentation & bugtracker: https://github.com/moy/Git-Mediawiki/ | ||
|
||
use strict; | ||
use warnings; | ||
|
||
use Getopt::Long; | ||
|
||
# By default, use UTF-8 to communicate with Git and the user | ||
binmode STDERR, ':encoding(UTF-8)'; | ||
binmode STDOUT, ':encoding(UTF-8)'; | ||
|
||
# Global parameters | ||
my $verbose = 0; | ||
sub v_print { | ||
if ($verbose) { | ||
return print {*STDERR} @_; | ||
} | ||
return; | ||
} | ||
|
||
my %commands = ( | ||
'help' => | ||
[\&help, {}, \&help] | ||
); | ||
|
||
# Search for sub-command | ||
my $cmd = $commands{'help'}; | ||
for (0..@ARGV-1) { | ||
if (defined $commands{$ARGV[$_]}) { | ||
$cmd = $commands{$ARGV[$_]}; | ||
splice @ARGV, $_, 1; | ||
last; | ||
} | ||
}; | ||
GetOptions( %{$cmd->[1]}, | ||
'help|h' => \&{$cmd->[2]}, | ||
'verbose|v' => \$verbose); | ||
|
||
# Launch command | ||
&{$cmd->[0]}; | ||
|
||
############################## Help Functions ################################## | ||
|
||
sub help { | ||
print {*STDOUT} <<'END'; | ||
usage: git mw <command> <args> | ||
git mw commands are: | ||
help Display help information about git mw | ||
END | ||
exit; | ||
} |