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 <redacted>
---
gitweb/gitweb.perl | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
bump?
On Wed, Aug 02, 2017 at 08:59:01PM +0200, Job Snijders wrote:
quoted hunk
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 <redacted>
---
gitweb/gitweb.perl | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
From: Giuseppe Bilotta <hidden> Date: 2017-08-21 10:20:05
Hello,
On Sun, Aug 20, 2017 at 8:03 PM, Job Snijders [off-list ref] wrote:
bump?
(As a side note, I have also noticed that gitweb patches tend to go
unreviewed for long)
On Wed, Aug 02, 2017 at 08:59:01PM +0200, Job Snijders wrote:
quoted
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 <redacted>
---
gitweb/gitweb.perl | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
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)
--
Giuseppe "Oblomov" Bilotta
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(+)
@@ -5967,6 +5967,9 @@ sub git_history_body {$cgi->a({-href=>href(action=>"commitdiff",hash=>$commit)},"commitdiff");if($ftypeeq'blob'){+print" | ".+$cgi->a({-href=>href(action=>"blob_plain",hash_base=>$commit,file_name=>$file_name)},"raw");
Nitpick: gitweb uses tabs for nested indents, but spaces for
alignment. For this line here, the last tab should be replace with
spaces (to align the $ with the quotes above.)
With that fixed, you can add
Reviewed-by: Giuseppe Bilotta <redacted>
--
Giuseppe "Oblomov" Bilotta