git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-gui: add configurable tab size to the diff view git-gui - why not added to git-gui ?
@ 2014-09-19 14:33 pb158
  2014-09-19 16:56 ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: pb158 @ 2014-09-19 14:33 UTC (permalink / raw)
  To: git

Home of the original description and the author of the patch:

http://www.spinics.net/lists/git/msg174415.html

Why not added this useful little patch for git-gui ?

( this patch resolve my problem with 8 spaces tab Linux Eclipse + Java 
program source + git gui
and I apply locally it to each new version git before source compilation )

original content of the message from the link above:

----------------------

For Tk 8.5 the "wordprocessor" mode allows us to get a bit fancy for merge
diffs and intend the tabs by one to compensate for the additional diff
marker at the line start.

The code is heavily based on how gitk handles tabs.

Signed-off-by: Michael Lutz <michi@xxxxxxxxxxxxxx>
---
  git-gui.sh     |    1 +
  lib/diff.tcl   |   20 +++++++++++++++++++-
  lib/option.tcl |    1 +
  3 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/git-gui.sh b/git-gui.sh
index ba4e5c1..22d7665 100755
--- a/git-gui.sh
+++ b/git-gui.sh
@@ -892,6 +892,7 @@ set default_config(gui.fontdiff) [font configure 
font_diff]
  set default_config(gui.maxfilesdisplayed) 5000
  set default_config(gui.usettk) 1
  set default_config(gui.warndetachedcommit) 1
+set default_config(gui.tabsize) 8
  set font_descs {
  	{fontui   font_ui   {mc "Main Font"}}
  	{fontdiff font_diff {mc "Diff/Console Font"}}
diff --git a/lib/diff.tcl b/lib/diff.tcl
index ec44055..f314197 100644
--- a/lib/diff.tcl
+++ b/lib/diff.tcl
@@ -1,6 +1,19 @@
  # git-gui diff viewer
  # Copyright (C) 2006, 2007 Shawn Pearce

+proc apply_tab_size {{firsttab {}}} {
+	global have_tk85 repo_config ui_diff
+
+	set w [font measure font_diff "0"]
+	if {$have_tk85 && $firsttab != 0} {
+		$ui_diff configure -tabs [list [expr {$firsttab * $w}] [expr 
{($firsttab + $repo_config(gui.tabsize)) * $w}]]
+	} elseif {$have_tk85 || $repo_config(gui.tabsize) != 8} {
+		$ui_diff configure -tabs [expr {$repo_config(gui.tabsize) * $w}]
+	} else {
+		$ui_diff configure -tabs {}
+	}
+}
+
  proc clear_diff {} {
  	global ui_diff current_diff_path current_diff_header
  	global ui_index ui_workdir
@@ -105,6 +118,8 @@ proc show_diff {path w {lno {}} {scroll_pos {}} 
{callback {}}} {

  	set cont_info [list $scroll_pos $callback]

+	apply_tab_size 0
+
  	if {[string first {U} $m] >= 0} {
  		merge_load_stages $path [list show_unmerged_diff $cont_info]
  	} elseif {$m eq {_O}} {
@@ -398,7 +413,10 @@ proc read_diff {fd conflict_size cont_info} {

  		# -- Automatically detect if this is a 3 way diff.
  		#
-		if {[string match {@@@ *} $line]} {set is_3way_diff 1}
+		if {[string match {@@@ *} $line]} {
+			set is_3way_diff 1
+			apply_tab_size 1
+		}

  		if {$::current_diff_inheader} {

diff --git a/lib/option.tcl b/lib/option.tcl
index 0cf1da1..b940c44 100644
--- a/lib/option.tcl
+++ b/lib/option.tcl
@@ -159,6 +159,7 @@ proc do_options {} {
  		{c gui.encoding {mc "Default File Contents Encoding"}}
  		{b gui.warndetachedcommit {mc "Warn before committing to a detached 
head"}}
  		{s gui.stageuntracked {mc "Staging of untracked files"} {list "yes" 
"no" "ask"}}
+		{i-1..99 gui.tabsize {mc "Tab spacing"}}
  		} {
  		set type [lindex $option 0]
  		set name [lindex $option 1]

---------------

Regards,

Krzysztof

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

* Re: [PATCH] git-gui: add configurable tab size to the diff view git-gui - why not added to git-gui ?
  2014-09-19 14:33 [PATCH] git-gui: add configurable tab size to the diff view git-gui - why not added to git-gui ? pb158
@ 2014-09-19 16:56 ` Junio C Hamano
  2014-09-19 17:02   ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2014-09-19 16:56 UTC (permalink / raw)
  To: pb158; +Cc: git, Pat Thoyts

pb158 <pb158@tlen.pl> writes:

> Home of the original description and the author of the patch:
>
> http://www.spinics.net/lists/git/msg174415.html
>
> Why not added this useful little patch for git-gui ?
>
> ( this patch resolve my problem with 8 spaces tab Linux Eclipse + Java
> program source + git gui
> and I apply locally it to each new version git before source compilation )
>
> original content of the message from the link above:
>

I do not use git-gui, and I do not speak very good tcl/tk either, so
I won't comment on the patch itself (Cc'ed its maintainer Pat), but
thanks for trying to relay, anyway.

> ----------------------
>
> For Tk 8.5 the "wordprocessor" mode allows us to get a bit fancy for merge
> diffs and intend the tabs by one to compensate for the additional diff
> marker at the line start.
>
> The code is heavily based on how gitk handles tabs.
>
> Signed-off-by: Michael Lutz <michi@xxxxxxxxxxxxxx>

With this, the author refuses to be contacted if/when any question
arises wrt the provenance of the patch, which is not a usable form
of a sign-off.  When you relay a change from somebody else who
claims that he has rights to contribute the change to the project,
and you have the rights to relay that change to the project, please
also add your own sign-off.  For further details, please check "(5)
Sign your work" section of Documentation/SubmittingPatches.  I am
guessing that Michael is asserting DCO 1.1 (a) and (d), and you
without a name but only a number are asserting DCO 1.1 (c) and (d).

Thanks.

> ---
>  git-gui.sh     |    1 +
>  lib/diff.tcl   |   20 +++++++++++++++++++-
>  lib/option.tcl |    1 +
>  3 files changed, 21 insertions(+), 1 deletions(-)
>
> diff --git a/git-gui.sh b/git-gui.sh
> index ba4e5c1..22d7665 100755
> --- a/git-gui.sh
> +++ b/git-gui.sh
> @@ -892,6 +892,7 @@ set default_config(gui.fontdiff) [font configure
> font_diff]
>  set default_config(gui.maxfilesdisplayed) 5000
>  set default_config(gui.usettk) 1
>  set default_config(gui.warndetachedcommit) 1
> +set default_config(gui.tabsize) 8
>  set font_descs {
>  	{fontui   font_ui   {mc "Main Font"}}
>  	{fontdiff font_diff {mc "Diff/Console Font"}}
> diff --git a/lib/diff.tcl b/lib/diff.tcl
> index ec44055..f314197 100644
> --- a/lib/diff.tcl
> +++ b/lib/diff.tcl
> @@ -1,6 +1,19 @@
>  # git-gui diff viewer
>  # Copyright (C) 2006, 2007 Shawn Pearce
>
> +proc apply_tab_size {{firsttab {}}} {
> +	global have_tk85 repo_config ui_diff
> +
> +	set w [font measure font_diff "0"]
> +	if {$have_tk85 && $firsttab != 0} {
> +		$ui_diff configure -tabs [list [expr {$firsttab * $w}]
> [expr {($firsttab + $repo_config(gui.tabsize)) * $w}]]
> +	} elseif {$have_tk85 || $repo_config(gui.tabsize) != 8} {
> +		$ui_diff configure -tabs [expr {$repo_config(gui.tabsize) * $w}]
> +	} else {
> +		$ui_diff configure -tabs {}
> +	}
> +}
> +
>  proc clear_diff {} {
>  	global ui_diff current_diff_path current_diff_header
>  	global ui_index ui_workdir
> @@ -105,6 +118,8 @@ proc show_diff {path w {lno {}} {scroll_pos {}}
> {callback {}}} {
>
>  	set cont_info [list $scroll_pos $callback]
>
> +	apply_tab_size 0
> +
>  	if {[string first {U} $m] >= 0} {
>  		merge_load_stages $path [list show_unmerged_diff $cont_info]
>  	} elseif {$m eq {_O}} {
> @@ -398,7 +413,10 @@ proc read_diff {fd conflict_size cont_info} {
>
>  		# -- Automatically detect if this is a 3 way diff.
>  		#
> -		if {[string match {@@@ *} $line]} {set is_3way_diff 1}
> +		if {[string match {@@@ *} $line]} {
> +			set is_3way_diff 1
> +			apply_tab_size 1
> +		}
>
>  		if {$::current_diff_inheader} {
>
> diff --git a/lib/option.tcl b/lib/option.tcl
> index 0cf1da1..b940c44 100644
> --- a/lib/option.tcl
> +++ b/lib/option.tcl
> @@ -159,6 +159,7 @@ proc do_options {} {
>  		{c gui.encoding {mc "Default File Contents Encoding"}}
>  		{b gui.warndetachedcommit {mc "Warn before committing
> to a detached head"}}
>  		{s gui.stageuntracked {mc "Staging of untracked
> files"} {list "yes" "no" "ask"}}
> +		{i-1..99 gui.tabsize {mc "Tab spacing"}}
>  		} {
>  		set type [lindex $option 0]
>  		set name [lindex $option 1]
>
> ---------------
>
> Regards,
>
> Krzysztof

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

* Re: [PATCH] git-gui: add configurable tab size to the diff view git-gui - why not added to git-gui ?
  2014-09-19 16:56 ` Junio C Hamano
@ 2014-09-19 17:02   ` Junio C Hamano
  2014-09-19 17:44     ` pb158
  0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2014-09-19 17:02 UTC (permalink / raw)
  To: Pat Thoyts; +Cc: git, pb158

Junio C Hamano <gitster@pobox.com> writes:

> I do not use git-gui, and I do not speak very good tcl/tk either, so
> I won't comment on the patch itself (Cc'ed its maintainer Pat), but
> thanks for trying to relay, anyway.
>
>> ----------------------
>>
>> For Tk 8.5 the "wordprocessor" mode allows us to get a bit fancy for merge
>> diffs and intend the tabs by one to compensate for the additional diff
>> marker at the line start.
>>
>> The code is heavily based on how gitk handles tabs.
>>
>> Signed-off-by: Michael Lutz <michi@xxxxxxxxxxxxxx>
>
> With this, the author refuses to be contacted if/when any question
> arises wrt the provenance of the patch, which is not a usable form
> of a sign-off.  When you relay a change from somebody else who
> claims that he has rights to contribute the change to the project,
> and you have the rights to relay that change to the project, please
> also add your own sign-off.

Heh, I spoke too fast.  The original is at $gmane/190576 [*1*] and
the butchering of the address is only due to the the spinics list
archive pb158 grabbed his or her copy from.

So we don't need any forwarder's sign-off.  As long as the change is
acceptable (I have no opinion on it), the original can be directly
applied.


[References] 

*1* http://article.gmane.org/gmane.comp.version-control.git/190576/raw

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

* Re: [PATCH] git-gui: add configurable tab size to the diff view git-gui - why not added to git-gui ?
  2014-09-19 17:02   ` Junio C Hamano
@ 2014-09-19 17:44     ` pb158
  2014-09-19 18:05       ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: pb158 @ 2014-09-19 17:44 UTC (permalink / raw)
  To: git

On 19.09.2014 19:02, Junio C Hamano wrote:
> [References]
>
> *1* http://article.gmane.org/gmane.comp.version-control.git/190576/raw
>

This solves the problem, I hope that the patch will come to git source 
and will not be forgotten as before ( 
http://thread.gmane.org/gmane.comp.version-control.git/190576/focus=192034 )

Krzysztof

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

* Re: [PATCH] git-gui: add configurable tab size to the diff view git-gui - why not added to git-gui ?
  2014-09-19 17:44     ` pb158
@ 2014-09-19 18:05       ` Junio C Hamano
  0 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2014-09-19 18:05 UTC (permalink / raw)
  To: pb158; +Cc: git

pb158 <pb158@tlen.pl> writes:

> On 19.09.2014 19:02, Junio C Hamano wrote:
>> [References]
>>
>> *1* http://article.gmane.org/gmane.comp.version-control.git/190576/raw
>>
>
> This solves the problem, I hope ...

Not so fast.  It could be that people were not interested in the
change for a reason when it was posted.  We'll see ;-)

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

end of thread, other threads:[~2014-09-19 18:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-19 14:33 [PATCH] git-gui: add configurable tab size to the diff view git-gui - why not added to git-gui ? pb158
2014-09-19 16:56 ` Junio C Hamano
2014-09-19 17:02   ` Junio C Hamano
2014-09-19 17:44     ` pb158
2014-09-19 18:05       ` Junio C Hamano

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).