]> git.ipfire.org Git - thirdparty/git.git/commit - Makefile
help: make 'git-help--browse' usable outside 'git-help'.
authorChristian Couder <chriscool@tuxfamily.org>
Sat, 2 Feb 2008 06:32:33 +0000 (07:32 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 5 Feb 2008 09:01:45 +0000 (01:01 -0800)
commit482cce820554809c02bc639bb33462f9905e4342
tree0db89b008dba37f564ea74e6275c2bc297dfeb85
parent7a2078b4b00fb1c5d7b0bf8155778f79377b8f2f
help: make 'git-help--browse' usable outside 'git-help'.

"git-help--browse" helper is to launch a browser of the user's choice
to view the HTML version of git documentation for a given command.  It
used to take the name of a command, convert it to the path of the
documentation by prefixing the directory name and appending the
".html" suffix, and start the browser on the path.

This updates the division of labor between the caller in help.c and
git-help--browser helper.  The helper is now responsible for launching
a browser of the user's choice on given URLs, and it is the caller's
responsibility to tell it the paths to documentation files.

This is in preparation to reuse the logic to choose user's preferred
browser in instaweb.

The helper had a provision for running it without any command name, in
which case it showed the toplevel "git(7)" documentation, but the
caller in help.c never makes such a call.  The helper now exits with a
usage message when no path is given.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile
git-help--browse.sh
help.c