On Fri, Feb 08, 2008 at 04:33:54PM +0100, Jakub Narebski wrote: > I have joined the two emails to reply only once. > > On Fri, 8 Feb 2008, Bruno Cesar Ribas wrote: > > On Fri, Feb 08, 2008 at 02:55:33AM -0800, Jakub Narebski wrote: > >> Bruno Ribas <ribas@xxxxxxxxxxxx> writes: > >>> > >>> diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl > >>> index 8ef2735..e8a43b7 100755 > >>> --- a/gitweb/gitweb.perl > >>> +++ b/gitweb/gitweb.perl > >>> @@ -1767,7 +1767,12 @@ sub git_get_project_owner { > >>> if (exists $gitweb_project_owner->{$project}) { > >>> $owner = $gitweb_project_owner->{$project}; > >>> } > >>> - if (!defined $owner) { > >>> + > >>> + if (!defined $owner){ > >>> + $owner = git_get_project_config('owner'); > >>> + } > >>> + > >>> + if (!$owner) { > >>> $owner = get_file_owner("$projectroot/$project"); > >>> } > > Another comment: why did you change from checking of "!defined $owner" > to checking "!$owner"? git_get_project_config('owner') returns undef > if gitweb.owner is not defined. With checking for defined we can avoid > false positives of owner being "0" (in practice I think this does not > matter) or "" (this could happen if somebody doesn't want for project > to have owner shown). When I tested it returned empty, but i found out it was lack of NAME for the user i was running tests. > > > > I'll resend [...] with $git_dir set. > > And with signoff corrected, I assume? of course. > > Please try to check if the code works with and without gitweb.owner set > before sending new version of the patch... I always do that. > -- > Jakub Narebski > Poland -- Bruno Ribas - ribas@xxxxxxxxxxxx http://web.inf.ufpr.br/ribas C3SL: http://www.c3sl.ufpr.br - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html