2 # Tcl ignores the next line -*- tcl -*- \
3 if test "z$*" = zversion \
4 ||
test "z$*" = z--version
; \
6 echo 'git-gui version @@GITGUI_VERSION@@'; \
11 set appvers
{@@GITGUI_VERSION@@
}
13 Copyright ©
2006, 2007 Shawn Pearce
, et. al.
15 This program is free software
; you can redistribute it and
/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation
; either version
2 of the License
, or
18 (at your option
) any later version.
20 This program is distributed
in the hope that it will be useful
,
21 but WITHOUT ANY WARRANTY
; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License
for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program
; if not
, write to the Free Software
27 Foundation
, Inc.
, 59 Temple Place
, Suite
330, Boston
, MA
02111-1307 USA
}
29 ######################################################################
31 ## Tcl/Tk sanity check
33 if {[catch
{package require Tcl
8.4} err
]
34 ||
[catch
{package require Tk
8.4} err
]
40 -title "git-gui: fatal error" \
45 catch
{rename send
{}} ; # What an evil concept...
47 ######################################################################
51 set oguilib
{@@GITGUI_LIBDIR@@
}
52 set oguirel
{@@GITGUI_RELATIVE@@
}
53 if {$oguirel eq
{1}} {
54 set oguilib
[file dirname [file dirname [file normalize
$argv0]]]
55 set oguilib
[file join $oguilib share git-gui lib
]
56 set oguimsg
[file join $oguilib msgs
]
57 } elseif
{[string match @@
* $oguirel]} {
58 set oguilib
[file join [file dirname [file normalize
$argv0]] lib
]
59 set oguimsg
[file join [file dirname [file normalize
$argv0]] po
]
61 set oguimsg
[file join $oguilib msgs
]
65 ######################################################################
67 ## enable verbose loading?
69 if {![catch
{set _verbose
$env(GITGUI_VERBOSE
)}]} {
71 rename auto_load real__auto_load
72 proc auto_load
{name args
} {
73 puts stderr
"auto_load $name"
74 return [uplevel
1 real__auto_load
$name $args]
76 rename
source real__source
78 puts stderr
"source $name"
79 uplevel
1 real__source
$name
83 ######################################################################
85 ## Internationalization (i18n) through msgcat and gettext. See
86 ## http://www.gnu.org/software/gettext/manual/html_node/Tcl.html
88 package require msgcat
91 set fmt [::msgcat
::mc
$fmt]
92 set cmk
[string first @@
$fmt]
94 set fmt [string range
$fmt 0 [expr {$cmk - 1}]]
96 return [eval [list format
$fmt] $args]
99 ::msgcat
::mcload
$oguimsg
102 ######################################################################
106 set _appname
[lindex
[file split $argv0] end
]
123 return [eval [list
file join $_gitdir] $args]
126 proc gitexec
{args
} {
128 if {$_gitexec eq
{}} {
129 if {[catch
{set _gitexec
[git
--exec-path]} err
]} {
130 error
"Git not installed?\n\n$err"
133 set _gitexec
[exec cygpath \
138 set _gitexec
[file normalize
$_gitexec]
144 return [eval [list
file join $_gitexec] $args]
152 if {[tk windowingsystem
] eq
{aqua
}} {
159 if {$
::tcl_platform
(platform
) eq
{windows
}} {
167 if {$_iscygwin eq
{}} {
168 if {$
::tcl_platform
(platform
) eq
{windows
}} {
169 if {[catch
{set p
[exec cygpath
--windir]} err
]} {
181 proc is_enabled
{option
} {
182 global enabled_options
183 if {[catch
{set on
$enabled_options($option)}]} {return 0}
187 proc enable_option
{option
} {
188 global enabled_options
189 set enabled_options
($option) 1
192 proc disable_option
{option
} {
193 global enabled_options
194 set enabled_options
($option) 0
197 ######################################################################
201 proc is_many_config
{name
} {
202 switch
-glob -- $name {
211 proc is_config_true
{name
} {
213 if {[catch
{set v
$repo_config($name)}]} {
215 } elseif
{$v eq
{true
} ||
$v eq
{1} ||
$v eq
{yes}} {
222 proc get_config
{name
} {
224 if {[catch
{set v
$repo_config($name)}]} {
231 proc load_config
{include_global
} {
232 global repo_config global_config default_config
234 array
unset global_config
235 if {$include_global} {
237 set fd_rc
[git_read config
--global --list]
238 while {[gets
$fd_rc line
] >= 0} {
239 if {[regexp
{^
([^
=]+)=(.
*)$
} $line line name value
]} {
240 if {[is_many_config
$name]} {
241 lappend global_config
($name) $value
243 set global_config
($name) $value
251 array
unset repo_config
253 set fd_rc
[git_read config
--list]
254 while {[gets
$fd_rc line
] >= 0} {
255 if {[regexp
{^
([^
=]+)=(.
*)$
} $line line name value
]} {
256 if {[is_many_config
$name]} {
257 lappend repo_config
($name) $value
259 set repo_config
($name) $value
266 foreach name
[array names default_config
] {
267 if {[catch
{set v
$global_config($name)}]} {
268 set global_config
($name) $default_config($name)
270 if {[catch
{set v
$repo_config($name)}]} {
271 set repo_config
($name) $default_config($name)
276 ######################################################################
280 proc _git_cmd
{name
} {
283 if {[catch
{set v
$_git_cmd_path($name)}]} {
287 --exec-path { return [list $
::_git
$name] }
290 set p
[gitexec git-
$name$
::_search_exe
]
291 if {[file exists
$p]} {
293 } elseif
{[is_Windows
] && [file exists
[gitexec git-
$name]]} {
294 # Try to determine what sort of magic will make
295 # git-$name go and do its thing, because native
296 # Tcl on Windows doesn't know it.
298 set p
[gitexec git-
$name]
303 switch
-glob -- [lindex
$s 0] {
305 #!*perl { set i perl }
306 #!*python { set i python }
307 default
{ error
"git-$name is not supported: $s" }
311 if {![info exists interp
]} {
312 set interp
[_which
$i]
315 error
"git-$name requires $i (not in PATH)"
317 set v
[concat
[list
$interp] [lrange
$s 1 end
] [list
$p]]
319 # Assume it is builtin to git somehow and we
320 # aren't actually able to see a file for it.
322 set v
[list $
::_git
$name]
324 set _git_cmd_path
($name) $v
330 global env _search_exe _search_path
332 if {$_search_path eq
{}} {
334 set _search_path
[split [exec cygpath \
340 } elseif
{[is_Windows
]} {
341 set _search_path
[split $env(PATH
) {;}]
344 set _search_path
[split $env(PATH
) :]
349 foreach p
$_search_path {
350 set p
[file join $p $what$_search_exe]
351 if {[file exists
$p]} {
352 return [file normalize
$p]
358 proc _lappend_nice
{cmd_var
} {
362 if {![info exists _nice
]} {
363 set _nice
[_which nice
]
374 switch
-- [lindex
$args 0] {
385 set args
[lrange
$args 1 end
]
388 set cmdp
[_git_cmd
[lindex
$args 0]]
389 set args
[lrange
$args 1 end
]
391 return [eval $opt $cmdp $args]
394 proc _open_stdout_stderr
{cmd
} {
398 if { [lindex
$cmd end
] eq
{2>@
1}
399 && $err eq
{can not
find channel named
"1"}
401 # Older versions of Tcl 8.4 don't have this 2>@1 IO
402 # redirect operator. Fallback to |& cat for those.
403 # The command was not actually started, so its safe
404 # to try to start it a second time.
406 set fd
[open
[concat \
407 [lrange
$cmd 0 end-1
] \
414 fconfigure
$fd -eofchar {}
418 proc git_read
{args
} {
422 switch
-- [lindex
$args 0] {
437 set args
[lrange
$args 1 end
]
440 set cmdp
[_git_cmd
[lindex
$args 0]]
441 set args
[lrange
$args 1 end
]
443 return [_open_stdout_stderr
[concat
$opt $cmdp $args]]
446 proc git_write
{args
} {
450 switch
-- [lindex
$args 0] {
461 set args
[lrange
$args 1 end
]
464 set cmdp
[_git_cmd
[lindex
$args 0]]
465 set args
[lrange
$args 1 end
]
467 return [open
[concat
$opt $cmdp $args] w
]
471 regsub
-all ' $value "'\\''" value
475 proc load_current_branch {} {
476 global current_branch is_detached
478 set fd [open [gitdir HEAD] r]
479 if {[gets $fd ref] < 1} {
484 set pfx {ref: refs/heads/}
485 set len [string length $pfx]
486 if {[string equal -length $len $pfx $ref]} {
487 # We're on a branch. It might not exist. But
488 # HEAD looks good enough to be a branch.
490 set current_branch [string range $ref $len end]
493 # Assume this is a detached head.
495 set current_branch HEAD
500 auto_load tk_optionMenu
501 rename tk_optionMenu real__tkOptionMenu
502 proc tk_optionMenu {w varName args} {
503 set m [eval real__tkOptionMenu $w $varName $args]
504 $m configure -font font_ui
505 $w configure -font font_ui
509 ######################################################################
513 set _git [_which git]
515 catch {wm withdraw .}
516 error_popup [mc "Cannot
find git
in PATH.
"]
520 ######################################################################
524 if {[catch {set _git_version [git --version]} err]} {
525 catch {wm withdraw .}
529 -title "git-gui
: fatal error
" \
530 -message "Cannot determine Git version
:
534 [appname
] requires Git
1.5.0 or later.
"
537 if {![regsub {^git version } $_git_version {} _git_version]} {
538 catch {wm withdraw .}
542 -title "git-gui
: fatal error
" \
543 -message [append [mc "Cannot parse Git version string
:"] "\n\n$_git_version"]
547 set _real_git_version $_git_version
548 regsub -- {-dirty$} $_git_version {} _git_version
549 regsub {\.[0-9]+\.g[0-9a-f]+$} $_git_version {} _git_version
550 regsub {\.rc[0-9]+$} $_git_version {} _git_version
551 regsub {\.GIT$} $_git_version {} _git_version
553 if {![regexp {^[1-9]+(\.[0-9]+)+$} $_git_version]} {
554 catch {wm withdraw .}
559 -title "[appname
]: warning
" \
560 -message [mc "Git version cannot be determined.
562 %s claims it is version
'%s'.
564 %s requires
at least Git
1.5.0 or later.
566 Assume
'%s' is version
1.5.0?
567 " $_git $_real_git_version [appname] $_real_git_version]] eq {yes}} {
568 set _git_version 1.5.0
573 unset _real_git_version
575 proc git-version {args} {
578 switch [llength $args] {
584 set op [lindex $args 0]
585 set vr [lindex $args 1]
586 set cm [package vcompare $_git_version $vr]
587 return [expr $cm $op 0]
591 set type [lindex $args 0]
592 set name [lindex $args 1]
593 set parm [lindex $args 2]
594 set body [lindex $args 3]
596 if {($type ne {proc} && $type ne {method})} {
597 error "Invalid arguments to git-version
"
599 if {[llength $body] < 2 || [lindex $body end-1] ne {default}} {
600 error "Last arm of
$type $name must be default
"
603 foreach {op vr cb} [lrange $body 0 end-2] {
604 if {[git-version $op $vr]} {
605 return [uplevel [list $type $name $parm $cb]]
609 return [uplevel [list $type $name $parm [lindex $body end]]]
613 error "git-version
>= x
"
619 if {[git-version < 1.5]} {
620 catch {wm withdraw .}
624 -title "git-gui
: fatal error
" \
625 -message "[appname
] requires Git
1.5.0 or later.
627 You are using
[git-version
]:
633 ######################################################################
635 ## configure our library
637 set idx [file join $oguilib tclIndex]
638 if {[catch {set fd [open $idx r]} err]} {
639 catch {wm withdraw .}
643 -title "git-gui
: fatal error
" \
647 if {[gets $fd] eq {# Autogenerated by git-gui Makefile}} {
649 while {[gets $fd n] >= 0} {
650 if {$n ne {} && ![string match #* $n]} {
662 if {[lsearch -exact $loaded $p] >= 0} continue
663 source [file join $oguilib $p]
668 set auto_path [concat [list $oguilib] $auto_path]
670 unset -nocomplain idx fd
672 ######################################################################
674 ## feature option selection
676 if {[regexp {^git-(.+)$} [appname] _junk subcommand]} {
681 if {$subcommand eq {gui.sh}} {
684 if {$subcommand eq {gui} && [llength $argv] > 0} {
685 set subcommand [lindex $argv 0]
686 set argv [lrange $argv 1 end]
689 enable_option multicommit
691 enable_option transport
694 switch -- $subcommand {
699 disable_option multicommit
700 disable_option branch
701 disable_option transport
704 enable_option singlecommit
706 disable_option multicommit
707 disable_option branch
708 disable_option transport
712 ######################################################################
717 set _gitdir $env(GIT_DIR)
721 set _gitdir [git rev-parse --git-dir]
722 set _prefix [git rev-parse --show-prefix]
724 catch {wm withdraw .}
725 error_popup [append [mc "Cannot
find the git directory
:"] "\n\n$err"]
728 if {![file isdirectory $_gitdir] && [is_Cygwin]} {
729 catch {set _gitdir [exec cygpath --unix $_gitdir]}
731 if {![file isdirectory $_gitdir]} {
732 catch {wm withdraw .}
733 error_popup [append [mc "Git directory not found
:"] "\n\n$_gitdir"]
736 if {$_prefix ne {}} {
737 regsub -all {[^/]+/} $_prefix ../ cdup
738 if {[catch {cd $cdup} err]} {
739 catch {wm withdraw .}
740 error_popup "Cannot move to top of working directory
:\n\n$err"
744 } elseif {![is_enabled bare]} {
745 if {[lindex [file split $_gitdir] end] ne {.git}} {
746 catch {wm withdraw .}
747 error_popup [append [mc "Cannot use funny .git directory
:"] "\n\n$_gitdir"]
750 if {[catch {cd [file dirname $_gitdir]} err]} {
751 catch {wm withdraw .}
752 error_popup [append [mc "No working directory
"] " [file dirname $_gitdir]:\n\n$err"]
756 set _reponame [file split [file normalize $_gitdir]]
757 if {[lindex $_reponame end] eq {.git}} {
758 set _reponame [lindex $_reponame end-1]
760 set _reponame [lindex $_reponame end]
763 ######################################################################
767 set current_diff_path {}
768 set current_diff_side {}
769 set diff_actions [list]
773 set MERGE_HEAD [list]
776 set current_branch {}
778 set current_diff_path {}
780 set selected_commit_type new
782 ######################################################################
790 set disable_on_lock [list]
791 set index_lock_type none
793 proc lock_index {type} {
794 global index_lock_type disable_on_lock
796 if {$index_lock_type eq {none}} {
797 set index_lock_type $type
798 foreach w $disable_on_lock {
799 uplevel #0 $w disabled
802 } elseif {$index_lock_type eq "begin-
$type"} {
803 set index_lock_type $type
809 proc unlock_index {} {
810 global index_lock_type disable_on_lock
812 set index_lock_type none
813 foreach w $disable_on_lock {
818 ######################################################################
822 proc repository_state {ctvar hdvar mhvar} {
823 global current_branch
824 upvar $ctvar ct $hdvar hd $mhvar mh
829 if {[catch {set hd [git rev-parse --verify HEAD]}]} {
835 set merge_head [gitdir MERGE_HEAD]
836 if {[file exists $merge_head]} {
838 set fd_mh [open $merge_head r]
839 while {[gets $fd_mh line] >= 0} {
850 global PARENT empty_tree
852 set p [lindex $PARENT 0]
856 if {$empty_tree eq {}} {
857 set empty_tree [git mktree << {}]
862 proc rescan {after {honor_trustmtime 1}} {
863 global HEAD PARENT MERGE_HEAD commit_type
864 global ui_index ui_workdir ui_comm
865 global rescan_active file_states
868 if {$rescan_active > 0 || ![lock_index read]} return
870 repository_state newType newHEAD newMERGE_HEAD
871 if {[string match amend* $commit_type]
872 && $newType eq {normal}
873 && $newHEAD eq $HEAD} {
877 set MERGE_HEAD $newMERGE_HEAD
878 set commit_type $newType
881 array unset file_states
883 if {!$::GITGUI_BCK_exists &&
884 (![$ui_comm edit modified]
885 || [string trim [$ui_comm get 0.0 end]] eq {})} {
886 if {[string match amend* $commit_type]} {
887 } elseif {[load_message GITGUI_MSG]} {
888 } elseif {[load_message MERGE_MSG]} {
889 } elseif {[load_message SQUASH_MSG]} {
892 $ui_comm edit modified false
895 if {$honor_trustmtime && $repo_config(gui.trustmtime) eq {true}} {
896 rescan_stage2 {} $after
899 ui_status [mc "Refreshing
file status...
"]
900 set fd_rf [git_read update-index \
906 fconfigure $fd_rf -blocking 0 -translation binary
907 fileevent $fd_rf readable \
908 [list rescan_stage2 $fd_rf $after]
912 proc rescan_stage2 {fd after} {
913 global rescan_active buf_rdi buf_rdf buf_rlo
917 if {![eof $fd]} return
921 set ls_others [list --exclude-per-directory=.gitignore]
922 set info_exclude [gitdir info exclude]
923 if {[file readable $info_exclude]} {
924 lappend ls_others "--exclude-from=$info_exclude"
926 set user_exclude [get_config core.excludesfile]
927 if {$user_exclude ne {} && [file readable $user_exclude]} {
928 lappend ls_others "--exclude-from=$user_exclude"
936 ui_status [mc "Scanning
for modified files ...
"]
937 set fd_di [git_read diff-index --cached -z [PARENT]]
938 set fd_df [git_read diff-files -z]
939 set fd_lo [eval git_read ls-files --others -z $ls_others]
941 fconfigure $fd_di -blocking 0 -translation binary -encoding binary
942 fconfigure $fd_df -blocking 0 -translation binary -encoding binary
943 fconfigure $fd_lo -blocking 0 -translation binary -encoding binary
944 fileevent $fd_di readable [list read_diff_index $fd_di $after]
945 fileevent $fd_df readable [list read_diff_files $fd_df $after]
946 fileevent $fd_lo readable [list read_ls_others $fd_lo $after]
949 proc load_message {file} {
953 if {[file isfile $f]} {
954 if {[catch {set fd [open $f r]}]} {
957 fconfigure $fd -eofchar {}
958 set content [string trim [read $fd]]
960 regsub -all -line {[ \r\t]+$} $content {} content
961 $ui_comm delete 0.0 end
962 $ui_comm insert end $content
968 proc read_diff_index {fd after} {
971 append buf_rdi [read $fd]
973 set n [string length $buf_rdi]
975 set z1 [string first "\
0" $buf_rdi $c]
978 set z2 [string first "\
0" $buf_rdi $z1]
982 set i [split [string range $buf_rdi $c [expr {$z1 - 2}]] { }]
983 set p [string range $buf_rdi $z1 [expr {$z2 - 1}]]
985 [encoding convertfrom $p] \
987 [list [lindex $i 0] [lindex $i 2]] \
993 set buf_rdi [string range $buf_rdi $c end]
998 rescan_done $fd buf_rdi $after
1001 proc read_diff_files {fd after} {
1004 append buf_rdf [read $fd]
1006 set n [string length $buf_rdf]
1008 set z1 [string first "\
0" $buf_rdf $c]
1009 if {$z1 == -1} break
1011 set z2 [string first "\
0" $buf_rdf $z1]
1012 if {$z2 == -1} break
1015 set i [split [string range $buf_rdf $c [expr {$z1 - 2}]] { }]
1016 set p [string range $buf_rdf $z1 [expr {$z2 - 1}]]
1018 [encoding convertfrom $p] \
1021 [list [lindex $i 0] [lindex $i 2]]
1026 set buf_rdf [string range $buf_rdf $c end]
1031 rescan_done $fd buf_rdf $after
1034 proc read_ls_others {fd after} {
1037 append buf_rlo [read $fd]
1038 set pck [split $buf_rlo "\
0"]
1039 set buf_rlo [lindex $pck end]
1040 foreach p [lrange $pck 0 end-1] {
1041 set p [encoding convertfrom $p]
1042 if {[string index $p end] eq {/}} {
1043 set p [string range $p 0 end-1]
1047 rescan_done $fd buf_rlo $after
1050 proc rescan_done {fd buf after} {
1051 global rescan_active current_diff_path
1052 global file_states repo_config
1055 if {![eof $fd]} return
1058 if {[incr rescan_active -1] > 0} return
1063 if {$current_diff_path ne {}} reshow_diff
1067 proc prune_selection {} {
1068 global file_states selected_paths
1070 foreach path [array names selected_paths] {
1071 if {[catch {set still_here $file_states($path)}]} {
1072 unset selected_paths($path)
1077 ######################################################################
1081 proc mapicon {w state path} {
1084 if {[catch {set r $all_icons($state$w)}]} {
1085 puts "error
: no icon
for $w state
={$state} $path"
1091 proc mapdesc {state path} {
1094 if {[catch {set r $all_descs($state)}]} {
1095 puts "error
: no desc
for state
={$state} $path"
1101 proc ui_status {msg} {
1102 $::main_status show $msg
1105 proc ui_ready {{test {}}} {
1106 $::main_status show [mc "Ready.
"] $test
1109 proc escape_path {path} {
1110 regsub -all {\\} $path "\\\\" path
1111 regsub -all "\n" $path "\\n
" path
1115 proc short_path {path} {
1116 return [escape_path [lindex [file split $path] end]]
1120 set null_sha1 [string repeat 0 40]
1122 proc merge_state {path new_state {head_info {}} {index_info {}}} {
1123 global file_states next_icon_id null_sha1
1125 set s0 [string index $new_state 0]
1126 set s1 [string index $new_state 1]
1128 if {[catch {set info $file_states($path)}]} {
1130 set icon n[incr next_icon_id]
1132 set state [lindex $info 0]
1133 set icon [lindex $info 1]
1134 if {$head_info eq {}} {set head_info [lindex $info 2]}
1135 if {$index_info eq {}} {set index_info [lindex $info 3]}
1138 if {$s0 eq {?}} {set s0 [string index $state 0]} \
1139 elseif {$s0 eq {_}} {set s0 _}
1141 if {$s1 eq {?}} {set s1 [string index $state 1]} \
1142 elseif {$s1 eq {_}} {set s1 _}
1144 if {$s0 eq {A} && $s1 eq {_} && $head_info eq {}} {
1145 set head_info [list 0 $null_sha1]
1146 } elseif {$s0 ne {_} && [string index $state 0] eq {_}
1147 && $head_info eq {}} {
1148 set head_info $index_info
1151 set file_states($path) [list $s0$s1 $icon \
1152 $head_info $index_info \
1157 proc display_file_helper {w path icon_name old_m new_m} {
1160 if {$new_m eq {_}} {
1161 set lno [lsearch -sorted -exact $file_lists($w) $path]
1163 set file_lists($w) [lreplace $file_lists($w) $lno $lno]
1165 $w conf -state normal
1166 $w delete $lno.0 [expr {$lno + 1}].0
1167 $w conf -state disabled
1169 } elseif {$old_m eq {_} && $new_m ne {_}} {
1170 lappend file_lists($w) $path
1171 set file_lists($w) [lsort -unique $file_lists($w)]
1172 set lno [lsearch -sorted -exact $file_lists($w) $path]
1174 $w conf -state normal
1175 $w image create $lno.0 \
1176 -align center -padx 5 -pady 1 \
1178 -image [mapicon $w $new_m $path]
1179 $w insert $lno.1 "[escape_path
$path]\n"
1180 $w conf -state disabled
1181 } elseif {$old_m ne $new_m} {
1182 $w conf -state normal
1183 $w image conf $icon_name -image [mapicon $w $new_m $path]
1184 $w conf -state disabled
1188 proc display_file {path state} {
1189 global file_states selected_paths
1190 global ui_index ui_workdir
1192 set old_m [merge_state $path $state]
1193 set s $file_states($path)
1194 set new_m [lindex $s 0]
1195 set icon_name [lindex $s 1]
1197 set o [string index $old_m 0]
1198 set n [string index $new_m 0]
1205 display_file_helper $ui_index $path $icon_name $o $n
1207 if {[string index $old_m 0] eq {U}} {
1210 set o [string index $old_m 1]
1212 if {[string index $new_m 0] eq {U}} {
1215 set n [string index $new_m 1]
1217 display_file_helper $ui_workdir $path $icon_name $o $n
1219 if {$new_m eq {__}} {
1220 unset file_states($path)
1221 catch {unset selected_paths($path)}
1225 proc display_all_files_helper {w path icon_name m} {
1228 lappend file_lists($w) $path
1229 set lno [expr {[lindex [split [$w index end] .] 0] - 1}]
1230 $w image create end \
1231 -align center -padx 5 -pady 1 \
1233 -image [mapicon $w $m $path]
1234 $w insert end "[escape_path
$path]\n"
1237 proc display_all_files {} {
1238 global ui_index ui_workdir
1239 global file_states file_lists
1242 $ui_index conf -state normal
1243 $ui_workdir conf -state normal
1245 $ui_index delete 0.0 end
1246 $ui_workdir delete 0.0 end
1249 set file_lists($ui_index) [list]
1250 set file_lists($ui_workdir) [list]
1252 foreach path [lsort [array names file_states]] {
1253 set s $file_states($path)
1255 set icon_name [lindex $s 1]
1257 set s [string index $m 0]
1258 if {$s ne {U} && $s ne {_}} {
1259 display_all_files_helper $ui_index $path \
1263 if {[string index $m 0] eq {U}} {
1266 set s [string index $m 1]
1269 display_all_files_helper $ui_workdir $path \
1274 $ui_index conf -state disabled
1275 $ui_workdir conf -state disabled
1278 ######################################################################
1283 #define mask_width 14
1284 #define mask_height 15
1285 static unsigned char mask_bits[] = {
1286 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
1287 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
1288 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
1291 image create bitmap file_plain -background white -foreground black -data {
1292 #define plain_width 14
1293 #define plain_height 15
1294 static unsigned char plain_bits[] = {
1295 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
1296 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
1297 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1298 } -maskdata $filemask
1300 image create bitmap file_mod -background white -foreground blue -data {
1301 #define mod_width 14
1302 #define mod_height 15
1303 static unsigned char mod_bits[] = {
1304 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
1305 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
1306 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
1307 } -maskdata $filemask
1309 image create bitmap file_fulltick -background white -foreground "#007000" -data {
1310 #define file_fulltick_width 14
1311 #define file_fulltick_height 15
1312 static unsigned char file_fulltick_bits
[] = {
1313 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
1314 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
1315 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1316 } -maskdata $filemask
1318 image create bitmap file_parttick
-background white
-foreground "#005050" -data {
1319 #define parttick_width 14
1320 #define parttick_height 15
1321 static unsigned char parttick_bits
[] = {
1322 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
1323 0x7a, 0x14, 0x02, 0x16, 0x02, 0x13, 0x8a, 0x11, 0xda, 0x10, 0x72, 0x10,
1324 0x22, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1325 } -maskdata $filemask
1327 image create bitmap file_question
-background white
-foreground black
-data {
1328 #define file_question_width 14
1329 #define file_question_height 15
1330 static unsigned char file_question_bits
[] = {
1331 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
1332 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
1333 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1334 } -maskdata $filemask
1336 image create bitmap file_removed
-background white
-foreground red
-data {
1337 #define file_removed_width 14
1338 #define file_removed_height 15
1339 static unsigned char file_removed_bits
[] = {
1340 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
1341 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
1342 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
1343 } -maskdata $filemask
1345 image create bitmap file_merge
-background white
-foreground blue
-data {
1346 #define file_merge_width 14
1347 #define file_merge_height 15
1348 static unsigned char file_merge_bits
[] = {
1349 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
1350 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
1351 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
1352 } -maskdata $filemask
1354 set ui_index .vpane.files.index.list
1355 set ui_workdir .vpane.files.workdir.list
1357 set all_icons
(_
$ui_index) file_plain
1358 set all_icons
(A
$ui_index) file_fulltick
1359 set all_icons
(M
$ui_index) file_fulltick
1360 set all_icons
(D
$ui_index) file_removed
1361 set all_icons
(U
$ui_index) file_merge
1363 set all_icons
(_
$ui_workdir) file_plain
1364 set all_icons
(M
$ui_workdir) file_mod
1365 set all_icons
(D
$ui_workdir) file_question
1366 set all_icons
(U
$ui_workdir) file_merge
1367 set all_icons
(O
$ui_workdir) file_plain
1369 set max_status_desc
0
1371 {__
{mc
"Unmodified"}}
1373 {_M
{mc
"Modified, not staged"}}
1374 {M_
{mc
"Staged for commit"}}
1375 {MM
{mc
"Portions staged for commit"}}
1376 {MD
{mc
"Staged for commit, missing"}}
1378 {_O
{mc
"Untracked, not staged"}}
1379 {A_
{mc
"Staged for commit"}}
1380 {AM
{mc
"Portions staged for commit"}}
1381 {AD
{mc
"Staged for commit, missing"}}
1384 {D_
{mc
"Staged for removal"}}
1385 {DO
{mc
"Staged for removal, still present"}}
1387 {U_
{mc
"Requires merge resolution"}}
1388 {UU
{mc
"Requires merge resolution"}}
1389 {UM
{mc
"Requires merge resolution"}}
1390 {UD
{mc
"Requires merge resolution"}}
1392 set text
[eval [lindex
$i 1]]
1393 if {$max_status_desc < [string length
$text]} {
1394 set max_status_desc
[string length
$text]
1396 set all_descs
([lindex
$i 0]) $text
1400 ######################################################################
1404 proc bind_button3
{w cmd
} {
1405 bind $w <Any-Button-3
> $cmd
1407 # Mac OS X sends Button-2 on right click through three-button mouse,
1408 # or through trackpad right-clicking (two-finger touch + click).
1409 bind $w <Any-Button-2
> $cmd
1410 bind $w <Control-Button-1
> $cmd
1414 proc scrollbar2many
{list mode args
} {
1415 foreach w
$list {eval $w $mode $args}
1418 proc many2scrollbar
{list mode sb top bottom
} {
1419 $sb set $top $bottom
1420 foreach w
$list {$w $mode moveto
$top}
1423 proc incr_font_size
{font
{amt
1}} {
1424 set sz
[font configure
$font -size]
1426 font configure
$font -size $sz
1427 font configure
${font}bold
-size $sz
1428 font configure
${font}italic
-size $sz
1431 ######################################################################
1435 set starting_gitk_msg
[mc
"Starting gitk... please wait..."]
1437 proc do_gitk
{revs
} {
1438 # -- Always start gitk through whatever we were loaded with. This
1439 # lets us bypass using shell process on Windows systems.
1441 set exe
[file join [file dirname $
::_git
] gitk
]
1442 set cmd
[list
[info nameofexecutable
] $exe]
1443 if {! [file exists
$exe]} {
1444 error_popup
[mc
"Unable to start gitk:\n\n%s does not exist" $exe]
1446 eval exec $cmd $revs &
1447 ui_status $
::starting_gitk_msg
1449 ui_ready
$starting_gitk_msg
1457 global ui_comm is_quitting repo_config commit_type
1458 global GITGUI_BCK_exists GITGUI_BCK_i
1460 if {$is_quitting} return
1463 if {[winfo exists
$ui_comm]} {
1464 # -- Stash our current commit buffer.
1466 set save
[gitdir GITGUI_MSG
]
1467 if {$GITGUI_BCK_exists && ![$ui_comm edit modified
]} {
1468 file rename
-force [gitdir GITGUI_BCK
] $save
1469 set GITGUI_BCK_exists
0
1471 set msg
[string trim
[$ui_comm get
0.0 end
]]
1472 regsub
-all -line {[ \r\t]+$
} $msg {} msg
1473 if {(![string match amend
* $commit_type]
1474 ||
[$ui_comm edit modified
])
1477 set fd
[open
$save w
]
1478 puts
-nonewline $fd $msg
1482 catch
{file delete
$save}
1486 # -- Remove our editor backup, its not needed.
1488 after cancel
$GITGUI_BCK_i
1489 if {$GITGUI_BCK_exists} {
1490 catch
{file delete
[gitdir GITGUI_BCK
]}
1493 # -- Stash our current window geometry into this repository.
1495 set cfg_geometry
[list
]
1496 lappend cfg_geometry
[wm geometry .
]
1497 lappend cfg_geometry
[lindex
[.vpane sash coord
0] 1]
1498 lappend cfg_geometry
[lindex
[.vpane.files sash coord
0] 0]
1499 if {[catch
{set rc_geometry
$repo_config(gui.geometry
)}]} {
1502 if {$cfg_geometry ne
$rc_geometry} {
1503 catch
{git config gui.geometry
$cfg_geometry}
1518 proc toggle_or_diff
{w x y
} {
1519 global file_states file_lists current_diff_path ui_index ui_workdir
1520 global last_clicked selected_paths
1522 set pos
[split [$w index @
$x,$y] .
]
1523 set lno
[lindex
$pos 0]
1524 set col [lindex
$pos 1]
1525 set path
[lindex
$file_lists($w) [expr {$lno - 1}]]
1531 set last_clicked
[list
$w $lno]
1532 array
unset selected_paths
1533 $ui_index tag remove in_sel
0.0 end
1534 $ui_workdir tag remove in_sel
0.0 end
1537 if {$current_diff_path eq
$path} {
1538 set after
{reshow_diff
;}
1542 if {$w eq
$ui_index} {
1544 "Unstaging [short_path $path] from commit" \
1546 [concat
$after [list ui_ready
]]
1547 } elseif
{$w eq
$ui_workdir} {
1549 "Adding [short_path $path]" \
1551 [concat
$after [list ui_ready
]]
1554 show_diff
$path $w $lno
1558 proc add_one_to_selection
{w x y
} {
1559 global file_lists last_clicked selected_paths
1561 set lno
[lindex
[split [$w index @
$x,$y] .
] 0]
1562 set path
[lindex
$file_lists($w) [expr {$lno - 1}]]
1568 if {$last_clicked ne
{}
1569 && [lindex
$last_clicked 0] ne
$w} {
1570 array
unset selected_paths
1571 [lindex
$last_clicked 0] tag remove in_sel
0.0 end
1574 set last_clicked
[list
$w $lno]
1575 if {[catch
{set in_sel
$selected_paths($path)}]} {
1579 unset selected_paths
($path)
1580 $w tag remove in_sel
$lno.0 [expr {$lno + 1}].0
1582 set selected_paths
($path) 1
1583 $w tag add in_sel
$lno.0 [expr {$lno + 1}].0
1587 proc add_range_to_selection
{w x y
} {
1588 global file_lists last_clicked selected_paths
1590 if {[lindex
$last_clicked 0] ne
$w} {
1591 toggle_or_diff
$w $x $y
1595 set lno
[lindex
[split [$w index @
$x,$y] .
] 0]
1596 set lc
[lindex
$last_clicked 1]
1605 foreach path
[lrange
$file_lists($w) \
1606 [expr {$begin - 1}] \
1607 [expr {$end - 1}]] {
1608 set selected_paths
($path) 1
1610 $w tag add in_sel
$begin.0 [expr {$end + 1}].0
1613 ######################################################################
1617 set cursor_ptr arrow
1618 font create font_diff
-family Courier
-size 10
1622 eval font configure font_ui
[font actual
[.dummy cget
-font]]
1626 font create font_uiitalic
1627 font create font_uibold
1628 font create font_diffbold
1629 font create font_diffitalic
1631 foreach class
{Button Checkbutton Entry Label
1632 Labelframe Listbox Menu Message
1633 Radiobutton Spinbox Text
} {
1634 option add
*$class.font font_ui
1638 if {[is_Windows
] ||
[is_MacOSX
]} {
1639 option add
*Menu.tearOff
0
1650 proc apply_config
{} {
1651 global repo_config font_descs
1653 foreach option
$font_descs {
1654 set name
[lindex
$option 0]
1655 set font
[lindex
$option 1]
1657 foreach
{cn cv
} $repo_config(gui.
$name) {
1658 font configure
$font $cn $cv
1661 error_popup
[append
[mc
"Invalid font specified in %s:" "gui.$name"] "\n\n$err"]
1663 foreach
{cn cv
} [font configure
$font] {
1664 font configure
${font}bold
$cn $cv
1665 font configure
${font}italic
$cn $cv
1667 font configure
${font}bold
-weight bold
1668 font configure
${font}italic
-slant italic
1672 set default_config
(merge.diffstat
) true
1673 set default_config
(merge.summary
) false
1674 set default_config
(merge.verbosity
) 2
1675 set default_config
(user.name
) {}
1676 set default_config
(user.email
) {}
1678 set default_config
(gui.matchtrackingbranch
) false
1679 set default_config
(gui.pruneduringfetch
) false
1680 set default_config
(gui.trustmtime
) false
1681 set default_config
(gui.diffcontext
) 5
1682 set default_config
(gui.newbranchtemplate
) {}
1683 set default_config
(gui.fontui
) [font configure font_ui
]
1684 set default_config
(gui.fontdiff
) [font configure font_diff
]
1686 {fontui font_ui
{mc
"Main Font"}}
1687 {fontdiff font_diff
{mc
"Diff/Console Font"}}
1692 ######################################################################
1700 menu .mbar
-tearoff 0
1701 .mbar add cascade
-label [mc Repository
] -menu .mbar.repository
1702 .mbar add cascade
-label [mc Edit
] -menu .mbar.edit
1703 if {[is_enabled branch
]} {
1704 .mbar add cascade
-label [mc Branch
] -menu .mbar.branch
1706 if {[is_enabled multicommit
] ||
[is_enabled singlecommit
]} {
1707 .mbar add cascade
-label [mc Commit
] -menu .mbar.commit
1709 if {[is_enabled transport
]} {
1710 .mbar add cascade
-label [mc Merge
] -menu .mbar.merge
1711 .mbar add cascade
-label [mc Fetch
] -menu .mbar.fetch
1712 .mbar add cascade
-label [mc Push
] -menu .mbar.push
1714 . configure
-menu .mbar
1716 # -- Repository Menu
1718 menu .mbar.repository
1720 .mbar.repository add
command \
1721 -label [mc
"Browse Current Branch's Files"] \
1722 -command {browser
::new
$current_branch}
1723 set ui_browse_current
[.mbar.repository index last
]
1724 .mbar.repository add
command \
1725 -label [mc
"Browse Branch Files..."] \
1726 -command browser_open
::dialog
1727 .mbar.repository add separator
1729 .mbar.repository add
command \
1730 -label [mc
"Visualize Current Branch's History"] \
1731 -command {do_gitk
$current_branch}
1732 set ui_visualize_current
[.mbar.repository index last
]
1733 .mbar.repository add
command \
1734 -label [mc
"Visualize All Branch History"] \
1735 -command {do_gitk
--all}
1736 .mbar.repository add separator
1738 proc current_branch_write
{args
} {
1739 global current_branch
1740 .mbar.repository entryconf $
::ui_browse_current \
1741 -label [mc
"Browse %s's Files" $current_branch]
1742 .mbar.repository entryconf $
::ui_visualize_current \
1743 -label [mc
"Visualize %s's History" $current_branch]
1745 trace add variable current_branch
write current_branch_write
1747 if {[is_enabled multicommit
]} {
1748 .mbar.repository add
command -label [mc
"Database Statistics"] \
1751 .mbar.repository add
command -label [mc
"Compress Database"] \
1754 .mbar.repository add
command -label [mc
"Verify Database"] \
1755 -command do_fsck_objects
1757 .mbar.repository add separator
1760 .mbar.repository add
command \
1761 -label [mc
"Create Desktop Icon"] \
1762 -command do_cygwin_shortcut
1763 } elseif
{[is_Windows
]} {
1764 .mbar.repository add
command \
1765 -label [mc
"Create Desktop Icon"] \
1766 -command do_windows_shortcut
1767 } elseif
{[is_MacOSX
]} {
1768 .mbar.repository add
command \
1769 -label [mc
"Create Desktop Icon"] \
1770 -command do_macosx_app
1774 .mbar.repository add
command -label [mc Quit
] \
1781 .mbar.edit add
command -label [mc Undo
] \
1782 -command {catch
{[focus
] edit undo
}} \
1784 .mbar.edit add
command -label [mc Redo
] \
1785 -command {catch
{[focus
] edit redo
}} \
1787 .mbar.edit add separator
1788 .mbar.edit add
command -label [mc Cut
] \
1789 -command {catch
{tk_textCut
[focus
]}} \
1791 .mbar.edit add
command -label [mc Copy
] \
1792 -command {catch
{tk_textCopy
[focus
]}} \
1794 .mbar.edit add
command -label [mc Paste
] \
1795 -command {catch
{tk_textPaste
[focus
]; [focus
] see insert
}} \
1797 .mbar.edit add
command -label [mc Delete
] \
1798 -command {catch
{[focus
] delete sel.first sel.last
}} \
1800 .mbar.edit add separator
1801 .mbar.edit add
command -label [mc
"Select All"] \
1802 -command {catch
{[focus
] tag add sel
0.0 end
}} \
1807 if {[is_enabled branch
]} {
1810 .mbar.branch add
command -label [mc
"Create..."] \
1811 -command branch_create
::dialog \
1813 lappend disable_on_lock
[list .mbar.branch entryconf \
1814 [.mbar.branch index last
] -state]
1816 .mbar.branch add
command -label [mc
"Checkout..."] \
1817 -command branch_checkout
::dialog \
1819 lappend disable_on_lock
[list .mbar.branch entryconf \
1820 [.mbar.branch index last
] -state]
1822 .mbar.branch add
command -label [mc
"Rename..."] \
1823 -command branch_rename
::dialog
1824 lappend disable_on_lock
[list .mbar.branch entryconf \
1825 [.mbar.branch index last
] -state]
1827 .mbar.branch add
command -label [mc
"Delete..."] \
1828 -command branch_delete
::dialog
1829 lappend disable_on_lock
[list .mbar.branch entryconf \
1830 [.mbar.branch index last
] -state]
1832 .mbar.branch add
command -label [mc
"Reset..."] \
1833 -command merge
::reset_hard
1834 lappend disable_on_lock
[list .mbar.branch entryconf \
1835 [.mbar.branch index last
] -state]
1840 if {[is_enabled multicommit
] ||
[is_enabled singlecommit
]} {
1843 .mbar.commit add radiobutton \
1844 -label [mc
"New Commit"] \
1845 -command do_select_commit_type \
1846 -variable selected_commit_type \
1848 lappend disable_on_lock \
1849 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
1851 .mbar.commit add radiobutton \
1852 -label [mc
"Amend Last Commit"] \
1853 -command do_select_commit_type \
1854 -variable selected_commit_type \
1856 lappend disable_on_lock \
1857 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
1859 .mbar.commit add separator
1861 .mbar.commit add
command -label [mc Rescan
] \
1862 -command do_rescan \
1864 lappend disable_on_lock \
1865 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
1867 .mbar.commit add
command -label [mc
"Stage To Commit"] \
1868 -command do_add_selection
1869 lappend disable_on_lock \
1870 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
1872 .mbar.commit add
command -label [mc
"Stage Changed Files To Commit"] \
1873 -command do_add_all \
1875 lappend disable_on_lock \
1876 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
1878 .mbar.commit add
command -label [mc
"Unstage From Commit"] \
1879 -command do_unstage_selection
1880 lappend disable_on_lock \
1881 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
1883 .mbar.commit add
command -label [mc
"Revert Changes"] \
1884 -command do_revert_selection
1885 lappend disable_on_lock \
1886 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
1888 .mbar.commit add separator
1890 .mbar.commit add
command -label [mc
"Sign Off"] \
1891 -command do_signoff \
1894 .mbar.commit add
command -label [mc Commit
] \
1895 -command do_commit \
1896 -accelerator $M1T-Return
1897 lappend disable_on_lock \
1898 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
1903 if {[is_enabled branch
]} {
1905 .mbar.merge add
command -label [mc
"Local Merge..."] \
1906 -command merge
::dialog \
1908 lappend disable_on_lock \
1909 [list .mbar.merge entryconf
[.mbar.merge index last
] -state]
1910 .mbar.merge add
command -label [mc
"Abort Merge..."] \
1911 -command merge
::reset_hard
1912 lappend disable_on_lock \
1913 [list .mbar.merge entryconf
[.mbar.merge index last
] -state]
1918 if {[is_enabled transport
]} {
1922 .mbar.push add
command -label [mc
"Push..."] \
1923 -command do_push_anywhere \
1925 .mbar.push add
command -label [mc
"Delete..."] \
1926 -command remote_branch_delete
::dialog
1930 # -- Apple Menu (Mac OS X only)
1932 .mbar add cascade
-label [mc Apple
] -menu .mbar.apple
1935 .mbar.apple add
command -label [mc
"About %s" [appname
]] \
1937 .mbar.apple add
command -label [mc
"Options..."] \
1942 .mbar.edit add separator
1943 .mbar.edit add
command -label [mc
"Options..."] \
1949 .mbar add cascade
-label [mc Help
] -menu .mbar.
help
1953 .mbar.
help add
command -label [mc
"About %s" [appname
]] \
1958 catch
{set browser
$repo_config(instaweb.browser
)}
1959 set doc_path
[file dirname [gitexec
]]
1960 set doc_path
[file join $doc_path Documentation index.html
]
1963 set doc_path
[exec cygpath
--mixed $doc_path]
1966 if {$browser eq
{}} {
1969 } elseif
{[is_Cygwin
]} {
1970 set program_files
[file dirname [exec cygpath
--windir]]
1971 set program_files
[file join $program_files {Program Files
}]
1972 set firefox
[file join $program_files {Mozilla Firefox
} firefox.exe
]
1973 set ie
[file join $program_files {Internet Explorer
} IEXPLORE.EXE
]
1974 if {[file exists
$firefox]} {
1975 set browser
$firefox
1976 } elseif
{[file exists
$ie]} {
1979 unset program_files firefox ie
1983 if {[file isfile
$doc_path]} {
1984 set doc_url
"file:$doc_path"
1986 set doc_url
{http
://www.kernel.org
/pub
/software
/scm
/git
/docs
/}
1989 if {$browser ne
{}} {
1990 .mbar.
help add
command -label [mc
"Online Documentation"] \
1991 -command [list
exec $browser $doc_url &]
1993 unset browser doc_path doc_url
1996 bind .
<Visibility
> {
1997 bind .
<Visibility
> {}
2001 # -- Standard bindings
2003 wm protocol . WM_DELETE_WINDOW do_quit
2004 bind all
<$M1B-Key-q> do_quit
2005 bind all
<$M1B-Key-Q> do_quit
2006 bind all
<$M1B-Key-w> {destroy
[winfo toplevel
%W
]}
2007 bind all
<$M1B-Key-W> {destroy
[winfo toplevel
%W
]}
2009 set subcommand_args
{}
2011 puts stderr
"usage: $::argv0 $::subcommand $::subcommand_args"
2015 # -- Not a normal commit type invocation? Do that instead!
2017 switch
-- $subcommand {
2020 set subcommand_args
{rev? path
}
2021 if {$argv eq
{}} usage
2026 if {$is_path ||
[file exists
$_prefix$a]} {
2027 if {$path ne
{}} usage
2030 } elseif
{$a eq
{--}} {
2032 if {$head ne
{}} usage
2037 } elseif
{$head eq
{}} {
2038 if {$head ne
{}} usage
2047 if {$head ne
{} && $path eq
{}} {
2048 set path
$_prefix$head
2055 if {[regexp
{^
[0-9a-f]{1,39}$
} $head]} {
2057 set head [git rev-parse
--verify $head]
2063 set current_branch
$head
2066 switch
-- $subcommand {
2069 if {$path ne
{} && [file isdirectory
$path]} {
2070 set head $current_branch
2076 browser
::new
$head $path
2079 if {$head eq
{} && ![file exists
$path]} {
2080 puts stderr
"fatal: cannot stat path $path: No such file or directory"
2083 blame
::new
$head $path
2090 if {[llength
$argv] != 0} {
2091 puts
-nonewline stderr
"usage: $argv0"
2092 if {$subcommand ne
{gui
} && [appname
] ne
"git-$subcommand"} {
2093 puts
-nonewline stderr
" $subcommand"
2098 # fall through to setup UI for commits
2101 puts stderr
"usage: $argv0 \[{blame|browser|citool}\]"
2112 -text [mc
"Current Branch:"] \
2116 -textvariable current_branch \
2119 pack .branch.l1
-side left
2120 pack .branch.cb
-side left
-fill x
2121 pack .branch
-side top
-fill x
2123 # -- Main Window Layout
2125 panedwindow .vpane
-orient vertical
2126 panedwindow .vpane.files
-orient horizontal
2127 .vpane add .vpane.files
-sticky nsew
-height 100 -width 200
2128 pack .vpane
-anchor n
-side top
-fill both
-expand 1
2130 # -- Index File List
2132 frame .vpane.files.index
-height 100 -width 200
2133 label .vpane.files.index.title
-text [mc
"Staged Changes (Will Be Committed)"] \
2134 -background lightgreen
2135 text
$ui_index -background white
-borderwidth 0 \
2136 -width 20 -height 10 \
2138 -cursor $cursor_ptr \
2139 -xscrollcommand {.vpane.files.index.sx
set} \
2140 -yscrollcommand {.vpane.files.index.sy
set} \
2142 scrollbar .vpane.files.index.sx
-orient h
-command [list
$ui_index xview
]
2143 scrollbar .vpane.files.index.sy
-orient v
-command [list
$ui_index yview
]
2144 pack .vpane.files.index.title
-side top
-fill x
2145 pack .vpane.files.index.sx
-side bottom
-fill x
2146 pack .vpane.files.index.sy
-side right
-fill y
2147 pack
$ui_index -side left
-fill both
-expand 1
2148 .vpane.files add .vpane.files.index
-sticky nsew
2150 # -- Working Directory File List
2152 frame .vpane.files.workdir
-height 100 -width 200
2153 label .vpane.files.workdir.title
-text [mc
"Unstaged Changes (Will Not Be Committed)"] \
2154 -background lightsalmon
2155 text
$ui_workdir -background white
-borderwidth 0 \
2156 -width 20 -height 10 \
2158 -cursor $cursor_ptr \
2159 -xscrollcommand {.vpane.files.workdir.sx
set} \
2160 -yscrollcommand {.vpane.files.workdir.sy
set} \
2162 scrollbar .vpane.files.workdir.sx
-orient h
-command [list
$ui_workdir xview
]
2163 scrollbar .vpane.files.workdir.sy
-orient v
-command [list
$ui_workdir yview
]
2164 pack .vpane.files.workdir.title
-side top
-fill x
2165 pack .vpane.files.workdir.sx
-side bottom
-fill x
2166 pack .vpane.files.workdir.sy
-side right
-fill y
2167 pack
$ui_workdir -side left
-fill both
-expand 1
2168 .vpane.files add .vpane.files.workdir
-sticky nsew
2170 foreach i
[list
$ui_index $ui_workdir] {
2171 $i tag conf in_diff
-background lightgray
2172 $i tag conf in_sel
-background lightgray
2176 # -- Diff and Commit Area
2178 frame .vpane.lower
-height 300 -width 400
2179 frame .vpane.lower.commarea
2180 frame .vpane.lower.
diff -relief sunken
-borderwidth 1
2181 pack .vpane.lower.commarea
-side top
-fill x
2182 pack .vpane.lower.
diff -side bottom
-fill both
-expand 1
2183 .vpane add .vpane.lower
-sticky nsew
2185 # -- Commit Area Buttons
2187 frame .vpane.lower.commarea.buttons
2188 label .vpane.lower.commarea.buttons.l
-text {} \
2191 pack .vpane.lower.commarea.buttons.l
-side top
-fill x
2192 pack .vpane.lower.commarea.buttons
-side left
-fill y
2194 button .vpane.lower.commarea.buttons.rescan
-text [mc Rescan
] \
2196 pack .vpane.lower.commarea.buttons.rescan
-side top
-fill x
2197 lappend disable_on_lock \
2198 {.vpane.lower.commarea.buttons.rescan conf
-state}
2200 button .vpane.lower.commarea.buttons.incall
-text [mc
"Stage Changed"] \
2202 pack .vpane.lower.commarea.buttons.incall
-side top
-fill x
2203 lappend disable_on_lock \
2204 {.vpane.lower.commarea.buttons.incall conf
-state}
2206 button .vpane.lower.commarea.buttons.signoff
-text [mc
"Sign Off"] \
2208 pack .vpane.lower.commarea.buttons.signoff
-side top
-fill x
2210 button .vpane.lower.commarea.buttons.commit
-text [mc Commit
] \
2212 pack .vpane.lower.commarea.buttons.commit
-side top
-fill x
2213 lappend disable_on_lock \
2214 {.vpane.lower.commarea.buttons.commit conf
-state}
2216 button .vpane.lower.commarea.buttons.push
-text [mc Push
] \
2217 -command do_push_anywhere
2218 pack .vpane.lower.commarea.buttons.push
-side top
-fill x
2220 # -- Commit Message Buffer
2222 frame .vpane.lower.commarea.buffer
2223 frame .vpane.lower.commarea.buffer.header
2224 set ui_comm .vpane.lower.commarea.buffer.t
2225 set ui_coml .vpane.lower.commarea.buffer.header.l
2226 radiobutton .vpane.lower.commarea.buffer.header.new \
2227 -text [mc
"New Commit"] \
2228 -command do_select_commit_type \
2229 -variable selected_commit_type \
2231 lappend disable_on_lock \
2232 [list .vpane.lower.commarea.buffer.header.new conf
-state]
2233 radiobutton .vpane.lower.commarea.buffer.header.amend \
2234 -text [mc
"Amend Last Commit"] \
2235 -command do_select_commit_type \
2236 -variable selected_commit_type \
2238 lappend disable_on_lock \
2239 [list .vpane.lower.commarea.buffer.header.amend conf
-state]
2243 proc trace_commit_type
{varname args
} {
2244 global ui_coml commit_type
2245 switch
-glob -- $commit_type {
2246 initial
{set txt
[mc
"Initial Commit Message:"]}
2247 amend
{set txt
[mc
"Amended Commit Message:"]}
2248 amend-initial
{set txt
[mc
"Amended Initial Commit Message:"]}
2249 amend-merge
{set txt
[mc
"Amended Merge Commit Message:"]}
2250 merge
{set txt
[mc
"Merge Commit Message:"]}
2251 * {set txt
[mc
"Commit Message:"]}
2253 $ui_coml conf
-text $txt
2255 trace add variable commit_type
write trace_commit_type
2256 pack
$ui_coml -side left
-fill x
2257 pack .vpane.lower.commarea.buffer.header.amend
-side right
2258 pack .vpane.lower.commarea.buffer.header.new
-side right
2260 text
$ui_comm -background white
-borderwidth 1 \
2263 -autoseparators true \
2265 -width 75 -height 9 -wrap none \
2267 -yscrollcommand {.vpane.lower.commarea.buffer.sby
set}
2268 scrollbar .vpane.lower.commarea.buffer.sby \
2269 -command [list
$ui_comm yview
]
2270 pack .vpane.lower.commarea.buffer.header
-side top
-fill x
2271 pack .vpane.lower.commarea.buffer.sby
-side right
-fill y
2272 pack
$ui_comm -side left
-fill y
2273 pack .vpane.lower.commarea.buffer
-side left
-fill y
2275 # -- Commit Message Buffer Context Menu
2277 set ctxm .vpane.lower.commarea.buffer.ctxm
2278 menu
$ctxm -tearoff 0
2281 -command {tk_textCut
$ui_comm}
2284 -command {tk_textCopy
$ui_comm}
2287 -command {tk_textPaste
$ui_comm}
2289 -label [mc Delete
] \
2290 -command {$ui_comm delete sel.first sel.last
}
2293 -label [mc
"Select All"] \
2294 -command {focus
$ui_comm;$ui_comm tag add sel
0.0 end
}
2296 -label [mc
"Copy All"] \
2298 $ui_comm tag add sel
0.0 end
2299 tk_textCopy
$ui_comm
2300 $ui_comm tag remove sel
0.0 end
2304 -label [mc
"Sign Off"] \
2306 bind_button3
$ui_comm "tk_popup $ctxm %X %Y"
2310 proc trace_current_diff_path
{varname args
} {
2311 global current_diff_path diff_actions file_states
2312 if {$current_diff_path eq
{}} {
2318 set p
$current_diff_path
2319 set s
[mapdesc
[lindex
$file_states($p) 0] $p]
2321 set p
[escape_path
$p]
2325 .vpane.lower.
diff.header.status configure
-text $s
2326 .vpane.lower.
diff.header.
file configure
-text $f
2327 .vpane.lower.
diff.header.path configure
-text $p
2328 foreach w
$diff_actions {
2332 trace add variable current_diff_path
write trace_current_diff_path
2334 frame .vpane.lower.
diff.header
-background gold
2335 label .vpane.lower.
diff.header.status \
2337 -width $max_status_desc \
2340 label .vpane.lower.
diff.header.
file \
2344 label .vpane.lower.
diff.header.path \
2348 pack .vpane.lower.
diff.header.status
-side left
2349 pack .vpane.lower.
diff.header.
file -side left
2350 pack .vpane.lower.
diff.header.path
-fill x
2351 set ctxm .vpane.lower.
diff.header.ctxm
2352 menu
$ctxm -tearoff 0
2360 -- $current_diff_path
2362 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
2363 bind_button3 .vpane.lower.
diff.header.path
"tk_popup $ctxm %X %Y"
2367 frame .vpane.lower.
diff.body
2368 set ui_diff .vpane.lower.
diff.body.t
2369 text
$ui_diff -background white
-borderwidth 0 \
2370 -width 80 -height 15 -wrap none \
2372 -xscrollcommand {.vpane.lower.
diff.body.sbx
set} \
2373 -yscrollcommand {.vpane.lower.
diff.body.sby
set} \
2375 scrollbar .vpane.lower.
diff.body.sbx
-orient horizontal \
2376 -command [list
$ui_diff xview
]
2377 scrollbar .vpane.lower.
diff.body.sby
-orient vertical \
2378 -command [list
$ui_diff yview
]
2379 pack .vpane.lower.
diff.body.sbx
-side bottom
-fill x
2380 pack .vpane.lower.
diff.body.sby
-side right
-fill y
2381 pack
$ui_diff -side left
-fill both
-expand 1
2382 pack .vpane.lower.
diff.header
-side top
-fill x
2383 pack .vpane.lower.
diff.body
-side bottom
-fill both
-expand 1
2385 $ui_diff tag conf d_cr
-elide true
2386 $ui_diff tag conf d_@
-foreground blue
-font font_diffbold
2387 $ui_diff tag conf d_
+ -foreground {#00a000}
2388 $ui_diff tag conf d_-
-foreground red
2390 $ui_diff tag conf d_
++ -foreground {#00a000}
2391 $ui_diff tag conf d_--
-foreground red
2392 $ui_diff tag conf d_
+s \
2393 -foreground {#00a000} \
2394 -background {#e2effa}
2395 $ui_diff tag conf d_-s \
2397 -background {#e2effa}
2398 $ui_diff tag conf d_s
+ \
2399 -foreground {#00a000} \
2401 $ui_diff tag conf d_s- \
2405 $ui_diff tag conf d
<<<<<<< \
2406 -foreground orange \
2408 $ui_diff tag conf d
======= \
2409 -foreground orange \
2411 $ui_diff tag conf d
>>>>>>> \
2412 -foreground orange \
2415 $ui_diff tag raise sel
2417 # -- Diff Body Context Menu
2419 set ctxm .vpane.lower.
diff.body.ctxm
2420 menu
$ctxm -tearoff 0
2422 -label [mc Refresh
] \
2423 -command reshow_diff
2424 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
2427 -command {tk_textCopy
$ui_diff}
2428 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
2430 -label [mc
"Select All"] \
2431 -command {focus
$ui_diff;$ui_diff tag add sel
0.0 end
}
2432 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
2434 -label [mc
"Copy All"] \
2436 $ui_diff tag add sel
0.0 end
2437 tk_textCopy
$ui_diff
2438 $ui_diff tag remove sel
0.0 end
2440 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
2443 -label [mc
"Apply/Reverse Hunk"] \
2444 -command {apply_hunk
$cursorX $cursorY}
2445 set ui_diff_applyhunk
[$ctxm index last
]
2446 lappend diff_actions
[list
$ctxm entryconf
$ui_diff_applyhunk -state]
2449 -label [mc
"Decrease Font Size"] \
2450 -command {incr_font_size font_diff
-1}
2451 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
2453 -label [mc
"Increase Font Size"] \
2454 -command {incr_font_size font_diff
1}
2455 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
2458 -label [mc
"Show Less Context"] \
2459 -command {if {$repo_config(gui.diffcontext
) >= 1} {
2460 incr repo_config
(gui.diffcontext
) -1
2463 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
2465 -label [mc
"Show More Context"] \
2466 -command {if {$repo_config(gui.diffcontext
) < 99} {
2467 incr repo_config
(gui.diffcontext
)
2470 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
2472 $ctxm add
command -label [mc
"Options..."] \
2474 proc popup_diff_menu
{ctxm x y X Y
} {
2475 global current_diff_path file_states
2478 if {$
::ui_index eq $
::current_diff_side
} {
2479 set l
[mc
"Unstage Hunk From Commit"]
2481 set l
[mc
"Stage Hunk For Commit"]
2484 ||
$current_diff_path eq
{}
2485 ||
![info exists file_states
($current_diff_path)]
2486 ||
{_O
} eq
[lindex
$file_states($current_diff_path) 0]} {
2491 $ctxm entryconf $
::ui_diff_applyhunk
-state $s -label $l
2492 tk_popup
$ctxm $X $Y
2494 bind_button3
$ui_diff [list popup_diff_menu
$ctxm %x
%y
%X
%Y
]
2498 set main_status
[::status_bar
::new .status
]
2499 pack .status
-anchor w
-side bottom
-fill x
2500 $main_status show
[mc
"Initializing..."]
2505 set gm
$repo_config(gui.geometry
)
2506 wm geometry .
[lindex
$gm 0]
2507 .vpane sash place
0 \
2508 [lindex
[.vpane sash coord
0] 0] \
2510 .vpane.files sash place
0 \
2512 [lindex
[.vpane.files sash coord
0] 1]
2518 bind $ui_comm <$M1B-Key-Return> {do_commit
;break}
2519 bind $ui_comm <$M1B-Key-i> {do_add_all
;break}
2520 bind $ui_comm <$M1B-Key-I> {do_add_all
;break}
2521 bind $ui_comm <$M1B-Key-x> {tk_textCut
%W
;break}
2522 bind $ui_comm <$M1B-Key-X> {tk_textCut
%W
;break}
2523 bind $ui_comm <$M1B-Key-c> {tk_textCopy
%W
;break}
2524 bind $ui_comm <$M1B-Key-C> {tk_textCopy
%W
;break}
2525 bind $ui_comm <$M1B-Key-v> {tk_textPaste
%W
; %W see insert
; break}
2526 bind $ui_comm <$M1B-Key-V> {tk_textPaste
%W
; %W see insert
; break}
2527 bind $ui_comm <$M1B-Key-a> {%W tag add sel
0.0 end
;break}
2528 bind $ui_comm <$M1B-Key-A> {%W tag add sel
0.0 end
;break}
2530 bind $ui_diff <$M1B-Key-x> {tk_textCopy
%W
;break}
2531 bind $ui_diff <$M1B-Key-X> {tk_textCopy
%W
;break}
2532 bind $ui_diff <$M1B-Key-c> {tk_textCopy
%W
;break}
2533 bind $ui_diff <$M1B-Key-C> {tk_textCopy
%W
;break}
2534 bind $ui_diff <$M1B-Key-v> {break}
2535 bind $ui_diff <$M1B-Key-V> {break}
2536 bind $ui_diff <$M1B-Key-a> {%W tag add sel
0.0 end
;break}
2537 bind $ui_diff <$M1B-Key-A> {%W tag add sel
0.0 end
;break}
2538 bind $ui_diff <Key-Up
> {catch
{%W yview scroll
-1 units
};break}
2539 bind $ui_diff <Key-Down
> {catch
{%W yview scroll
1 units
};break}
2540 bind $ui_diff <Key-Left
> {catch
{%W xview scroll
-1 units
};break}
2541 bind $ui_diff <Key-Right
> {catch
{%W xview scroll
1 units
};break}
2542 bind $ui_diff <Key-k
> {catch
{%W yview scroll
-1 units
};break}
2543 bind $ui_diff <Key-j
> {catch
{%W yview scroll
1 units
};break}
2544 bind $ui_diff <Key-h
> {catch
{%W xview scroll
-1 units
};break}
2545 bind $ui_diff <Key-l
> {catch
{%W xview scroll
1 units
};break}
2546 bind $ui_diff <Control-Key-b
> {catch
{%W yview scroll
-1 pages
};break}
2547 bind $ui_diff <Control-Key-f
> {catch
{%W yview scroll
1 pages
};break}
2548 bind $ui_diff <Button-1
> {focus
%W
}
2550 if {[is_enabled branch
]} {
2551 bind .
<$M1B-Key-n> branch_create
::dialog
2552 bind .
<$M1B-Key-N> branch_create
::dialog
2553 bind .
<$M1B-Key-o> branch_checkout
::dialog
2554 bind .
<$M1B-Key-O> branch_checkout
::dialog
2555 bind .
<$M1B-Key-m> merge
::dialog
2556 bind .
<$M1B-Key-M> merge
::dialog
2558 if {[is_enabled transport
]} {
2559 bind .
<$M1B-Key-p> do_push_anywhere
2560 bind .
<$M1B-Key-P> do_push_anywhere
2563 bind .
<Key-F5
> do_rescan
2564 bind .
<$M1B-Key-r> do_rescan
2565 bind .
<$M1B-Key-R> do_rescan
2566 bind .
<$M1B-Key-s> do_signoff
2567 bind .
<$M1B-Key-S> do_signoff
2568 bind .
<$M1B-Key-i> do_add_all
2569 bind .
<$M1B-Key-I> do_add_all
2570 bind .
<$M1B-Key-Return> do_commit
2571 foreach i
[list
$ui_index $ui_workdir] {
2572 bind $i <Button-1
> "toggle_or_diff $i %x %y; break"
2573 bind $i <$M1B-Button-1> "add_one_to_selection $i %x %y; break"
2574 bind $i <Shift-Button-1
> "add_range_to_selection $i %x %y; break"
2578 set file_lists
($ui_index) [list
]
2579 set file_lists
($ui_workdir) [list
]
2581 wm title .
"[appname] ([reponame]) [file normalize [file dirname [gitdir]]]"
2582 focus
-force $ui_comm
2584 # -- Warn the user about environmental problems. Cygwin's Tcl
2585 # does *not* pass its env array onto any processes it spawns.
2586 # This means that git processes get none of our environment.
2591 set msg
"Possible environment issues exist.
2593 The following environment variables are probably
2594 going to be ignored by any Git subprocess run
2598 foreach name
[array names env
] {
2599 switch
-regexp -- $name {
2600 {^GIT_INDEX_FILE$
} -
2601 {^GIT_OBJECT_DIRECTORY$
} -
2602 {^GIT_ALTERNATE_OBJECT_DIRECTORIES$
} -
2604 {^GIT_EXTERNAL_DIFF$
} -
2608 {^GIT_CONFIG_LOCAL$
} -
2609 {^GIT_
(AUTHOR|COMMITTER
)_DATE$
} {
2610 append msg
" - $name\n"
2613 {^GIT_
(AUTHOR|COMMITTER
)_
(NAME|EMAIL
)$
} {
2614 append msg
" - $name\n"
2616 set suggest_user
$name
2620 if {$ignored_env > 0} {
2622 This is due to a known issue with the
2623 Tcl binary distributed by Cygwin."
2625 if {$suggest_user ne
{}} {
2628 A good replacement for $suggest_user
2629 is placing values for the user.name and
2630 user.email settings into your personal
2636 unset ignored_env msg suggest_user name
2639 # -- Only initialize complex UI if we are going to stay running.
2641 if {[is_enabled transport
]} {
2648 if {[winfo exists
$ui_comm]} {
2649 set GITGUI_BCK_exists
[load_message GITGUI_BCK
]
2651 # -- If both our backup and message files exist use the
2652 # newer of the two files to initialize the buffer.
2654 if {$GITGUI_BCK_exists} {
2655 set m
[gitdir GITGUI_MSG
]
2656 if {[file isfile
$m]} {
2657 if {[file mtime
[gitdir GITGUI_BCK
]] > [file mtime
$m]} {
2658 catch
{file delete
[gitdir GITGUI_MSG
]}
2660 $ui_comm delete
0.0 end
2662 $ui_comm edit modified false
2663 catch
{file delete
[gitdir GITGUI_BCK
]}
2664 set GITGUI_BCK_exists
0
2670 proc backup_commit_buffer
{} {
2671 global ui_comm GITGUI_BCK_exists
2673 set m
[$ui_comm edit modified
]
2674 if {$m ||
$GITGUI_BCK_exists} {
2675 set msg
[string trim
[$ui_comm get
0.0 end
]]
2676 regsub
-all -line {[ \r\t]+$
} $msg {} msg
2679 if {$GITGUI_BCK_exists} {
2680 catch
{file delete
[gitdir GITGUI_BCK
]}
2681 set GITGUI_BCK_exists
0
2685 set fd
[open
[gitdir GITGUI_BCK
] w
]
2686 puts
-nonewline $fd $msg
2688 set GITGUI_BCK_exists
1
2692 $ui_comm edit modified false
2695 set ::GITGUI_BCK_i
[after
2000 backup_commit_buffer
]
2698 backup_commit_buffer
2701 lock_index begin-read
2702 if {![winfo ismapped .
]} {
2706 if {[is_enabled multicommit
]} {