mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
3eae308700
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABCAAGBQJYCJqmAAoJEDn3Aot9nM55uKQP/11BTzhOr9K3SLzwCr01ylGP 94AOA511vx3fIX5aWQ29S96tGbluo73RdbVsWFKKJcKSErpFPscFEiRkyjeMXE2T yWWOPOg08tm28ppZNp0Kqjb8VykUUKuG6gVT59DNFUZUqHYQbiQy+t8nwT+Qow3U dvo6lksovfSaW2FORWIi5KF5gD4v2F9qsbFgr725a8UoBrOmF0SWaCG4/ZYj0WxF 0rq8LjpvmMuQqd06DAoGMIsHa71R61En2QWfJ4YoE5+QRq8wQl37FmX+ojiA1rzY CG/vJO2Tw4v54wHKK1TCXG7LR4JhTcQZOa6zd8HHsPRn+viGDCMVUG9uMewfxH+m F47EVMxiKf0subm3fUhycqkvso0r6mOAddhz47RKT7tqU4XOnhPyGw0x6m7evawg Sz2+fOK3wwX2Qec5o3vBZKaEcOftSrLuZmbi5/j43crvcf+OAs9s/jdq/Ulpkks2 JI2i0DLzHABTbDn6QsuysEZnituks8T8Fdm5NOldritgBNVY81ifatekFscxt6Ct OrT9eGJk6iZiX1RvS+R7wykKJCBkxiyHqM8vSj5tPWjApgtnopPMudzNX41geaL9 ADeb8LVMTTNL/md8KED0deypilcPNnPbW035rAbyCpAsKbtgO3zdfzdzxsQ+dIvc MQpCDP5QPPr3toRVdNmb =VyhL -----END PGP SIGNATURE----- Merge tag 'gitgui-0.21.0' of git://repo.or.cz/git-gui git-gui 0.21.0 * tag 'gitgui-0.21.0' of git://repo.or.cz/git-gui: (22 commits) git-gui: set version 0.21 git-gui: Mark 'All' in remote.tcl for translation git-gui i18n: Updated Bulgarian translation (565,0f,0u) git-gui: avoid persisting modified author identity git-gui: handle the encoding of Git's output correctly git-gui: unicode file name support on windows git-gui: Update Russian translation git-gui: maintain backwards compatibility for merge syntax git-gui i18n: mark string in lib/error.tcl for translation git-gui: fix incorrect use of Tcl append command git-gui i18n: mark "usage:" strings for translation git-gui i18n: internationalize use of colon punctuation git-gui: ensure the file in the diff pane is in the list of selected files git-gui: support for $FILENAMES in tool definitions git-gui: fix initial git gui message encoding git-gui/po/glossary/txt-to-pot.sh: use the $( ... ) construct for command substitution git-gui (Windows): use git-gui.exe in `Create Desktop Shortcut` git-gui: fix detection of Cygwin Amend tab ordering and text widget border and highlighting. Allow keyboard control to work in the staging widgets. ...
190 lines
4.5 KiB
Tcl
190 lines
4.5 KiB
Tcl
# git-gui remote adding support
|
|
# Copyright (C) 2008 Petr Baudis
|
|
|
|
class remote_add {
|
|
|
|
field w ; # widget path
|
|
field w_name ; # new remote name widget
|
|
field w_loc ; # new remote location widget
|
|
|
|
field name {}; # name of the remote the user has chosen
|
|
field location {}; # location of the remote the user has chosen
|
|
|
|
field opt_action fetch; # action to do after registering the remote locally
|
|
|
|
constructor dialog {} {
|
|
global repo_config use_ttk NS
|
|
|
|
make_dialog top w
|
|
wm withdraw $top
|
|
wm title $top [mc "%s (%s): Add Remote" [appname] [reponame]]
|
|
if {$top ne {.}} {
|
|
wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
|
|
}
|
|
|
|
${NS}::label $w.header -text [mc "Add New Remote"] \
|
|
-font font_uibold -anchor center
|
|
pack $w.header -side top -fill x
|
|
|
|
${NS}::frame $w.buttons
|
|
${NS}::button $w.buttons.create -text [mc Add] \
|
|
-default active \
|
|
-command [cb _add]
|
|
pack $w.buttons.create -side right
|
|
${NS}::button $w.buttons.cancel -text [mc Cancel] \
|
|
-command [list destroy $w]
|
|
pack $w.buttons.cancel -side right -padx 5
|
|
pack $w.buttons -side bottom -fill x -pady 10 -padx 10
|
|
|
|
${NS}::labelframe $w.desc -text [mc "Remote Details"]
|
|
|
|
${NS}::label $w.desc.name_l -text [mc "Name:"]
|
|
set w_name $w.desc.name_t
|
|
${NS}::entry $w_name \
|
|
-width 40 \
|
|
-textvariable @name \
|
|
-validate key \
|
|
-validatecommand [cb _validate_name %d %S]
|
|
grid $w.desc.name_l $w_name -sticky we -padx {0 5}
|
|
|
|
${NS}::label $w.desc.loc_l -text [mc "Location:"]
|
|
set w_loc $w.desc.loc_t
|
|
${NS}::entry $w_loc \
|
|
-width 40 \
|
|
-textvariable @location
|
|
grid $w.desc.loc_l $w_loc -sticky we -padx {0 5}
|
|
|
|
grid columnconfigure $w.desc 1 -weight 1
|
|
pack $w.desc -anchor nw -fill x -pady 5 -padx 5
|
|
|
|
${NS}::labelframe $w.action -text [mc "Further Action"]
|
|
|
|
${NS}::radiobutton $w.action.fetch \
|
|
-text [mc "Fetch Immediately"] \
|
|
-value fetch \
|
|
-variable @opt_action
|
|
pack $w.action.fetch -anchor nw
|
|
|
|
${NS}::radiobutton $w.action.push \
|
|
-text [mc "Initialize Remote Repository and Push"] \
|
|
-value push \
|
|
-variable @opt_action
|
|
pack $w.action.push -anchor nw
|
|
|
|
${NS}::radiobutton $w.action.none \
|
|
-text [mc "Do Nothing Else Now"] \
|
|
-value none \
|
|
-variable @opt_action
|
|
pack $w.action.none -anchor nw
|
|
|
|
grid columnconfigure $w.action 1 -weight 1
|
|
pack $w.action -anchor nw -fill x -pady 5 -padx 5
|
|
|
|
bind $w <Visibility> [cb _visible]
|
|
bind $w <Key-Escape> [list destroy $w]
|
|
bind $w <Key-Return> [cb _add]\;break
|
|
wm deiconify $top
|
|
tkwait window $w
|
|
}
|
|
|
|
method _add {} {
|
|
global repo_config env
|
|
global M1B
|
|
|
|
if {$name eq {}} {
|
|
tk_messageBox \
|
|
-icon error \
|
|
-type ok \
|
|
-title [wm title $w] \
|
|
-parent $w \
|
|
-message [mc "Please supply a remote name."]
|
|
focus $w_name
|
|
return
|
|
}
|
|
|
|
# XXX: We abuse check-ref-format here, but
|
|
# that should be ok.
|
|
if {[catch {git check-ref-format "remotes/$name"}]} {
|
|
tk_messageBox \
|
|
-icon error \
|
|
-type ok \
|
|
-title [wm title $w] \
|
|
-parent $w \
|
|
-message [mc "'%s' is not an acceptable remote name." $name]
|
|
focus $w_name
|
|
return
|
|
}
|
|
|
|
if {[catch {add_single_remote $name $location}]} {
|
|
tk_messageBox \
|
|
-icon error \
|
|
-type ok \
|
|
-title [wm title $w] \
|
|
-parent $w \
|
|
-message [mc "Failed to add remote '%s' of location '%s'." $name $location]
|
|
focus $w_name
|
|
return
|
|
}
|
|
|
|
switch -- $opt_action {
|
|
fetch {
|
|
set c [console::new \
|
|
[mc "fetch %s" $name] \
|
|
[mc "Fetching the %s" $name]]
|
|
console::exec $c [list git fetch $name]
|
|
}
|
|
push {
|
|
set cmds [list]
|
|
|
|
# Parse the location
|
|
if { [regexp {(?:git\+)?ssh://([^/]+)(/.+)} $location xx host path]
|
|
|| [regexp {([^:][^:]+):(.+)} $location xx host path]} {
|
|
set ssh ssh
|
|
if {[info exists env(GIT_SSH)]} {
|
|
set ssh $env(GIT_SSH)
|
|
}
|
|
lappend cmds [list exec $ssh $host mkdir -p $location && git --git-dir=$path init --bare]
|
|
} elseif { ! [regexp {://} $location xx] } {
|
|
lappend cmds [list exec mkdir -p $location]
|
|
lappend cmds [list exec git --git-dir=$location init --bare]
|
|
} else {
|
|
tk_messageBox \
|
|
-icon error \
|
|
-type ok \
|
|
-title [wm title $w] \
|
|
-parent $w \
|
|
-message [mc "Do not know how to initialize repository at location '%s'." $location]
|
|
destroy $w
|
|
return
|
|
}
|
|
|
|
set c [console::new \
|
|
[mc "push %s" $name] \
|
|
[mc "Setting up the %s (at %s)" $name $location]]
|
|
|
|
lappend cmds [list exec git push -v --all $name]
|
|
console::chain $c $cmds
|
|
}
|
|
none {
|
|
}
|
|
}
|
|
|
|
destroy $w
|
|
}
|
|
|
|
method _validate_name {d S} {
|
|
if {$d == 1} {
|
|
if {[regexp {[~^:?*\[\0- ]} $S]} {
|
|
return 0
|
|
}
|
|
}
|
|
return 1
|
|
}
|
|
|
|
method _visible {} {
|
|
grab $w
|
|
$w_name icursor end
|
|
focus $w_name
|
|
}
|
|
|
|
}
|