git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 4/4] instaweb: use 'git-web--browse' to launch browser.
@ 2008-02-02  6:32 Christian Couder
  0 siblings, 0 replies; only message in thread
From: Christian Couder @ 2008-02-02  6:32 UTC (permalink / raw)
  To: Junio Hamano, Eric Wong; +Cc: git

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
 git-instaweb.sh |   20 ++++++--------------
 1 files changed, 6 insertions(+), 14 deletions(-)

diff --git a/git-instaweb.sh b/git-instaweb.sh
index 3e4452b..6f91c8f 100755
--- a/git-instaweb.sh
+++ b/git-instaweb.sh
@@ -24,8 +24,6 @@ restart        restart the web server
 fqgitdir="$GIT_DIR"
 local="`git config --bool --get instaweb.local`"
 httpd="`git config --get instaweb.httpd`"
-browser="`git config --get instaweb.browser`"
-test -z "$browser" && browser="`git config --get web.browser`"
 port=`git config --get instaweb.port`
 module_path="`git config --get instaweb.modulepath`"
 
@@ -36,9 +34,6 @@ conf="$GIT_DIR/gitweb/httpd.conf"
 # if installed, it doesn't need further configuration (module_path)
 test -z "$httpd" && httpd='lighttpd -f'
 
-# probably the most popular browser among gitweb users
-test -z "$browser" && browser='firefox'
-
 # any untaken local port will do...
 test -z "$port" && port=1234
 
@@ -274,14 +269,11 @@ webrick)
 	;;
 esac
 
-init_browser_path() {
-	browser_path="`git config browser.$1.path`"
-	test -z "$browser_path" && browser_path="$1"
-}
-
 start_httpd
 url=http://127.0.0.1:$port
-test -n "$browser" && {
-	init_browser_path "$browser"
-	"$browser_path" $url
-} || echo $url
+
+if test -n "$browser"; then
+	git web--browse -b "$browser" $url || echo $url
+else
+	git web--browse -c "instaweb.browser" $url || echo $url
+fi
-- 
1.5.4.rc5.25.g7a831-dirty

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2008-02-02  6:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-02  6:32 [PATCH 4/4] instaweb: use 'git-web--browse' to launch browser Christian Couder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).