Re: [PATCH] Add 'raw' blob_plain link in history overview
From: Job Snijders <hidden>
Date: 2017-08-21 10:44:34
Subsystem:
the rest · Maintainer:
Linus Torvalds
On Mon, Aug 21, 2017 at 12:19:38PM +0200, Giuseppe Bilotta wrote:
quoted
quoted
This patch adds a 'raw' blob_plain link in history overview.Arguably, the addition of the 'raw' link should be done in the same conditional that also adds the 'diff to current' link, before the diff to current link. This would be more consistent with the tree view (which puts the raw link last), while still preserving the alignment of the link position independently of the existence of the 'diff to current' link. (Bonus extra: smaller patch)
Thank you for your feedback, good point. Please see below: --- Add a 'raw' blob_plain link in history overview Signed-off-by: Job Snijders <redacted> --- gitweb/gitweb.perl | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 9208f42ed..c43bbe331 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 &&