Skip to content

Commit 9954f77

Browse files
jnarebJunio C Hamano
authored andcommitted
gitweb: Default to $hash_base or HEAD for $hash in "commit" and "commitdiff"
Set $hash parameter to $hash_base || "HEAD" if it is not set (if it is not true to be more exact). This allows [hand-edited] URLs with 'action' "commit" or "commitdiff" but without 'hash' parameter. If there is 'h' (hash) parameter provided, then gitweb tries to use this. HEAD is used _only_ if nether hash, nor hash_base are provided, i.e. for URL like below URL?p=project.git;a=commit i.e. without neither 'h' nor 'hb'. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 6d55f05 commit 9954f77

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

gitweb/gitweb.perl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3429,6 +3429,7 @@ sub git_log {
34293429
}
34303430

34313431
sub git_commit {
3432+
$hash ||= $hash_base || "HEAD";
34323433
my %co = parse_commit($hash);
34333434
if (!%co) {
34343435
die_error(undef, "Unknown commit object");
@@ -3706,6 +3707,7 @@ sub git_blobdiff_plain {
37063707

37073708
sub git_commitdiff {
37083709
my $format = shift || 'html';
3710+
$hash ||= $hash_base || "HEAD";
37093711
my %co = parse_commit($hash);
37103712
if (!%co) {
37113713
die_error(undef, "Unknown commit object");

0 commit comments

Comments
 (0)