git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Documentation: config: add 'help.*' and 'instaweb.*' variables.
@ 2008-01-08  3:55 Christian Couder
  2008-01-08  6:27 ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Christian Couder @ 2008-01-08  3:55 UTC (permalink / raw)
  To: Junio Hamano; +Cc: git

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
 Documentation/config.txt |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/Documentation/config.txt b/Documentation/config.txt
index e1eaee9..c9895dc 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -585,6 +585,15 @@ specified as 'gitcvs.<access_method>.<varname>' (where 'access_method'
 is one of "ext" and "pserver") to make them apply only for the given
 access method.
 
+help.browser::
+	Specify the browser that will be used to display help in the
+	'web' format. See gitlink:git-help[1].
+
+help.format::
+	Override the default help format used by gitlink:git-help[1].
+	Values 'man', 'info', 'web' and 'html' are supported. 'man' is
+	the default. 'web' and 'html' are the same.
+
 http.proxy::
 	Override the HTTP proxy, normally configured using the 'http_proxy'
 	environment variable (see gitlink:curl[1]).  This can be overridden
@@ -642,6 +651,25 @@ i18n.logOutputEncoding::
 	Character encoding the commit messages are converted to when
 	running `git-log` and friends.
 
+instaweb.browser::
+	Specify the program that will be used to browse your working
+	repository in gitweb. See gitlink:git-instaweb[1].
+
+instaweb.httpd::
+	The HTTP daemon command-line to start gitweb on your working
+	repository. See gitlink:git-instaweb[1].
+
+instaweb.local::
+	If true the web server started by gitlink:git-instaweb[1] will
+	be bound to the local IP (127.0.0.1).
+
+instaweb.modulepath::
+	The module path for an apache httpd used by gitlink:git-instaweb[1].
+
+instaweb.port::
+	The port number to bind the gitweb httpd to. See
+	gitlink:git-instaweb[1].
+
 log.showroot::
 	If true, the initial commit will be shown as a big creation event.
 	This is equivalent to a diff against an empty tree.
@@ -843,4 +871,8 @@ receive.denyNonFastForwards::
 transfer.unpackLimit::
 	When `fetch.unpackLimit` or `receive.unpackLimit` are
 	not set, the value of this variable is used instead.
+
+web.browser::
+	Specify a web browser that may be used by some commands.
+	Currently only gitlink:git-instaweb[1] and gitlink:git-help[1]
+	may use it.
-- 
1.5.4.rc2.38.gd6da3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] Documentation: config: add 'help.*' and 'instaweb.*' variables.
  2008-01-08  3:55 [PATCH] Documentation: config: add 'help.*' and 'instaweb.*' variables Christian Couder
@ 2008-01-08  6:27 ` Junio C Hamano
  2008-01-08  7:43   ` Christian Couder
  0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2008-01-08  6:27 UTC (permalink / raw)
  To: Christian Couder; +Cc: git

Christian Couder <chriscool@tuxfamily.org> writes:

> Signed-off-by: Christian Couder <chriscool@tuxfamily.org>

Thanks.  I already had Dan's s/gitlink/linkgit/ patch in my tree
to work aroudn AscciDoc issues but adjusting the patch was
trivial.

> @@ -843,4 +871,8 @@ receive.denyNonFastForwards::
>  transfer.unpackLimit::
>  	When `fetch.unpackLimit` or `receive.unpackLimit` are
>  	not set, the value of this variable is used instead.
> +
> +web.browser::
> +	Specify a web browser that may be used by some commands.
> +	Currently only gitlink:git-instaweb[1] and gitlink:git-help[1]
> +	may use it.
> -- 
> 1.5.4.rc2.38.gd6da3

Somebody seems to have recounted the patch lines incorrectly
here.  The hunk header should have read "@@ -843,3 +871,8 @@".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Documentation: config: add 'help.*' and 'instaweb.*' variables.
  2008-01-08  7:43   ` Christian Couder
@ 2008-01-08  7:40     ` Junio C Hamano
  2008-01-08 10:32       ` Johannes Schindelin
  0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2008-01-08  7:40 UTC (permalink / raw)
  To: Christian Couder; +Cc: git

Christian Couder <chriscool@tuxfamily.org> writes:

> By the way I had no comment on my RFC/Patch to run the test scripts under 
> valgrind. Maybe it's useless because it doesn't find any bug right now.

I found it interesting myself.  I did not know how well it fits
into the rest of the testing infrastructure, though.  Perhaps
you would want to reopen the issue after 1.5.4?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Documentation: config: add 'help.*' and 'instaweb.*' variables.
  2008-01-08  6:27 ` Junio C Hamano
@ 2008-01-08  7:43   ` Christian Couder
  2008-01-08  7:40     ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Christian Couder @ 2008-01-08  7:43 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Le mardi 8 janvier 2008, Junio C Hamano a écrit :
> Christian Couder <chriscool@tuxfamily.org> writes:
> > +web.browser::
> > +	Specify a web browser that may be used by some commands.
> > +	Currently only gitlink:git-instaweb[1] and gitlink:git-help[1]
> > +	may use it.
> > --
> > 1.5.4.rc2.38.gd6da3
>
> Somebody seems to have recounted the patch lines incorrectly
> here.  The hunk header should have read "@@ -843,3 +871,8 @@".

Yeah, sorry about that. I added "gitlink:" before "git-help[1]" and 
moved "may use" to the next line before "it" just before sending the patch.
This probably made xemacs recount badly.

By the way I had no comment on my RFC/Patch to run the test scripts under 
valgrind. Maybe it's useless because it doesn't find any bug right now.

Thanks,
Christian.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Documentation: config: add 'help.*' and 'instaweb.*' variables.
  2008-01-08  7:40     ` Junio C Hamano
@ 2008-01-08 10:32       ` Johannes Schindelin
  0 siblings, 0 replies; 5+ messages in thread
From: Johannes Schindelin @ 2008-01-08 10:32 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Christian Couder, git

Hi,

On Mon, 7 Jan 2008, Junio C Hamano wrote:

> Christian Couder <chriscool@tuxfamily.org> writes:
> 
> > By the way I had no comment on my RFC/Patch to run the test scripts 
> > under valgrind. Maybe it's useless because it doesn't find any bug 
> > right now.
> 
> I found it interesting myself.  I did not know how well it fits into the 
> rest of the testing infrastructure, though.  Perhaps you would want to 
> reopen the issue after 1.5.4?

I meant to rewrite it as a patch to test-lib.sh, because I found the use 
of perl not necessary.  Besides, I would like to integrate it better, i.e. 
"make USE_VALGRIND=yes" or "make USE_VALGRIND=t1501:2".

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-01-08 10:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-08  3:55 [PATCH] Documentation: config: add 'help.*' and 'instaweb.*' variables Christian Couder
2008-01-08  6:27 ` Junio C Hamano
2008-01-08  7:43   ` Christian Couder
2008-01-08  7:40     ` Junio C Hamano
2008-01-08 10:32       ` Johannes Schindelin

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).