From: Luben Tuikov Date: Thu, 28 Sep 2006 23:50:09 +0000 (-0700) Subject: gitweb: Add snapshot to shortlog X-Git-Url: https://git.ladys.computer/Gitweb/commitdiff_plain/f95177c519a2b96d0a366157c19090b09e039deab4ca411add2485d4c6ad3a61 gitweb: Add snapshot to shortlog Add snapshot to each commit-row of shortlog. Signed-off-by: Luben Tuikov Signed-off-by: Junio C Hamano --- diff --git a/gitweb.perl b/gitweb.perl index 0199c01..ead5983 100755 --- a/gitweb.perl +++ b/gitweb.perl @@ -2021,7 +2021,8 @@ sub git_shortlog_body { print "\n" . "" . $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " . - $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree"); + $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree") . " | " . + $cgi->a({-href => href(action=>"snapshot", hash=>$commit)}, "snapshot"); print "\n" . "\n"; }