]> Lady’s Gitweb - Gitweb/commitdiff
gitweb: Default to $hash_base or HEAD for $hash in "commit" and "commitdiff"
authorJakub Narebski <redacted>
Sat, 18 Nov 2006 22:35:41 +0000 (23:35 +0100)
committerLady <redacted>
Mon, 6 Apr 2026 04:07:11 +0000 (00:07 -0400)
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 <redacted>
Signed-off-by: Junio C Hamano <redacted>
gitweb.perl

index 64c7d54a506b6881152b7f4adc73c0f53cfe416f4536593a61679433224765bf..6503bd04508a2ef480abe004f97e234f3b119efcb138345ade5867711f6add0b 100755 (executable)
@@ -3430,6 +3430,7 @@ sub git_log {
 }
 
 sub git_commit {
+       $hash ||= $hash_base || "HEAD";
        my %co = parse_commit($hash);
        if (!%co) {
                die_error(undef, "Unknown commit object");
@@ -3707,6 +3708,7 @@ sub git_blobdiff_plain {
 
 sub git_commitdiff {
        my $format = shift || 'html';
+       $hash ||= $hash_base || "HEAD";
        my %co = parse_commit($hash);
        if (!%co) {
                die_error(undef, "Unknown commit object");
This page took 0.221192 seconds and 4 git commands to generate.