From: Giuseppe Bilotta <hidden> Date: 2016-06-15 22:50:11
Differences from the previous revision of this patchset:
* the CodingGuidelines patch was dropped, since it's merged in next
* the chromium support patch had some stylistic changes suggested by Junio
* the *www-browser patch adds support for detecting konqueror and kfmclient,
which required some changes to the version string retrieval code; also,
readlink is only used if available.
Giuseppe Bilotta (6):
web--browse: coding style
web--browse: split valid_tool list
web--browse: support opera, seamonkey and elinks
web--browse: better support for chromium
web--browse: use *www-browser if available
web--browse: look at the BROWSER env var
Documentation/git-web--browse.txt | 10 ++
git-web--browse.sh | 302 ++++++++++++++++++++++++++-----------
2 files changed, 225 insertions(+), 87 deletions(-)
--
1.7.3.2.664.g294b8.dirty
@@ -46,139 +46,139 @@ init_browser_path() {whiletest$#!=0do-case"$1"in+case"$1"in-b|--browser*|-t|--tool*)-case"$#,$1"in+case"$#,$1"in*,*=*)-browser=`expr"z$1":'z-[^=]*=\(.*\)'`-;;+browser=`expr"z$1":'z-[^=]*=\(.*\)'`+;;1,*)-usage;;+usage;;*)-browser="$2"-shift;;-esac-;;+browser="$2"+shift;;+esac+;;-c|--config*)-case"$#,$1"in+case"$#,$1"in*,*=*)-conf=`expr"z$1":'z-[^=]*=\(.*\)'`-;;+conf=`expr"z$1":'z-[^=]*=\(.*\)'`+;;1,*)-usage;;+usage;;*)-conf="$2"-shift;;-esac-;;+conf="$2"+shift;;+esac+;;--)-break-;;+break+;;-*)-usage-;;+usage+;;*)-break-;;-esac-shift+break+;;+esac+shiftdonetest$#=0&&usageiftest-z"$browser"then-foroptin"$conf""web.browser"-do-test-z"$opt"&&continue-browser="`git config $opt`"-test-z"$browser"||break-done-iftest-n"$browser"&&!valid_tool"$browser";then-echo>&2"git config option $opt set to unknown browser: $browser"-echo>&2"Resetting to default..."-unsetbrowser-fi+foroptin"$conf""web.browser"+do+test-z"$opt"&&continue+browser="`git config $opt`"+test-z"$browser"||break+done+iftest-n"$browser"&&!valid_tool"$browser";then+echo>&2"git config option $opt set to unknown browser: $browser"+echo>&2"Resetting to default..."+unsetbrowser+fifiiftest-z"$browser";then-iftest-n"$DISPLAY";then-browser_candidates="firefox iceweasel google-chrome chrome chromium konqueror w3m links lynx dillo"-iftest"$KDE_FULL_SESSION"="true";then-browser_candidates="konqueror $browser_candidates"+iftest-n"$DISPLAY";then+browser_candidates="firefox iceweasel google-chrome chrome chromium konqueror w3m links lynx dillo"+iftest"$KDE_FULL_SESSION"="true";then+browser_candidates="konqueror $browser_candidates"+fi+else+browser_candidates="w3m links lynx"fi-else-browser_candidates="w3m links lynx"-fi-# SECURITYSESSIONID indicates an OS X GUI login session-iftest-n"$SECURITYSESSIONID"\--o"$TERM_PROGRAM"="Apple_Terminal";then-browser_candidates="open $browser_candidates"-fi-# /bin/start indicates MinGW-iftest-x/bin/start;then-browser_candidates="start $browser_candidates"-fi--foriin$browser_candidates;do-init_browser_path$i-iftype"$browser_path">/dev/null2>&1;then-browser=$i-break+# SECURITYSESSIONID indicates an OS X GUI login session+iftest-n"$SECURITYSESSIONID"\+-o"$TERM_PROGRAM"="Apple_Terminal";then+browser_candidates="open $browser_candidates"fi-done-test-z"$browser"&&die"No known browser available."+# /bin/start indicates MinGW+iftest-x/bin/start;then+browser_candidates="start $browser_candidates"+fi++foriin$browser_candidates;do+init_browser_path$i+iftype"$browser_path">/dev/null2>&1;then+browser=$i+break+fi+done+test-z"$browser"&&die"No known browser available."else-valid_tool"$browser"||die"Unknown browser '$browser'."+valid_tool"$browser"||die"Unknown browser '$browser'."-init_browser_path"$browser"+init_browser_path"$browser"-iftest-z"$browser_cmd"&&!type"$browser_path">/dev/null2>&1;then-die"The browser $browser is not available as '$browser_path'."-fi+iftest-z"$browser_cmd"&&!type"$browser_path">/dev/null2>&1;then+die"The browser $browser is not available as '$browser_path'."+fificase"$browser"in-firefox|iceweasel)+firefox|iceweasel)# Check version because firefox < 2.0 does not support "-new-tab".vers=$(expr"$($browser_path-version)":'.* \([0-9][0-9]*\)\..*')NEWTAB='-new-tab'test"$vers"-lt2&&NEWTAB=''"$browser_path"$NEWTAB"$@"&;;-google-chrome|chrome|chromium)+google-chrome|chrome|chromium)# Actual command for chromium is chromium-browser.# No need to specify newTab. It's default in chromiumeval"$browser_path""$@"&;;-konqueror)+konqueror)case"$(basename"$browser_path")"in-konqueror)+konqueror)# It's simpler to use kfmclient to open a new tab in konqueror.browser_path="$(echo"$browser_path"|sed-e's/konqueror$/kfmclient/')"type"$browser_path">/dev/null2>&1||die"No '$browser_path' found."eval"$browser_path"newTab"$@";;-kfmclient)+kfmclient)eval"$browser_path"newTab"$@";;-*)+*)"$browser_path""$@"&;;esac;;-w3m|links|lynx|open)+w3m|links|lynx|open)eval"$browser_path""$@";;-start)-exec"$browser_path"'"web-browse"'"$@"-;;-dillo)+start)+exec"$browser_path"'"web-browse"'"$@"+;;+dillo)"$browser_path""$@"&;;-*)+*)iftest-n"$browser_cmd";then-(eval$browser_cmd"$@")+(eval$browser_cmd"$@")fi;;esac
From: Giuseppe Bilotta <hidden> Date: 2016-06-15 22:50:11
It was getting too long, and we want to add some more.
Signed-off-by: Giuseppe Bilotta <redacted>
---
git-web--browse.sh | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
From: Giuseppe Bilotta <hidden> Date: 2016-06-15 22:50:11
On Debian-based distributions, Chromium the browser is available under
the name chromium-browser rather than chromium, to prevent conflicts
with the Chromium B.S.U. game.
Look for chromium-browser first when setting the path for chromium, and
also add chromium-browser as a supported browser name. Document the
dual-name support, and mention the dual-name support for
(google-)chrome too.
Signed-off-by: Giuseppe Bilotta <redacted>
---
Documentation/git-web--browse.txt | 4 ++--
git-web--browse.sh | 12 ++++++++----
2 files changed, 10 insertions(+), 6 deletions(-)
@@ -22,8 +22,8 @@ The following browsers (or commands) are currently supported: * iceweasel * seamonkey * iceape-* chromium-* google-chrome+* chromium (also supported as chromium-browser)+* google-chrome (also supported as chrome) * konqueror (this is the default under KDE, see 'Note about konqueror' below) * opera * w3m (this is the default outside graphical environments)
@@ -147,8 +152,7 @@ firefox|iceweasel|seamonkey|iceape)test"$vers"-lt2&&NEWTAB=''"$browser_path"$NEWTAB"$@"&;;-google-chrome|chrome|chromium)-# Actual command for chromium is chromium-browser.+google-chrome|chrome|chromium|chromium-browser)# No need to specify newTab. It's default in chromiumeval"$browser_path""$@"&;;
From: Giuseppe Bilotta <hidden> Date: 2016-06-15 22:50:11
Debian and derivatives have an alternatives-based default browser
configuration that uses the /usr/bin/gnome-www-browser,
/usr/bin/x-www-browser and /usr/bin/www-browser symlinks.
When no browser is selected by the user and the Debian alternatives are
available, try to see if they are one of our recognized selection and
in the affermative case use it. Otherwise, warn the user about them
being unsupported and move on with the previous detection logic.
Signed-off-by: Giuseppe Bilotta <redacted>
---
Documentation/git-web--browse.txt | 4 ++
git-web--browse.sh | 84 +++++++++++++++++++++++++++++++++++-
2 files changed, 85 insertions(+), 3 deletions(-)
@@ -36,6 +36,10 @@ The following browsers (or commands) are currently supported: Custom commands may also be specified.+If no default browser is specified, and /usr/bin/gnome-www-browser+(under GNOME), /usr/bin/x-www-browser (under X) or /usr/bin/www-browser+is present, they are used to determine the browser to use.+ OPTIONS ------- -b <browser>::
@@ -50,6 +50,63 @@ init_browser_path() {test-z"$browser_path"&&browser_path="$1"}+# check if a given executable is a browser we like+valid_browser_executable(){+testexe="$1"++# check the executable name first, trying to follow symlinks if possible+iftypereadlink>/dev/null2>&1;then+basename="$(basename$(readlink-f"$testexe"))"+else+basename="$(basename"$testexe")"+fi+ifvalid_tool"$basename";then+browser="$basename"+browser_path="$testexe"+return0+fi++# if the linked executable doesn't match a browser name we know about,+# look at the version string++# even though most browsers (and applications, in fact) will show their+# name and version on the first line of the --version output, this is+# not true in particular for the KDE apps (e.g. konqueror and kfmclient),+# which display their name and version on the LAST line. So we cannot+# clip the version string at the first line when retrieving it. Rather,+# we keep it whole and then limit it when we know what we're dealing with.++verstring="$("$testexe"--version2>/dev/null)"+browser="$(echo"$verstring"|head-n1|cut-f1-d' '|trA-Za-z)"+case"$browser"in+mozilla)+verstring="$(echo"$verstring"|head-n1)"+browser="$(echo"$verstring"|cut-f2-d' '|trA-Za-z)"+;;+google)+verstring="$(echo"$verstring"|head-n1)"+browser="google-chrome"+;;+qt:)+# konqueror, kfmclient or other KDE app+verstring="$(echo"$verstring"|tail-n1)"+browser="$(echo"$verstring"|cut-f1-d:)"+;;+*)+verstring="$(echo"$verstring"|head-n1)"+;;++esac+ifvalid_tool"$browser";then+browser_path="$i"+return0+fi++echo>&2"$testexe (detected as $browser) is not a supported browser, skipping"+browser=""+return1+}+whiletest$#!=0docase"$1"in
@@ -107,6 +164,26 @@ thenfifi+# Debian and derivatives use gnome-www-browser, x-www-browser or www-browser to+# set the default browser for the system. If the user did not specify a tool and+# we detect that one of the *www-browser links to a supported one, we pick it.+# Otherwise, we warn the user about them being unsupported and proceed to look+# for a supported browser.+iftest-z"$browser";then+wwwbrowser="/usr/bin/www-browser"+iftest-n"$DISPLAY";then+wwwbrowser="/usr/bin/x-www-browser $wwwbrowser"+iftest-n"$GNOME_DESKTOP_SESSION_ID";then+wwwbrowser="/usr/bin/gnome-www-browser $wwwbrowser"+fi+fi+foriin$wwwbrowser;do+iftest-x$i&&valid_browser_executable$i;then+break+fi+done+fi+iftest-z"$browser";theniftest-n"$DISPLAY";thenbrowser_candidates="firefox iceweasel google-chrome chrome chromium chromium-browser konqueror opera seamonkey iceape w3m elinks links lynx dillo"
@@ -134,7 +211,7 @@ if test -z "$browser" ; thenfidonetest-z"$browser"&&die"No known browser available."-else+elseiftest-z"$browser_path";thenvalid_tool"$browser"||die"Unknown browser '$browser'."init_browser_path"$browser"
@@ -142,12 +219,13 @@ elseiftest-z"$browser_cmd"&&!type"$browser_path">/dev/null2>&1;thendie"The browser $browser is not available as '$browser_path'."fi-fi+fificase"$browser"in firefox|iceweasel|seamonkey|iceape)# Check version because firefox < 2.0 does not support "-new-tab".-vers=$(expr"$($browser_path-version)":'.* \([0-9][0-9]*\)\..*')+test-z"$verstring"&&verstring="$($browser_path-version)"+vers=$(expr"$verstring":'.* \([0-9][0-9]*\)\..*')NEWTAB='-new-tab'test"$vers"-lt2&&NEWTAB=''"$browser_path"$NEWTAB"$@"&
From: Giuseppe Bilotta <hidden> Date: 2016-06-15 22:50:11
The list of supported browsers is also updated in the documentation.
Signed-off-by: Giuseppe Bilotta <redacted>
---
Documentation/git-web--browse.txt | 6 ++++++
git-web--browse.sh | 14 +++++++-------
2 files changed, 13 insertions(+), 7 deletions(-)
@@ -20,8 +20,14 @@ The following browsers (or commands) are currently supported: * firefox (this is the default under X Window when not using KDE) * iceweasel+* seamonkey+* iceape+* chromium+* google-chrome * konqueror (this is the default under KDE, see 'Note about konqueror' below)+* opera * w3m (this is the default outside graphical environments)+* elinks * links * lynx * dillo
@@ -140,7 +140,7 @@ elseficase"$browser"in-firefox|iceweasel)+firefox|iceweasel|seamonkey|iceape)# Check version because firefox < 2.0 does not support "-new-tab".vers=$(expr"$($browser_path-version)":'.* \([0-9][0-9]*\)\..*')NEWTAB='-new-tab'
From: Giuseppe Bilotta <hidden> Date: 2016-06-15 22:50:11
The BROWSER environment variables is used in Debian-based systems to set
the user-preferred browser(s).
It contains a colon-separate list of commands to (try to) execute
to open a web page. Each item in the list is allowed to have a %s
placeholder to be replaced by the URL, in which case we try to run the
command as is. If no placeholder is found, we only look at the command
name to see if it matches one of our known browsers.
Signed-off-by: Giuseppe Bilotta <redacted>
---
git-web--browse.sh | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 45 insertions(+), 0 deletions(-)
@@ -164,6 +164,51 @@ thenfifi+# Debian and derivatives provide a sensible-brower script that tries to+# invoke the user or system preferred browser most appropriate for the+# current situation (X or no X, GNOME or other/no DE).+# We do not use the sensible-browser script directly since it doesn't+# allow us to open pages in a new tab, but we can use the underlying+# infrastructure to find the browser to use if the user didn't choose+# one. This is done by looking at the BROWSER environment variable+# first, and at the *www-browser links if the first search is+# unsuccesful.++# The BROWSER environment variable is a colon-separate list of commands+# to (try and) execute to launch the browser. sensible-browser allows+# each BROWSER entry to contain a %s placeholder that will be replaced+# by the URL to be opened.+# If an entry contains a %s we run it as-is, without doing any detection, on+# the premise that it represents the exact way the user expects the browser to+# be called. If the execution fails, we do not bail out, since the+# failure might be due to the entry being for a graphical browser and+# the GUI not being available, which is the reason why multiple entries+# can be specified in BROWSER in the first place.+# An entry without a %s is only taken as indication of the preferred+# browser, so we proceed with our usual detection logic.+iftest-z"$browser"-a-n"$BROWSER";then+OLDIFS="$IFS"+IFS=:+foriin$BROWSER;do+case"$i"in+*sensible-browser*)+;;# skip+*%s*)+IFS="$OLDIFS"+cmd=$(printf"$i\n""$*")+$cmd&&exit0+;;+*)+prog=$(which"$i"2>/dev/null)+iftest-n"$prog"-a-x"$prog"&&valid_browser_executable"$prog";then+break+fi+;;+esac+done+IFS="$OLDIFS"+fi+# Debian and derivatives use gnome-www-browser, x-www-browser or www-browser to# set the default browser for the system. If the user did not specify a tool and# we detect that one of the *www-browser links to a supported one, we pick it.
IIRC, RedHat's sensible-browser equivalent, htmlview, used to use
BROWSER. The package is now obsolete, though, and I'm not even sure it
used BROWSER at all in its latest incarnations.
xdg-open _does_ use BROWSER though. So maybe I should clear the
Debian-specificity of this patch.
--
Giuseppe "Oblomov" Bilotta
From: Giuseppe Bilotta <hidden> Date: 2016-06-15 22:50:12
On Wed, Dec 8, 2010 at 12:38 AM, Junio C Hamano [off-list ref] wrote:
Up to this point of the series, I think v3 is a regression compared to
what is queued on 'pu'.
Ouch. Including or excluding this one? (Unless I did a mistake, the
only difference here was the merging of the conditionals when
path-checking chromium)
--
Giuseppe "Oblomov" Bilotta