Re: [PATCH] mw-to-git/t9360: fix broken &&-chain

2018-08-21 Thread Antoine Beaupré
On 2018-08-21 15:22:43, Eric Sunshine wrote: > On Tue, Aug 21, 2018 at 2:55 PM Antoine Beaupré wrote: >> On 2018-08-08 18:10:22, Matthieu Moy wrote: >> > "jrnieder" wrote: >> >> (+cc: some folks interested in git-remote-mediawiki) >> > >> &g

Re: [PATCH] mw-to-git/t9360: fix broken &&-chain

2018-08-21 Thread Antoine Beaupré
On 2018-08-08 18:10:22, Matthieu Moy wrote: > "jrnieder" wrote: > >> (+cc: some folks interested in git-remote-mediawiki) > > Thanks. > > In case it still matters, an obvious Acked-by: Matthieu Moy > Hi, I seem to have lost context of the original email, and can't find a copy on

[PATCH v5 2/7] remote-mediawiki: allow fetching namespaces with spaces

2017-11-07 Thread Antoine Beaupré
From: Ingo Ruhnke <grum...@gmail.com> 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é <anar...@debian.org> Signed-off-by: Antoine Beaupré <ana

[PATCH v5 0/7] namespace support

2017-11-07 Thread Antoine Beaupré
Yet another reroll to fix a typo.

Re: [PATCH v4 3/7] remote-mediawiki: show known namespace choices on failure

2017-11-07 Thread Antoine Beaupré
On 2017-11-07 10:45:27, Thomas Adam wrote: > On Mon, Nov 06, 2017 at 04:19:49PM -0500, Antoine Beaupré wrote: >> If we fail to find a requested namespace, we should tell the user >> which ones we know about, since those were already fetched. This >> allows users to

[PATCH v5 7/7] remote-mediawiki: show progress while fetching namespaces

2017-11-07 Thread Antoine Beaupré
/issues/30 Signed-off-by: Antoine Beaupré <anar...@debian.org> --- 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 c9f46359b..af9cbc9d0 100755 --- a/c

[PATCH v5 4/7] remote-mediawiki: skip virtual namespaces

2017-11-07 Thread Antoine Beaupré
are currently "Special" (-1) and "Media" (-2) but we treat all negative namespaces as "virtual" as a future-proofing mechanism. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 5 - 1 file changed, 4 insertions(+),

[PATCH v5 6/7] remote-mediawiki: process namespaces in order

2017-11-07 Thread Antoine Beaupré
Ideally, we'd process them in numeric order since that is more logical, but we can't do that yet since this is where we find the numeric identifiers in the first place. Lexicographic order is a good compromise. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-

[PATCH v5 3/7] remote-mediawiki: show known namespace choices on failure

2017-11-07 Thread Antoine Beaupré
that allows fetching all namespaces automatically. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/mw-to-gi

[PATCH v5 5/7] remote-mediawiki: support fetching from (Main) namespace

2017-11-07 Thread Antoine Beaupré
t;(Main)" since that is the publicly documented name. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/contrib/mw-to-git/git-remote-mediawiki.perl b/c

[PATCH v5 1/7] remote-mediawiki: add namespace support

2017-11-07 Thread Antoine Beaupré
From: Kevin <ke...@ki-ai.org> This introduces a new remote.origin.namespaces argument that is a space-separated list of namespaces. The list of pages extract is then taken from all the specified namespaces. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine B

Re: [PATCH v4 2/7] remote-mediawiki: allow fetching namespaces with spaces

2017-11-07 Thread Antoine Beaupré
On 2017-11-07 07:08:08, Thomas Adam wrote: > On Mon, Nov 06, 2017 at 04:19:48PM -0500, Antoine Beaupré wrote: >> From: Ingo Ruhnke <grum...@gmail.com> >> >> we still want to use spaces as separators in the config, but we should >> allow the user to specify

Re: future of the mediawiki extension?

2017-11-06 Thread Antoine Beaupré
On 2017-11-07 09:44:03, Junio C Hamano wrote: > Antoine Beaupré <anar...@debian.org> writes: > >> On 2017-10-31 10:37:29, Junio C Hamano wrote: >>>> There's also a hybrid solution used by git-multimail: have a copy of the >>>> code in git.git, but do the

[PATCH v4 0/7] remote-mediawiki: namespace support

2017-11-06 Thread Antoine Beaupré
Hopefully, the final series. This includes only one more fix, from Thomas, to remove an extra loop. This should, alas, be ready to merge.

[PATCH v4 2/7] remote-mediawiki: allow fetching namespaces with spaces

2017-11-06 Thread Antoine Beaupré
From: Ingo Ruhnke <grum...@gmail.com> 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é <anar...@debian.org> Signed-off-by: Antoine Beaupré <ana

[PATCH v4 7/7] remote-mediawiki: show progress while fetching namespaces

2017-11-06 Thread Antoine Beaupré
/issues/30 Signed-off-by: Antoine Beaupré <anar...@debian.org> --- 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 7dccb44e0..fcdc29197 100755 --- a/c

[PATCH v4 3/7] remote-mediawiki: show known namespace choices on failure

2017-11-06 Thread Antoine Beaupré
that allows fetching all namespaces automatically. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/mw-to-gi

[PATCH v4 4/7] remote-mediawiki: skip virtual namespaces

2017-11-06 Thread Antoine Beaupré
are currently "Special" (-1) and "Media" (-2) but we treat all negative namespaces as "virtual" as a future-proofing mechanism. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 5 - 1 file changed, 4 insertions(+),

[PATCH v4 6/7] remote-mediawiki: process namespaces in order

2017-11-06 Thread Antoine Beaupré
Ideally, we'd process them in numeric order since that is more logical, but we can't do that yet since this is where we find the numeric identifiers in the first place. Lexicographic order is a good compromise. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-

[PATCH v4 5/7] remote-mediawiki: support fetching from (Main) namespace

2017-11-06 Thread Antoine Beaupré
t;(Main)" since that is the publicly documented name. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/contrib/mw-to-git/git-remote-mediawiki.perl b/c

[PATCH v4 1/7] remote-mediawiki: add namespace support

2017-11-06 Thread Antoine Beaupré
From: Kevin <ke...@ki-ai.org> This introduces a new remote.origin.namespaces argument that is a space-separated list of namespaces. The list of pages extract is then taken from all the specified namespaces. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine B

Re: [PATCH v3 7/7] remote-mediawiki: show progress while fetching namespaces

2017-11-02 Thread Antoine Beaupré
On 2017-11-02 22:31:02, Thomas Adam wrote: > On Thu, Nov 02, 2017 at 06:26:43PM -0400, Antoine Beaupré wrote: >> On 2017-11-02 22:18:07, Thomas Adam wrote: >> > Hi, >> > >> > On Thu, Nov 02, 2017 at 05:25:18PM -0400, Antoine Beaupré wrote: >> >&g

Re: [PATCH v3 4/7] remote-mediawiki: skip virtual namespaces

2017-11-02 Thread Antoine Beaupré
On 2017-11-02 18:43:00, Eric Sunshine wrote: > On Thu, Nov 2, 2017 at 5:25 PM, Antoine Beaupré <anar...@debian.org> wrote: >> Virtual namespaces do not correspond to pages in the database and are >> automatically generated by MediaWiki. It makes little sense, >> the

Re: [PATCH v3 7/7] remote-mediawiki: show progress while fetching namespaces

2017-11-02 Thread Antoine Beaupré
On 2017-11-02 22:18:07, Thomas Adam wrote: > Hi, > > On Thu, Nov 02, 2017 at 05:25:18PM -0400, Antoine Beaupré wrote: >> +print {*STDERR} "$#{$mw_pages} found in namespace $local_namespace >> ($namespace_id)\n"; > > How is this any different to usi

[PATCH v3 1/7] remote-mediawiki: add namespace support

2017-11-02 Thread Antoine Beaupré
From: Kevin <ke...@ki-ai.org> This introduces a new remote.origin.namespaces argument that is a space-separated list of namespaces. The list of pages extract is then taken from all the specified namespaces. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine B

[PATCH v3 4/7] remote-mediawiki: skip virtual namespaces

2017-11-02 Thread Antoine Beaupré
are currently "Special" (-1) and "Media" (-2) but we treat all negative namespaces as "virtual" as a future-proofing mechanism. Reviewed-by: Eric Sunshine <sunsh...@sunshineco.com> Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remot

[PATCH v3 0/7] remote-mediawiki: namespace support

2017-11-02 Thread Antoine Beaupré
This should be the final roll of patches for namespace support. I included the undef check even though that problem occurs elsewhere in the code. I also removed the needless "my" move. Hopefully that should be the last in the queue!

[PATCH v3 2/7] remote-mediawiki: allow fetching namespaces with spaces

2017-11-02 Thread Antoine Beaupré
From: Ingo Ruhnke <grum...@gmail.com> 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é <anar...@debian.org> Signed-off-by: Antoine Beaupré <ana

[PATCH v3 3/7] remote-mediawiki: show known namespace choices on failure

2017-11-02 Thread Antoine Beaupré
that allows fetching all namespaces automatically. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/mw-to-gi

[PATCH v3 6/7] remote-mediawiki: process namespaces in order

2017-11-02 Thread Antoine Beaupré
Ideally, we'd process them in numeric order since that is more logical, but we can't do that yet since this is where we find the numeric identifiers in the first place. Lexicographic order is a good compromise. Reviewed-by: Eric Sunshine <sunsh...@sunshineco.com> Signed-off-by: Antoine B

[PATCH v3 7/7] remote-mediawiki: show progress while fetching namespaces

2017-11-02 Thread Antoine Beaupré
/issues/30 Reviewed-by: Eric Sunshine <sunsh...@sunshineco.com> Signed-off-by: Antoine Beaupré <anar...@debian.org> --- 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-gi

[PATCH v3 5/7] remote-mediawiki: support fetching from (Main) namespace

2017-11-02 Thread Antoine Beaupré
uot;(Main)" since that is the publicly documented name. Reviewed-by: Eric Sunshine <sunsh...@sunshineco.com> Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff -

Re: [PATCH 4/7] remote-mediawiki: skip virtual namespaces

2017-11-02 Thread Antoine Beaupré
On 2017-11-02 10:24:40, Junio C Hamano wrote: > Antoine Beaupré <anar...@debian.org> writes: > >> It might still worth fixing this, but I'm not sure what the process is >> here - in the latest "what's cooking" Junio said this patchset would be >> merged

Re: [PATCH 5/7] remote-mediawiki: support fetching from (Main) namespace

2017-11-02 Thread Antoine Beaupré
On 2017-11-01 15:56:51, Eric Sunshine wrote: >> diff --git a/contrib/mw-to-git/git-remote-mediawiki.perl >> b/contrib/mw-to-git/git-remote-mediawiki.perl >> @@ -264,9 +264,14 @@ sub get_mw_tracked_categories { >> sub get_mw_tracked_namespaces { >> my $pages = shift; >> foreach my

Re: [PATCH 4/7] remote-mediawiki: skip virtual namespaces

2017-11-01 Thread Antoine Beaupré
On 2017-11-01 09:52:09, Eric Sunshine wrote: > On Sun, Oct 29, 2017 at 10:51 PM, Antoine Beaupré <anar...@debian.org> wrote: >> Virtual namespaces do not correspond to pages in the database and are >> automatically generated by MediaWiki. It makes little sense, >> the

Re: future of the mediawiki extension?

2017-10-30 Thread Antoine Beaupré
On 2017-10-31 10:37:29, Junio C Hamano wrote: >> There's also a hybrid solution used by git-multimail: have a copy of the >> code in git.git, but do the development separately. I'm not sure it'd be >> a good idea for Git-Mediawiki, but I'm mentionning it for completeness. > > I think the plan was

Re: [PATCH v2] remote-mediawiki: limit filenames to legal

2017-10-30 Thread Antoine Beaupré
On 2017-10-30 11:34:11, Matthieu Moy wrote: > Antoine Beaupré <anar...@debian.org> writes: > >> @@ -52,7 +53,7 @@ sub smudge_filename { >> $filename =~ s/ /_/g; >> # Decode forbidden characters encoded in clean_filename >> $filename =~ s/_%_([0-9a

Re: future of the mediawiki extension?

2017-10-30 Thread Antoine Beaupré
On 2017-10-30 11:29:55, Matthieu Moy wrote: >> It should also be mentioned that this contrib isn't very active: I'm not >> part of the GitHub organization, yet I'm probably the one that's been >> the most active with patches in the last year (and I wasn't very active >> at all). > > FYI, I'm no

Re: [PATCH 0/4] WIP: git-remote-media wiki namespace support

2017-10-30 Thread Antoine Beaupré
On 2017-10-30 11:40:06, Matthieu Moy wrote: > Antoine Beaupré <anar...@debian.org> writes: > >> Obviously, doing unit tests against a full MediaWiki instance isn't >> exactly trivial. > > Not trivial, but doable: there is all the infrastructure to do so in t/: >

Re: [PATCH 4/4] remote-mediawiki: allow using (Main) as a namespace and skip special namespaces

2017-10-30 Thread Antoine Beaupré
On 2017-10-29 23:52:16, Eric Sunshine wrote: > On Sun, Oct 29, 2017 at 10:43 PM, Antoine Beaupré <anar...@debian.org> wrote: >> On 2017-10-29 15:49:28, Eric Sunshine wrote: >>> This may be problematic since get_mw_namespace_id() may return undef >>> rather

future of the mediawiki extension?

2017-10-29 Thread Antoine Beaupré
Hi, First thanks for the excellent feedback regarding the mediawiki extension, it's great that obscure extensions like this see such excellent reviews. I think, however, it would be good to have a discussion about the future of that extension in Git. The extension has a bit of a hybrid presence

[PATCH v2 0/7] remote-mediawiki: add namespace support

2017-10-29 Thread Antoine Beaupré
This patch series tries to integrate all the feedback received in the recent review from Eric Sunshine. It completely removes the confusing changes to get_mw_namespace_id_for_page() because I believe they are unrelated to the namespace support. I also split up the last patch in 4 different

[PATCH 7/7] remote-mediawiki: show progress while fetching namespaces

2017-10-29 Thread Antoine Beaupré
/issues/30 Signed-off-by: Antoine Beaupré <anar...@debian.org> --- 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 5199af6f6..61e6dd798 100755 --- a/c

[PATCH 2/7] remote-mediawiki: allow fetching namespaces with spaces

2017-10-29 Thread Antoine Beaupré
From: Ingo Ruhnke <grum...@gmail.com> 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é <anar...@debian.org> Signed-off-by: Antoine Beaupré <ana

[PATCH 4/7] remote-mediawiki: skip virtual namespaces

2017-10-29 Thread Antoine Beaupré
are currently "Special" (-1) and "Media" (-2) but we treat all negative namespaces as "virtual" as a future-proofing mechanism. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 4 +++- 1 file changed, 3 insertions(+),

[PATCH 5/7] remote-mediawiki: support fetching from (Main) namespace

2017-10-29 Thread Antoine Beaupré
t;(Main)" since that is the publicly documented name. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/contrib/mw-to-git/git-remote-mediawiki.perl b/c

[PATCH 1/7] remote-mediawiki: add namespace support

2017-10-29 Thread Antoine Beaupré
From: Kevin <ke...@ki-ai.org> This introduces a new remote.origin.namespaces argument that is a space-separated list of namespaces. The list of pages extract is then taken from all the specified namespaces. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine B

[PATCH 3/7] remote-mediawiki: show known namespace choices on failure

2017-10-29 Thread Antoine Beaupré
that allows fetching all namespaces automatically. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/mw-to-gi

[PATCH 6/7] remote-mediawiki: process namespaces in order

2017-10-29 Thread Antoine Beaupré
Ideally, we'd process them in numeric order since that is more logical, but we can't do that yet since this is where we find the numeric identifiers in the first place. Lexicographic order is a good compromise. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-

Re: [PATCH 4/4] remote-mediawiki: allow using (Main) as a namespace and skip special namespaces

2017-10-29 Thread Antoine Beaupré
On 2017-10-29 15:49:28, Eric Sunshine wrote: [...] >> Reviewed-by: Antoine Beaupré <anar...@debian.org> >> Signed-off-by: Antoine Beaupré <anar...@debian.org> >> --- >> diff --git a/contrib/mw-to-git/git-remote-mediawiki.perl >> b/contrib/mw-to-git/git-r

Re: [PATCH 1/4] remote-mediawiki: add namespace support

2017-10-29 Thread Antoine Beaupré
On 2017-10-29 23:08:00, Kevin wrote: > So I shared the patch some time ago (~2 years). Surprisingly its just > now getting attention. I guess some renewed interest in using mediawiki > with git. I think what's happening is that someone (ie. me :p) figured it was about frigging time to actually

Re: [PATCH 4/4] remote-mediawiki: allow using (Main) as a namespace and skip special namespaces

2017-10-29 Thread Antoine Beaupré
On 2017-10-29 15:49:28, Eric Sunshine wrote: > On Sun, Oct 29, 2017 at 12:08 PM, Antoine Beaupré <anar...@debian.org> wrote: >> Subject: remote-mediawiki: allow using (Main) as a namespace and skip >> special namespaces > > This patch is more difficult to r

Re: [PATCH 3/4] remote-mediawiki: show known namespace choices on failure

2017-10-29 Thread Antoine Beaupré
On 2017-10-29 13:34:31, Eric Sunshine wrote: > On Sun, Oct 29, 2017 at 12:08 PM, Antoine Beaupré <anar...@debian.org> wrote: >> if we fail to find a requested namespace, we should tell the user > > s/if/If/ fixed. >> which ones we know about, since we already do.

Re: [PATCH 1/4] remote-mediawiki: add namespace support

2017-10-29 Thread Antoine Beaupré
On 2017-10-29 13:24:03, Eric Sunshine wrote: > On Sun, Oct 29, 2017 at 12:08 PM, Antoine Beaupré <anar...@debian.org> wrote: >> From: Kevin <ke...@ki-ai.org> >> >> this introduces a new remote.origin.namespaces argument that is a > > s/this/This/ ack.

[no subject]

2017-10-29 Thread Antoine Beaupré
sorry for the noise here, but the original patch didn't fix the length in the right place. v2 fixed it in the library properly, but i forgot to also include the length of the suffix. this should be good to go...

[PATCH v3] remote-mediawiki: limit filenames to legal

2017-10-29 Thread Antoine Beaupré
, but that would be more difficult and error prone for a situation that should rarely happen in the first place. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/Git/Mediawiki.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/mw-to-g

[PATCH v2] remote-mediawiki: limit filenames to legal

2017-10-29 Thread Antoine Beaupré
, but that would be more difficult and error prone for a situation that should rarely happen in the first place. Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/Git/Mediawiki.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/mw-to-g

[PATCH] remote-mediawiki: limit filenames to legal

2017-10-29 Thread Antoine Beaupré
mediawiki pages can have names longer than NAME_MAX (generally 255) characters, which will fail on checkout. we simply strip out extra characters, which may mean one page's content will overwrite another (the last editing winning). ideally, we would do a more clever system to find unique names,

[PATCH 4/4] remote-mediawiki: allow using (Main) as a namespace and skip special namespaces

2017-10-29 Thread Antoine Beaupré
Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 31 +++-- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/contrib/mw-to-git/git-remote-media

[PATCH 0/4] WIP: git-remote-media wiki namespace support

2017-10-29 Thread Antoine Beaupré
Hi, For a few years now, work has been happening in a [GitHub issue] to improve git's support for MediaWiki sites, which are implemented in the contrib/mw-to-git/ module, mostly visible in the git-remote-mediawiki command. [GitHub issue]: https://github.com/Git-Mediawiki/Git-Mediawiki/issues/10

[PATCH 3/4] remote-mediawiki: show known namespace choices on failure

2017-10-29 Thread Antoine Beaupré
fetching all namespaces automatically. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine Beaupré <anar...@debian.org> --- contrib/mw-to-git/git-remote-mediawiki.perl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/mw-to-gi

[PATCH 2/4] remote-mediawiki: allow fetching namespaces with spaces

2017-10-29 Thread Antoine Beaupré
From: Ingo Ruhnke <grum...@gmail.com> 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é <anar...@debian.org> Signed-off-by: Antoine Beaupré <ana

[PATCH 1/4] remote-mediawiki: add namespace support

2017-10-29 Thread Antoine Beaupré
From: Kevin <ke...@ki-ai.org> this introduces a new remote.origin.namespaces argument that is a space-separated list of namespaces. the list of pages extract is then taken from all the specified namespaces. Reviewed-by: Antoine Beaupré <anar...@debian.org> Signed-off-by: Antoine B

Re: [PATCH] graph.c: visual difference on subsequent series

2015-07-27 Thread Antoine Beaupré
Any reason why this patch wasn't included / reviewed? Thanks, A. On 2014-11-10 08:33:32, Antoine Beaupré wrote: For projects with separate history lines and, thus, multiple root-commits, the linear arrangement of `git log --graph --oneline` does not allow the user to spot where the sequence

[PATCH] graph.c: visual difference on subsequent series

2014-11-10 Thread Antoine Beaupré
commit per line * tree indentation: it makes little sense with commit trees without common history, and is more complicated to implement Signed-off-by: Antoine Beaupré anar...@koumbit.org --- revision.c | 8 ++-- t/t4202-log.sh | 10