git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] completion: add deprecated __git_complete_file ()
@ 2013-06-07 19:09 Ramkumar Ramachandra
  2013-06-07 19:25 ` Felipe Contreras
  2013-06-07 20:38 ` Junio C Hamano
  0 siblings, 2 replies; 7+ messages in thread
From: Ramkumar Ramachandra @ 2013-06-07 19:09 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano, SZEDER Gábor

77c130 (completion: clarify ls-tree, archive, show completion,
2013-06-02) removed __git_complete_file () because it had no callers
left in the file.  However, to avoid breaking user scripts that may
depend on this, add it back as a deprecated alias.

Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
---
 Based on pu.

 contrib/completion/git-completion.bash | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index d0a9ba4..0fb81c9 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -489,6 +489,11 @@ __git_complete_revlist_file ()
 	esac
 }
 
+# no callers; deprecated alias
+__git_complete_file ()
+{
+	__git_complete_revlist_file
+}
 
 # __git_complete_index_file requires 1 argument:
 # 1: the options to pass to ls-file
-- 
1.8.3.244.g98dd9db.dirty

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] completion: add deprecated __git_complete_file ()
  2013-06-07 19:09 [PATCH] completion: add deprecated __git_complete_file () Ramkumar Ramachandra
@ 2013-06-07 19:25 ` Felipe Contreras
  2013-06-07 19:29   ` Ramkumar Ramachandra
  2013-06-08  0:35   ` SZEDER Gábor
  2013-06-07 20:38 ` Junio C Hamano
  1 sibling, 2 replies; 7+ messages in thread
From: Felipe Contreras @ 2013-06-07 19:25 UTC (permalink / raw)
  To: Ramkumar Ramachandra; +Cc: Git List, Junio C Hamano, SZEDER Gábor

On Fri, Jun 7, 2013 at 2:09 PM, Ramkumar Ramachandra <artagnon@gmail.com> wrote:
> 77c130 (completion: clarify ls-tree, archive, show completion,
> 2013-06-02) removed __git_complete_file () because it had no callers
> left in the file.  However, to avoid breaking user scripts that may
> depend on this, add it back as a deprecated alias.

This is fine by me, but at some point we need to decide how we should
prefix the functions that are supposed to be used by external scripts.

Also, maybe we should start adding '# TODO remove in v2.0' so we
remember to do that in v2.0.

-- 
Felipe Contreras

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] completion: add deprecated __git_complete_file ()
  2013-06-07 19:25 ` Felipe Contreras
@ 2013-06-07 19:29   ` Ramkumar Ramachandra
  2013-06-07 19:31     ` Felipe Contreras
  2013-06-08  0:35   ` SZEDER Gábor
  1 sibling, 1 reply; 7+ messages in thread
From: Ramkumar Ramachandra @ 2013-06-07 19:29 UTC (permalink / raw)
  To: Felipe Contreras; +Cc: Git List, Junio C Hamano, SZEDER Gábor

Felipe Contreras wrote:
> This is fine by me, but at some point we need to decide how we should
> prefix the functions that are supposed to be used by external scripts.

Yeah, I thought __ meant "internal" :/

> Also, maybe we should start adding '# TODO remove in v2.0' so we
> remember to do that in v2.0.

While at it, let's also clean up the deprecated zsh nonsense in
git-completion.bash.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] completion: add deprecated __git_complete_file ()
  2013-06-07 19:29   ` Ramkumar Ramachandra
@ 2013-06-07 19:31     ` Felipe Contreras
  0 siblings, 0 replies; 7+ messages in thread
From: Felipe Contreras @ 2013-06-07 19:31 UTC (permalink / raw)
  To: Ramkumar Ramachandra; +Cc: Git List, Junio C Hamano, SZEDER Gábor

On Fri, Jun 7, 2013 at 2:29 PM, Ramkumar Ramachandra <artagnon@gmail.com> wrote:
> Felipe Contreras wrote:
>> This is fine by me, but at some point we need to decide how we should
>> prefix the functions that are supposed to be used by external scripts.
>
> Yeah, I thought __ meant "internal" :/
>
>> Also, maybe we should start adding '# TODO remove in v2.0' so we
>> remember to do that in v2.0.
>
> While at it, let's also clean up the deprecated zsh nonsense in
> git-completion.bash.

And the _git _gitk compatibility wrappers.

-- 
Felipe Contreras

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] completion: add deprecated __git_complete_file ()
  2013-06-07 19:09 [PATCH] completion: add deprecated __git_complete_file () Ramkumar Ramachandra
  2013-06-07 19:25 ` Felipe Contreras
@ 2013-06-07 20:38 ` Junio C Hamano
  2013-06-08  0:24   ` SZEDER Gábor
  1 sibling, 1 reply; 7+ messages in thread
From: Junio C Hamano @ 2013-06-07 20:38 UTC (permalink / raw)
  To: Ramkumar Ramachandra; +Cc: Git List, SZEDER Gábor

Ramkumar Ramachandra <artagnon@gmail.com> writes:

> 77c130 (completion: clarify ls-tree, archive, show completion,
> 2013-06-02) removed __git_complete_file () because it had no callers
> left in the file.  However, to avoid breaking user scripts that may
> depend on this, add it back as a deprecated alias.
>
> Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
> ---
>  Based on pu.

Will queue; thanks.  With this, I think it will be safe to push the
series in question to 'master'.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] completion: add deprecated __git_complete_file ()
  2013-06-07 20:38 ` Junio C Hamano
@ 2013-06-08  0:24   ` SZEDER Gábor
  0 siblings, 0 replies; 7+ messages in thread
From: SZEDER Gábor @ 2013-06-08  0:24 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Ramkumar Ramachandra, Git List

On Fri, Jun 07, 2013 at 01:38:16PM -0700, Junio C Hamano wrote:
> Ramkumar Ramachandra <artagnon@gmail.com> writes:
> 
> > 77c130 (completion: clarify ls-tree, archive, show completion,
> > 2013-06-02) removed __git_complete_file () because it had no callers
> > left in the file.  However, to avoid breaking user scripts that may
> > depend on this, add it back as a deprecated alias.
> >
> > Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
> > ---
> >  Based on pu.
> 
> Will queue; thanks.  With this, I think it will be safe to push the
> series in question to 'master'.

Safe?  Yes, at least scripts won't break because of the missing
function.

However, I still think it would be worth reverting at least the hunks
modifying the completion functions of ls-tree and archive.  Or better
yet, the whole series.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] completion: add deprecated __git_complete_file ()
  2013-06-07 19:25 ` Felipe Contreras
  2013-06-07 19:29   ` Ramkumar Ramachandra
@ 2013-06-08  0:35   ` SZEDER Gábor
  1 sibling, 0 replies; 7+ messages in thread
From: SZEDER Gábor @ 2013-06-08  0:35 UTC (permalink / raw)
  To: Felipe Contreras; +Cc: Ramkumar Ramachandra, Git List, Junio C Hamano

On Fri, Jun 07, 2013 at 02:25:54PM -0500, Felipe Contreras wrote:
> On Fri, Jun 7, 2013 at 2:09 PM, Ramkumar Ramachandra <artagnon@gmail.com> wrote:
> > 77c130 (completion: clarify ls-tree, archive, show completion,
> > 2013-06-02) removed __git_complete_file () because it had no callers
> > left in the file.  However, to avoid breaking user scripts that may
> > depend on this, add it back as a deprecated alias.
> 
> This is fine by me, but at some point we need to decide how we should
> prefix the functions that are supposed to be used by external scripts.

Or rather how we should prefix the functions that are _not_ supposed
to be used by external scripts.  That way all public functions would
retain the "__git" prefix and existing scripts calling only common
functions like __git_(heads|git_refs|find_on_cmdline|etc.) would work
without modification.


Best,
Gábor

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-06-08  0:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-07 19:09 [PATCH] completion: add deprecated __git_complete_file () Ramkumar Ramachandra
2013-06-07 19:25 ` Felipe Contreras
2013-06-07 19:29   ` Ramkumar Ramachandra
2013-06-07 19:31     ` Felipe Contreras
2013-06-08  0:35   ` SZEDER Gábor
2013-06-07 20:38 ` Junio C Hamano
2013-06-08  0:24   ` SZEDER Gábor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).