From: Junio C Hamano Date: Wed, 23 Aug 2017 21:37:59 +0000 (-0700) Subject: Merge branch 'js/gitweb-raw-blob-link-in-history' into next X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/16258266e23753589e90fad4a67e3798c7283c68?hp=0faff383a88bd258a9aa14cabfe96c9da1f053bd Merge branch 'js/gitweb-raw-blob-link-in-history' into next "gitweb" shows a link to visit the 'raw' contents of blbos in the history overview page. * js/gitweb-raw-blob-link-in-history: gitweb: add 'raw' blob_plain link in history overview --- diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 9208f42ed1..959f04b494 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -5967,6 +5967,9 @@ sub git_history_body { $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff"); if ($ftype eq 'blob') { + print " | " . + $cgi->a({-href => href(action=>"blob_plain", hash_base=>$commit, file_name=>$file_name)}, "raw"); + my $blob_current = $file_hash; my $blob_parent = git_get_hash_by_path($commit, $file_name); if (defined $blob_current && defined $blob_parent &&