summaryrefslogtreecommitdiffstats
path: root/modules/base/template.go
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2015-01-30 18:05:20 -0500
committerUnknwon <joe2010xtmf@163.com>2015-01-30 18:05:20 -0500
commit37fcc8daf2d7d86e4d0f8baaeab0b2e11e5ec8d0 (patch)
tree701088978b660c46cdb463e0f191aed8adb01195 /modules/base/template.go
parent9803f84c883c372cca9ed5859cbf8f930af63d51 (diff)
downloadgitea-37fcc8daf2d7d86e4d0f8baaeab0b2e11e5ec8d0.tar.gz
gitea-37fcc8daf2d7d86e4d0f8baaeab0b2e11e5ec8d0.zip
modules/base: add RenderCommitMessage with XSS-safe and special links
- update russian locale
Diffstat (limited to 'modules/base/template.go')
-rw-r--r--modules/base/template.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/base/template.go b/modules/base/template.go
index 829999d1c9..34caa4552b 100644
--- a/modules/base/template.go
+++ b/modules/base/template.go
@@ -90,6 +90,11 @@ func ToUtf8(content string) string {
return res
}
+// RenderCommitMessage renders commit message with XSS-safe and special links.
+func RenderCommitMessage(msg, urlPrefix string) template.HTML {
+ return template.HTML(string(RenderIssueIndexPattern([]byte(template.HTMLEscapeString(msg)), urlPrefix)))
+}
+
var mailDomains = map[string]string{
"gmail.com": "gmail.com",
}
@@ -163,6 +168,7 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{
"EscapePound": func(str string) string {
return strings.Replace(str, "#", "%23", -1)
},
+ "RenderCommitMessage": RenderCommitMessage,
}
type Actioner interface {