]> git.ipfire.org Git - thirdparty/git.git/blame - git-gui/git-gui--askpass
Merge branch 'en/stash-apply-sparse-checkout' into maint
[thirdparty/git.git] / git-gui / git-gui--askpass
CommitLineData
8c762125
AG
1#!/bin/sh
2# Tcl ignores the next line -*- tcl -*- \
3exec wish "$0" -- "$@"
4
5# This is a trivial implementation of an SSH_ASKPASS handler.
6# Git-gui uses this script if none are already configured.
7
aef0b48e
PT
8package require Tk
9
8c762125
AG
10set answer {}
11set yesno 0
12set rc 255
13
14if {$argc < 1} {
15 set prompt "Enter your OpenSSH passphrase:"
16} else {
17 set prompt [join $argv " "]
18 if {[regexp -nocase {\(yes\/no\)\?\s*$} $prompt]} {
19 set yesno 1
20 }
21}
22
23message .m -text $prompt -justify center -aspect 4000
24pack .m -side top -fill x -padx 20 -pady 20 -expand 1
25
26entry .e -textvariable answer -width 50
27pack .e -side top -fill x -padx 10 -pady 10
28
a4e1bc99
DA
29proc on_show_input_changed {args} {
30 global show_input
31 if {$show_input} {
32 .e configure -show ""
33 } else {
34 .e configure -show "*"
35 }
36}
37trace add variable show_input write "on_show_input_changed"
38
39set show_input 0
40
8c762125 41if {!$yesno} {
a4e1bc99
DA
42 checkbutton .cb_show -text "Show input" -variable show_input
43 pack .cb_show -side top -anchor nw
8c762125
AG
44}
45
46frame .b
47button .b.ok -text OK -command finish
aef0b48e 48button .b.cancel -text Cancel -command cancel
8c762125
AG
49
50pack .b.ok -side left -expand 1
51pack .b.cancel -side right -expand 1
52pack .b -side bottom -fill x -padx 10 -pady 10
53
54bind . <Visibility> {focus -force .e}
aef0b48e
PT
55bind . <Key-Return> [list .b.ok invoke]
56bind . <Key-Escape> [list .b.cancel invoke]
57bind . <Destroy> {set rc $rc}
58
59proc cancel {} {
60 set ::rc 255
61}
8c762125
AG
62
63proc finish {} {
64 if {$::yesno} {
65 if {$::answer ne "yes" && $::answer ne "no"} {
66 tk_messageBox -icon error -title "Error" -type ok \
67 -message "Only 'yes' or 'no' input allowed."
68 return
69 }
70 }
71
850cf9ae
LB
72 # On Windows, force the encoding to UTF-8: it is what `git.exe` expects
73 if {$::tcl_platform(platform) eq {windows}} {
74 set ::answer [encoding convertto utf-8 $::answer]
75 }
76
8c762125 77 puts $::answer
aef0b48e 78 set ::rc 0
8c762125
AG
79}
80
81wm title . "OpenSSH"
82tk::PlaceWindow .
aef0b48e
PT
83vwait rc
84exit $rc