Re: [PATCH] gitweb: add a setting to control the tabstop width
From: Jakub Narebski <hidden>
Date: 2016-06-15 22:44:20
Charles Bailey wrote:
On Mon, Mar 03, 2008 at 11:33:28PM +0100, Jakub Narebski wrote:quoted
Charles Bailey [off-list ref] writes:quoted
The untabify function seems the sensible place to make the change. As untabify is called once per line from various different locations it also makes sense to cache the result of the config lookup in a package variable, though this makes the change slightly less neat.Since b201927 (gitweb: Read repo config using 'git config -z -l') repository config is cached in %config hash (per repository), so I don't think global / package variable $tabstop_width is really needed...Fair point, although we still save the cost of some 'is the config variable overrideable and if so is it overriden' logic. Untabify is a once per line call which is more frequesnt than most gitweb config checking calls.
Good enough. One think I'd worry about is interaction with mod_perl (or FastCGI), namely if $tabstop_width wouldn't get stale information. Perhaps writing our $tabstop_width = undef; as initializer would be enough. -- Jakub Narebski Poland