summaryrefslogtreecommitdiff
path: root/contrib/mw-to-git/Git
diff options
context:
space:
mode:
authorBenoit Person <benoit.person@ensimag.fr>2013-07-04 20:38:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-07-08 15:55:21 (GMT)
commite19189060fcfb62410ce8e008720dbb6e7fa0d7b (patch)
tree97beb449147043b155c19fd697f25a6e3a8a6571 /contrib/mw-to-git/Git
parent9832cb9d4dc969fbfacfd1f8940fcbdec18bb930 (diff)
downloadgit-e19189060fcfb62410ce8e008720dbb6e7fa0d7b.zip
git-e19189060fcfb62410ce8e008720dbb6e7fa0d7b.tar.gz
git-e19189060fcfb62410ce8e008720dbb6e7fa0d7b.tar.bz2
git-remote-mediawiki: introduction of Git::Mediawiki.pm
We would want to allow the user to preview what he has edited locally before pushing it out (and thus creating a non-removable revision in the mediawiki's history). This patch introduces a new perl package in which we will be able to share code between that new tool and the remote helper: git-remote-mediawiki.perl. A perl package offers the best way to handle such case: Each script can select what should be imported in its namespace. The package namespacing limits the use of side effects in the shared code. An alternate solution is to concatenate a "toolset" file with each *.perl when 'make'-ing the project. In that scheme, everything is imported in the script's namespace. Plus, files should be renamed in order to chain to Git's toplevel makefile. Hence, this solution is not acceptable. 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>
Diffstat (limited to 'contrib/mw-to-git/Git')
-rw-r--r--contrib/mw-to-git/Git/Mediawiki.pm24
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/mw-to-git/Git/Mediawiki.pm b/contrib/mw-to-git/Git/Mediawiki.pm
new file mode 100644
index 0000000..805f42a
--- /dev/null
+++ b/contrib/mw-to-git/Git/Mediawiki.pm
@@ -0,0 +1,24 @@
+package Git::Mediawiki;
+
+use 5.008;
+use strict;
+use Git;
+
+BEGIN {
+
+our ($VERSION, @ISA, @EXPORT, @EXPORT_OK);
+
+# Totally unstable API.
+$VERSION = '0.01';
+
+require Exporter;
+
+@ISA = qw(Exporter);
+
+@EXPORT = ();
+
+# Methods which can be called as standalone functions as well:
+@EXPORT_OK = ();
+}
+
+1; # Famous last words