From 5a12e7570bc48e7ca903ddb8dbcf928171670cdb Mon Sep 17 00:00:00 2001 From: Gusted <williamzijl7@hotmail.com> Date: Sun, 14 Nov 2021 21:25:32 +0100 Subject: [PATCH] Add download button for file viewer - Resolves #17286 - Use the `download` attribute such that the browser will natively initate a download dialog for the given URL. --- options/locale/locale_en-US.ini | 1 + templates/repo/view_file.tmpl | 1 + 2 files changed, 2 insertions(+) diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index 7d6c878ad6c28..2069b20530149 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -989,6 +989,7 @@ commit_graph.hide_pr_refs = Hide Pull Requests commit_graph.monochrome = Mono commit_graph.color = Color blame = Blame +download_file = Download file normal_view = Normal View line = line lines = lines diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl index 0c8990a4f5c8d..2c678beb90736 100644 --- a/templates/repo/view_file.tmpl +++ b/templates/repo/view_file.tmpl @@ -48,6 +48,7 @@ {{end}} <a class="ui mini basic button" href="{{.RepoLink}}/commits/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_history"}}</a> </div> + <a download href="{{EscapePound $.RawFileLink}}"><span class="btn-octicon poping up" data-content="{{.i18n.Tr "repo.download_file"}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-download"}}</span></a> {{if .Repository.CanEnableEditor}} {{if .CanEditFile}} <a href="{{.RepoLink}}/_edit/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}"><span class="btn-octicon poping up" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-pencil"}}</span></a>