Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # This program launch a web browser on the html page |
| 4 | # describing a git command. |
| 5 | # |
| 6 | # Copyright (c) 2007 Christian Couder |
| 7 | # Copyright (c) 2006 Theodore Y. Ts'o |
| 8 | # |
| 9 | # This file is heavily stolen from git-mergetool.sh, by |
| 10 | # Theodore Y. Ts'o (thanks) that is: |
| 11 | # |
| 12 | # Copyright (c) 2006 Theodore Y. Ts'o |
| 13 | # |
| 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 |
| 16 | # git maintainer. |
| 17 | # |
| 18 | |
Christian Couder | caa8771 | 2008-02-02 07:32:41 +0100 | [diff] [blame] | 19 | USAGE='[--browser=browser|--tool=browser] [--config=conf.var] url/file ...' |
Junio C Hamano | 22c9071 | 2007-12-12 17:34:30 -0800 | [diff] [blame] | 20 | |
| 21 | # This must be capable of running outside of git directory, so |
| 22 | # the vanilla git-sh-setup should not be used. |
| 23 | NONGIT_OK=Yes |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 24 | . git-sh-setup |
| 25 | |
Christian Couder | 77e2153 | 2008-03-14 05:56:49 +0100 | [diff] [blame] | 26 | valid_custom_tool() |
| 27 | { |
| 28 | browser_cmd="$(git config "browser.$1.cmd")" |
| 29 | test -n "$browser_cmd" |
| 30 | } |
| 31 | |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 32 | valid_tool() { |
| 33 | case "$1" in |
Giuseppe Bilotta | 14ea67c | 2010-12-03 17:47:39 +0100 | [diff] [blame] | 34 | firefox | iceweasel | seamonkey | iceape | \ |
| 35 | chrome | google-chrome | chromium | chromium-browser |\ |
Giuseppe Bilotta | 81f42f1 | 2010-12-03 17:47:38 +0100 | [diff] [blame] | 36 | konqueror | opera | w3m | elinks | links | lynx | dillo | open | start) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 37 | ;; # happy |
| 38 | *) |
| 39 | valid_custom_tool "$1" || return 1 |
| 40 | ;; |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 41 | esac |
| 42 | } |
| 43 | |
| 44 | init_browser_path() { |
jaysoffian+git@gmail.com | 8e08689 | 2008-02-11 10:57:34 -0500 | [diff] [blame] | 45 | browser_path=$(git config "browser.$1.path") |
Giuseppe Bilotta | 14ea67c | 2010-12-03 17:47:39 +0100 | [diff] [blame] | 46 | if test -z "$browser_path" && |
| 47 | test "$1" = chromium && |
| 48 | type chromium-browser >/dev/null 2>&1 |
| 49 | then |
| 50 | browser_path=chromium-browser |
| 51 | fi |
| 52 | : ${browser_path:="$1"} |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | while test $# != 0 |
| 56 | do |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 57 | case "$1" in |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 58 | -b|--browser*|-t|--tool*) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 59 | case "$#,$1" in |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 60 | *,*=*) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 61 | browser=`expr "z$1" : 'z-[^=]*=\(.*\)'` |
| 62 | ;; |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 63 | 1,*) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 64 | usage ;; |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 65 | *) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 66 | browser="$2" |
| 67 | shift ;; |
| 68 | esac |
| 69 | ;; |
Christian Couder | caa8771 | 2008-02-02 07:32:41 +0100 | [diff] [blame] | 70 | -c|--config*) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 71 | case "$#,$1" in |
Christian Couder | caa8771 | 2008-02-02 07:32:41 +0100 | [diff] [blame] | 72 | *,*=*) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 73 | conf=`expr "z$1" : 'z-[^=]*=\(.*\)'` |
| 74 | ;; |
Christian Couder | caa8771 | 2008-02-02 07:32:41 +0100 | [diff] [blame] | 75 | 1,*) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 76 | usage ;; |
Christian Couder | caa8771 | 2008-02-02 07:32:41 +0100 | [diff] [blame] | 77 | *) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 78 | conf="$2" |
| 79 | shift ;; |
| 80 | esac |
| 81 | ;; |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 82 | --) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 83 | break |
| 84 | ;; |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 85 | -*) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 86 | usage |
| 87 | ;; |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 88 | *) |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 89 | break |
| 90 | ;; |
| 91 | esac |
| 92 | shift |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 93 | done |
| 94 | |
Christian Couder | 482cce8 | 2008-02-02 07:32:33 +0100 | [diff] [blame] | 95 | test $# = 0 && usage |
| 96 | |
Christian Couder | 70087cd | 2007-12-15 05:57:28 +0100 | [diff] [blame] | 97 | if test -z "$browser" |
Junio C Hamano | 22c9071 | 2007-12-12 17:34:30 -0800 | [diff] [blame] | 98 | then |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 99 | for opt in "$conf" "web.browser" |
| 100 | do |
| 101 | test -z "$opt" && continue |
| 102 | browser="`git config $opt`" |
| 103 | test -z "$browser" || break |
| 104 | done |
| 105 | if test -n "$browser" && ! valid_tool "$browser"; then |
| 106 | echo >&2 "git config option $opt set to unknown browser: $browser" |
| 107 | echo >&2 "Resetting to default..." |
| 108 | unset browser |
| 109 | fi |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 110 | fi |
| 111 | |
| 112 | if test -z "$browser" ; then |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 113 | if test -n "$DISPLAY"; then |
Giuseppe Bilotta | 14ea67c | 2010-12-03 17:47:39 +0100 | [diff] [blame] | 114 | browser_candidates="firefox iceweasel google-chrome chrome chromium chromium-browser konqueror opera seamonkey iceape w3m elinks links lynx dillo" |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 115 | if test "$KDE_FULL_SESSION" = "true"; then |
| 116 | browser_candidates="konqueror $browser_candidates" |
| 117 | fi |
| 118 | else |
Giuseppe Bilotta | 81f42f1 | 2010-12-03 17:47:38 +0100 | [diff] [blame] | 119 | browser_candidates="w3m elinks links lynx" |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 120 | fi |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 121 | # SECURITYSESSIONID indicates an OS X GUI login session |
John Szakmeister | be537e4 | 2013-03-25 06:13:18 -0400 | [diff] [blame] | 122 | if test -n "$SECURITYSESSIONID" || test -n "$TERM_PROGRAM" |
| 123 | then |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 124 | browser_candidates="open $browser_candidates" |
| 125 | fi |
| 126 | # /bin/start indicates MinGW |
| 127 | if test -x /bin/start; then |
| 128 | browser_candidates="start $browser_candidates" |
| 129 | fi |
Junio C Hamano | 22c9071 | 2007-12-12 17:34:30 -0800 | [diff] [blame] | 130 | |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 131 | for i in $browser_candidates; do |
| 132 | init_browser_path $i |
| 133 | if type "$browser_path" > /dev/null 2>&1; then |
| 134 | browser=$i |
| 135 | break |
| 136 | fi |
| 137 | done |
| 138 | test -z "$browser" && die "No known browser available." |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 139 | else |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 140 | valid_tool "$browser" || die "Unknown browser '$browser'." |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 141 | |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 142 | init_browser_path "$browser" |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 143 | |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 144 | if test -z "$browser_cmd" && ! type "$browser_path" > /dev/null 2>&1; then |
| 145 | die "The browser $browser is not available as '$browser_path'." |
| 146 | fi |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 147 | fi |
| 148 | |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 149 | case "$browser" in |
Giuseppe Bilotta | 81f42f1 | 2010-12-03 17:47:38 +0100 | [diff] [blame] | 150 | firefox|iceweasel|seamonkey|iceape) |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 151 | # Check version because firefox < 2.0 does not support "-new-tab". |
| 152 | vers=$(expr "$($browser_path -version)" : '.* \([0-9][0-9]*\)\..*') |
| 153 | NEWTAB='-new-tab' |
| 154 | test "$vers" -lt 2 && NEWTAB='' |
Dmitry Potapov | a0685a4 | 2008-02-09 23:22:22 -0800 | [diff] [blame] | 155 | "$browser_path" $NEWTAB "$@" & |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 156 | ;; |
Giuseppe Bilotta | 14ea67c | 2010-12-03 17:47:39 +0100 | [diff] [blame] | 157 | google-chrome|chrome|chromium|chromium-browser) |
Pavan Kumar Sunkara | 0b3261b | 2010-05-30 00:06:51 +0530 | [diff] [blame] | 158 | # No need to specify newTab. It's default in chromium |
Chris Packham | 480f062 | 2011-10-02 13:44:17 +1300 | [diff] [blame] | 159 | "$browser_path" "$@" & |
Pavan Kumar Sunkara | 0b3261b | 2010-05-30 00:06:51 +0530 | [diff] [blame] | 160 | ;; |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 161 | konqueror) |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 162 | case "$(basename "$browser_path")" in |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 163 | konqueror) |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 164 | # It's simpler to use kfmclient to open a new tab in konqueror. |
| 165 | browser_path="$(echo "$browser_path" | sed -e 's/konqueror$/kfmclient/')" |
| 166 | type "$browser_path" > /dev/null 2>&1 || die "No '$browser_path' found." |
Chris Packham | 480f062 | 2011-10-02 13:44:17 +1300 | [diff] [blame] | 167 | "$browser_path" newTab "$@" & |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 168 | ;; |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 169 | kfmclient) |
Chris Packham | 480f062 | 2011-10-02 13:44:17 +1300 | [diff] [blame] | 170 | "$browser_path" newTab "$@" & |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 171 | ;; |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 172 | *) |
Dmitry Potapov | a0685a4 | 2008-02-09 23:22:22 -0800 | [diff] [blame] | 173 | "$browser_path" "$@" & |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 174 | ;; |
| 175 | esac |
| 176 | ;; |
Giuseppe Bilotta | 81f42f1 | 2010-12-03 17:47:38 +0100 | [diff] [blame] | 177 | w3m|elinks|links|lynx|open) |
Chris Packham | 480f062 | 2011-10-02 13:44:17 +1300 | [diff] [blame] | 178 | "$browser_path" "$@" |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 179 | ;; |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 180 | start) |
| 181 | exec "$browser_path" '"web-browse"' "$@" |
| 182 | ;; |
Giuseppe Bilotta | 81f42f1 | 2010-12-03 17:47:38 +0100 | [diff] [blame] | 183 | opera|dillo) |
Dmitry Potapov | a0685a4 | 2008-02-09 23:22:22 -0800 | [diff] [blame] | 184 | "$browser_path" "$@" & |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 185 | ;; |
Giuseppe Bilotta | a180055 | 2010-12-03 17:47:36 +0100 | [diff] [blame] | 186 | *) |
Christian Couder | 77e2153 | 2008-03-14 05:56:49 +0100 | [diff] [blame] | 187 | if test -n "$browser_cmd"; then |
Chris Packham | 480f062 | 2011-10-02 13:44:17 +1300 | [diff] [blame] | 188 | ( eval "$browser_cmd \"\$@\"" ) |
Christian Couder | 77e2153 | 2008-03-14 05:56:49 +0100 | [diff] [blame] | 189 | fi |
| 190 | ;; |
Christian Couder | 5d6491c | 2007-12-02 06:07:55 +0100 | [diff] [blame] | 191 | esac |