diff options
author | Bwko <bouwko@gmail.com> | 2018-04-10 05:43:37 +0200 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-04-10 06:43:37 +0300 |
commit | 38a9cda4bbcddff59c856d42de714b6764887fde (patch) | |
tree | b6c7ea5e0886c6b72365e8d01a436b5c69d8a820 | |
parent | 8ee45eb614eaa4814936a2166addc8c1208ea1f5 (diff) | |
download | gitea-38a9cda4bbcddff59c856d42de714b6764887fde.tar.gz gitea-38a9cda4bbcddff59c856d42de714b6764887fde.zip |
Remove unnecessary Safe tags (#3778)
-rw-r--r-- | templates/repo/branch/list.tmpl | 6 | ||||
-rw-r--r-- | templates/repo/create.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/editor/commit_form.tmpl | 3 | ||||
-rw-r--r-- | templates/repo/issue/view_content.tmpl | 6 | ||||
-rw-r--r-- | templates/repo/issue/view_content/comments.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/settings/options.tmpl | 8 |
6 files changed, 13 insertions, 14 deletions
diff --git a/templates/repo/branch/list.tmpl b/templates/repo/branch/list.tmpl index cd6afce912..c3bc04df27 100644 --- a/templates/repo/branch/list.tmpl +++ b/templates/repo/branch/list.tmpl @@ -69,12 +69,12 @@ <div class="ui small basic delete modal"> <div class="ui icon header"> <i class="trash icon"></i> - {{.i18n.Tr "repo.branch.delete_html"| Safe}} <span class="branch-name"></span> + {{.i18n.Tr "repo.branch.delete_html"}} <span class="branch-name"></span> </div> <div class="content"> - <p>{{.i18n.Tr "repo.branch.delete_desc" | Safe}}</p> + <p>{{.i18n.Tr "repo.branch.delete_desc"}}</p> {{.i18n.Tr "repo.branch.delete_notices_1" | Safe}}<br> - {{.i18n.Tr "repo.branch.delete_notices_html" | Safe}} <span class="branch-name"></span><br> + {{.i18n.Tr "repo.branch.delete_notices_html"}} <span class="branch-name"></span><br> </div> {{template "base/delete_modal_actions" .}} </div> diff --git a/templates/repo/create.tmpl b/templates/repo/create.tmpl index 7e608b1d34..ff66bf17a1 100644 --- a/templates/repo/create.tmpl +++ b/templates/repo/create.tmpl @@ -36,7 +36,7 @@ <div class="inline required field {{if .Err_RepoName}}error{{end}}"> <label for="repo_name">{{.i18n.Tr "repo.repo_name"}}</label> <input id="repo_name" name="repo_name" value="{{.repo_name}}" autofocus required> - <span class="help">{{.i18n.Tr "repo.repo_name_helper" | Safe}}</span> + <span class="help">{{.i18n.Tr "repo.repo_name_helper"}}</span> </div> <div class="inline field"> <label>{{.i18n.Tr "repo.visibility"}}</label> diff --git a/templates/repo/editor/commit_form.tmpl b/templates/repo/editor/commit_form.tmpl index 7b7e2cf463..be2773d624 100644 --- a/templates/repo/editor/commit_form.tmpl +++ b/templates/repo/editor/commit_form.tmpl @@ -14,8 +14,7 @@ <input type="radio" class="js-quick-pull-choice-option" name="commit_choice" value="direct" {{if eq .commit_choice "direct"}}checked{{end}}> <label> <i class="octicon octicon-git-commit" height="16" width="14"></i> - {{$branchName := .BranchName | Str2html}} - {{.i18n.Tr "repo.editor.commit_directly_to_this_branch" $branchName | Safe}} + {{.i18n.Tr "repo.editor.commit_directly_to_this_branch" (.BranchName|Escape) | Safe}} </label> </div> </div> diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index ea0e32c55e..3fb0108942 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -134,12 +134,12 @@ <div class="ui small basic delete modal"> <div class="ui icon header"> <i class="trash icon"></i> - {{.i18n.Tr "repo.branch.delete" .HeadTarget | Safe}} + {{.i18n.Tr "repo.branch.delete" .HeadTarget }} </div> <div class="content"> - <p>{{.i18n.Tr "repo.branch.delete_desc" | Safe}}</p> + <p>{{.i18n.Tr "repo.branch.delete_desc"}}</p> {{.i18n.Tr "repo.branch.delete_notices_1" | Safe}}<br> - {{.i18n.Tr "repo.branch.delete_notices_2" .HeadTarget | Safe}}<br> + {{.i18n.Tr "repo.branch.delete_notices_2" .HeadTarget}}<br> </div> {{template "base/delete_modal_actions" .}} </div> diff --git a/templates/repo/issue/view_content/comments.tmpl b/templates/repo/issue/view_content/comments.tmpl index 3557c5d3c1..662155144f 100644 --- a/templates/repo/issue/view_content/comments.tmpl +++ b/templates/repo/issue/view_content/comments.tmpl @@ -145,7 +145,7 @@ <img src="{{.Poster.RelAvatarLink}}"> </a> <span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.Name}}</a> - {{$.i18n.Tr "repo.issues.delete_branch_at" .CommitSHA $createdStr | Safe}} + {{$.i18n.Tr "repo.issues.delete_branch_at" (.CommitSHA|Escape) $createdStr | Safe}} </span> </div> {{else if eq .Type 12}} diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index 3e811559ee..f8ba4137c2 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -326,7 +326,7 @@ </div> <div class="content"> <div class="ui warning message text left"> - {{.i18n.Tr "repo.settings.convert_notices_1" | Safe}} + {{.i18n.Tr "repo.settings.convert_notices_1"}} </div> <form class="ui form" action="{{.Link}}" method="post"> {{.CsrfTokenHtml}} @@ -357,8 +357,8 @@ </div> <div class="content"> <div class="ui warning message text left"> - {{.i18n.Tr "repo.settings.transfer_notices_1" | Safe}} <br> - {{.i18n.Tr "repo.settings.transfer_notices_2" | Safe}} + {{.i18n.Tr "repo.settings.transfer_notices_1"}} <br> + {{.i18n.Tr "repo.settings.transfer_notices_2"}} </div> <form class="ui form" action="{{.Link}}" method="post"> {{.CsrfTokenHtml}} @@ -395,7 +395,7 @@ {{.i18n.Tr "repo.settings.delete_notices_1" | Safe}}<br> {{.i18n.Tr "repo.settings.delete_notices_2" .Repository.FullName | Safe}} {{if .Repository.NumForks}}<br> - {{.i18n.Tr "repo.settings.delete_notices_fork_1" | Safe}} + {{.i18n.Tr "repo.settings.delete_notices_fork_1"}} {{end}} </div> <form class="ui form" action="{{.Link}}" method="post"> |