[PATCH v4 2/7] remote-mediawiki: allow fetching namespaces with spaces
From: Antoine Beaupré <hidden>
Date: 2017-11-06 21:20:24
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Antoine Beaupré <hidden>
Date: 2017-11-06 21:20:24
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ingo Ruhnke <redacted> we still want to use spaces as separators in the config, but we should allow the user to specify namespaces with spaces, so we use underscore for this. Reviewed-by: Antoine Beaupré <redacted> Signed-off-by: Antoine Beaupré <redacted> --- contrib/mw-to-git/git-remote-mediawiki.perl | 1 + 1 file changed, 1 insertion(+)
diff --git a/contrib/mw-to-git/git-remote-mediawiki.perl b/contrib/mw-to-git/git-remote-mediawiki.perl
index 5ffb57595..a1d783789 100755
--- a/contrib/mw-to-git/git-remote-mediawiki.perl
+++ b/contrib/mw-to-git/git-remote-mediawiki.perl@@ -65,6 +65,7 @@ chomp(@tracked_categories); # Just like @tracked_categories, but for MediaWiki namespaces. my @tracked_namespaces = split(/[ \n]/, run_git("config --get-all remote.${remotename}.namespaces")); +for (@tracked_namespaces) { s/_/ /g; } chomp(@tracked_namespaces); # Import media files on pull
--
2.11.0