From 9ae1f514d7151c31043d282f1eda5c816faaf86f Mon Sep 17 00:00:00 2001 From: Job Snijders Date: Wed, 2 Aug 2017 20:59:01 +0200 Subject: [PATCH] Add 'raw' blob_plain link in history overview We often work with very large plain text files in our repositories and found it friendlier to the users if we can click directly to the raw version of such files. This patch adds a 'raw' blob_plain link in history overview. Signed-off-by: Job Snijders --- gitweb/gitweb.perl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 9208f42ed1..d172f2b72c 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -5963,8 +5963,11 @@ sub git_history_body { href(action=>"commit", hash=>$commit), $ref); print "\n" . "" . - $cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)}, $ftype) . " | " . - $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff"); + $cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)}, $ftype) . " | "; + if ($ftype eq 'blob') { + print $cgi->a({-href => href(action=>"blob_plain", hash_base=>$commit, file_name=>$file_name)}, "raw") . " | "; + } + print $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff"); if ($ftype eq 'blob') { my $blob_current = $file_hash; -- 2.32.0.93.g670b81a890