gitweb: Fix "heads" view when there is no current branch

In a repository whose HEAD points to an unborn branch with no commits,
"heads" view and "summary" view (which shows what is shown in "heads"
view) compared the object names of commits at the tip of branches with the
output from "git rev-parse HEAD", which caused comparison of a string with
undef and resulted in a warning in the server log.

This can happen if non-bare repository (with default 'master' branch)
is updated not via committing but by other means like push to it, or
Gerrit.  It can happen also just after running "git checkout --orphan
<new branch>" but before creating any new commit on this branch.

Rewrite the comparison so that it also works when $head points at nothing;
in such a case, no branch can be "the current branch", add a test for it.
While at it, rename local variable $head to $head_at, as it points to
current commit rather than current branch name (HEAD contents).

The code still incorrectly shows all branches that point at the same
commit as what HEAD points as "the current branch", even when HEAD is
detached. Fixing this bug is outside the scope of this patch.

Reported-by: Rajesh Boyapati
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jakub Narebski 2012-02-15 16:36:41 +01:00 коммит произвёл Junio C Hamano
Родитель 90020e3bcd
Коммит fd49e56af6
2 изменённых файлов: 11 добавлений и 2 удалений

Просмотреть файл

@ -5568,7 +5568,7 @@ sub git_tags_body {
sub git_heads_body { sub git_heads_body {
# uses global variable $project # uses global variable $project
my ($headlist, $head, $from, $to, $extra) = @_; my ($headlist, $head_at, $from, $to, $extra) = @_;
$from = 0 unless defined $from; $from = 0 unless defined $from;
$to = $#{$headlist} if (!defined $to || $#{$headlist} < $to); $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
@ -5577,7 +5577,7 @@ sub git_heads_body {
for (my $i = $from; $i <= $to; $i++) { for (my $i = $from; $i <= $to; $i++) {
my $entry = $headlist->[$i]; my $entry = $headlist->[$i];
my %ref = %$entry; my %ref = %$entry;
my $curr = $ref{'id'} eq $head; my $curr = defined $head_at && $ref{'id'} eq $head_at;
if ($alternate) { if ($alternate) {
print "<tr class=\"dark\">\n"; print "<tr class=\"dark\">\n";
} else { } else {

Просмотреть файл

@ -731,4 +731,13 @@ test_expect_success \
'echo "\$projects_list_group_categories = 1;" >>gitweb_config.perl && 'echo "\$projects_list_group_categories = 1;" >>gitweb_config.perl &&
gitweb_run' gitweb_run'
# ----------------------------------------------------------------------
# unborn branches
test_expect_success \
'unborn HEAD: "summary" page (with "heads" subview)' \
'git checkout orphan_branch || git checkout --orphan orphan_branch &&
test_when_finished "git checkout master" &&
gitweb_run "p=.git;a=summary"'
test_done test_done