From: Jakub Narebski Date: Thu, 28 Jul 2011 21:38:03 +0000 (+0200) Subject: gitweb: Git config keys are case insensitive, make config search too X-Git-Tag: v1.7.7-rc0~44^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=14569cd810ad35a66ca7867505e0b2dd202ab95f;p=git.git gitweb: Git config keys are case insensitive, make config search too "git config -z -l" that gitweb uses in git_parse_project_config() to populate %config hash returns section and key names of config variables in lowercase (they are case insensitive). When checking %config in git_get_project_config() we have to take it into account. Helped-by: Junio C Hamano Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 81dacf2b6..73492771d 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2510,6 +2510,13 @@ sub git_get_project_config { # key sanity check return unless ($key); + # only subsection, if exists, is case sensitive, + # and not lowercased by 'git config -z -l' + if (my ($hi, $mi, $lo) = ($key =~ /^([^.]*)\.(.*)\.([^.]*)$/)) { + $key = join(".", lc($hi), $mi, lc($lo)); + } else { + $key = lc($key); + } $key =~ s/^gitweb\.//; return if ($key =~ m/\W/);