3 # This program launch a web browser on the html page
4 # describing a git command.
6 # Copyright (c) 2007 Christian Couder
7 # Copyright (c) 2006 Theodore Y. Ts'o
9 # This file is heavily stolen from git-mergetool.sh, by
10 # Theodore Y. Ts'o (thanks) that is:
12 # Copyright (c) 2006 Theodore Y. Ts'o
14 # This file is licensed under the GPL v2, or a later version
15 # at the discretion of Junio C Hamano or any other official
19 USAGE
='[--browser=browser|--tool=browser] [--config=conf.var] url/file ...'
21 # This must be capable of running outside of git directory, so
22 # the vanilla git-sh-setup should not be used.
28 browser_cmd
="$(git config "browser.
$1.cmd
")"
29 test -n "$browser_cmd"
34 firefox | iceweasel | konqueror | w3m | links | lynx | dillo | open | start
)
37 valid_custom_tool
"$1" ||
return 1
43 browser_path
=$
(git config
"browser.$1.path")
44 test -z "$browser_path" && browser_path
="$1"
50 -b|
--browser*|
-t|
--tool*)
53 browser
=`expr "z$1" : 'z-[^=]*=\(.*\)'`
65 conf
=`expr "z$1" : 'z-[^=]*=\(.*\)'`
91 for opt
in "$conf" "web.browser"
93 test -z "$opt" && continue
94 browser
="`git config $opt`"
95 test -z "$browser" ||
break
97 if test -n "$browser" && ! valid_tool
"$browser"; then
98 echo >&2 "git config option $opt set to unknown browser: $browser"
99 echo >&2 "Resetting to default..."
104 if test -z "$browser" ; then
105 if test -n "$DISPLAY"; then
106 browser_candidates
="firefox iceweasel konqueror w3m links lynx dillo"
107 if test "$KDE_FULL_SESSION" = "true"; then
108 browser_candidates
="konqueror $browser_candidates"
111 browser_candidates
="w3m links lynx"
113 # SECURITYSESSIONID indicates an OS X GUI login session
114 if test -n "$SECURITYSESSIONID"; then
115 browser_candidates
="open $browser_candidates"
117 # /bin/start indicates MinGW
118 if test -x /bin
/start
; then
119 browser_candidates
="start $browser_candidates"
122 for i
in $browser_candidates; do
124 if type "$browser_path" > /dev
/null
2>&1; then
129 test -z "$browser" && die
"No known browser available."
131 valid_tool
"$browser" || die
"Unknown browser '$browser'."
133 init_browser_path
"$browser"
135 if test -z "$browser_cmd" && ! type "$browser_path" > /dev
/null
2>&1; then
136 die
"The browser $browser is not available as '$browser_path'."
142 # Check version because firefox < 2.0 does not support "-new-tab".
143 vers
=$
(expr "$($browser_path -version)" : '.* \([0-9][0-9]*\)\..*')
145 test "$vers" -lt 2 && NEWTAB
=''
146 "$browser_path" $NEWTAB "$@" &
149 case "$(basename "$browser_path")" in
151 # It's simpler to use kfmclient to open a new tab in konqueror.
152 browser_path
="$(echo "$browser_path" | sed -e 's/konqueror$/kfmclient/')"
153 type "$browser_path" > /dev
/null
2>&1 || die
"No '$browser_path' found."
154 eval "$browser_path" newTab
"$@"
157 eval "$browser_path" newTab
"$@"
160 "$browser_path" "$@" &
165 eval "$browser_path" "$@"
168 exec "$browser_path" '"web-browse"' "$@"
171 "$browser_path" "$@" &
174 if test -n "$browser_cmd"; then
175 ( eval $browser_cmd "$@" )