mirror of
https://github.com/go-gitea/gitea
synced 2025-07-23 02:38:35 +00:00
Add warning for BIDI characters in page renders and in diffs (#17562)
Fix #17514 Given the comments I've adjusted this somewhat. The numbers of characters detected are increased and include things like the use of U+300 to make à instead of à and non-breaking spaces. There is a button which can be used to escape the content to show it. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Gwyneth Morgan <gwymor@tilde.club> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
17
templates/repo/unicode_escape_prompt.tmpl
Normal file
17
templates/repo/unicode_escape_prompt.tmpl
Normal file
@@ -0,0 +1,17 @@
|
||||
{{if .EscapeStatus.BadBIDI}}
|
||||
<div class="ui error message unicode-escape-prompt">
|
||||
<span class="close icon hide-panel button" data-panel-closest=".message">{{svg "octicon-x" 16 "close inside"}}</span>
|
||||
<div class="header">
|
||||
{{$.root.i18n.Tr "repo.bidi_bad_header"}}
|
||||
</div>
|
||||
<p>{{$.root.i18n.Tr "repo.bidi_bad_description" | Str2html}}</p>
|
||||
</div>
|
||||
{{else if .EscapeStatus.Escaped}}
|
||||
<div class="ui warning message unicode-escape-prompt">
|
||||
<span class="close icon hide-panel button" data-panel-closest=".message">{{svg "octicon-x" 16 "close inside"}}</span>
|
||||
<div class="header">
|
||||
{{$.root.i18n.Tr "repo.unicode_header"}}
|
||||
</div>
|
||||
<p>{{$.root.i18n.Tr "repo.unicode_description" | Str2html}}</p>
|
||||
</div>
|
||||
{{end}}
|
Reference in New Issue
Block a user