diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-17 00:57:18 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-17 00:57:18 -0400 |
commit | 0f68930892bc49966769f8931e9a531b37dacb3b (patch) | |
tree | 2e125d90f57b3119229a62224cab807f3a79025a /modules/base | |
parent | 664bbe4f54248b1c5e7110dc88b8d24209566a11 (diff) | |
download | gitea-0f68930892bc49966769f8931e9a531b37dacb3b.tar.gz gitea-0f68930892bc49966769f8931e9a531b37dacb3b.zip |
Add latest commit in repo viewer
Diffstat (limited to 'modules/base')
-rw-r--r-- | modules/base/template.go | 1 | ||||
-rw-r--r-- | modules/base/tool.go | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/modules/base/template.go b/modules/base/template.go index b38ab140c9..1a0b5977e3 100644 --- a/modules/base/template.go +++ b/modules/base/template.go @@ -19,6 +19,7 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{ "AppVer": func() string { return AppVer }, + "AvatarLink": AvatarLink, "str2html": Str2html, "TimeSince": TimeSince, "FileSize": FileSize, diff --git a/modules/base/tool.go b/modules/base/tool.go index 10b3fee375..046b2c5174 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -22,6 +22,11 @@ func EncodeMd5(str string) string { return hex.EncodeToString(m.Sum(nil)) } +// AvatarLink returns avatar link by given e-mail. +func AvatarLink(email string) string { + return "http://1.gravatar.com/avatar/" + EncodeMd5(email) +} + // Seconds-based time units const ( Minute = 60 |