summaryrefslogtreecommitdiffstats
path: root/modules/base
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-08-13 16:07:11 +0800
committerUnknwon <u@gogs.io>2015-08-13 16:07:11 +0800
commit133b19d0c5587b7c6d5d9e8057f81bc45a246972 (patch)
tree1cd0e19599d5f9288fb1b2cbf5bf8f48fdf16fd8 /modules/base
parentd7d72b9e3cc0e536d213d6501244544de8020661 (diff)
downloadgitea-133b19d0c5587b7c6d5d9e8057f81bc45a246972.tar.gz
gitea-133b19d0c5587b7c6d5d9e8057f81bc45a246972.zip
finish view comments on issue page
Diffstat (limited to 'modules/base')
-rw-r--r--modules/base/template.go13
-rw-r--r--modules/base/tool.go4
2 files changed, 11 insertions, 6 deletions
diff --git a/modules/base/template.go b/modules/base/template.go
index 0d68254561..7f57538863 100644
--- a/modules/base/template.go
+++ b/modules/base/template.go
@@ -131,12 +131,13 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{
"LoadTimes": func(startTime time.Time) string {
return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms"
},
- "AvatarLink": AvatarLink,
- "Safe": Safe,
- "Str2html": Str2html,
- "TimeSince": TimeSince,
- "FileSize": FileSize,
- "Subtract": Subtract,
+ "AvatarLink": AvatarLink,
+ "Safe": Safe,
+ "Str2html": Str2html,
+ "TimeSince": TimeSince,
+ "RawTimeSince": RawTimeSince,
+ "FileSize": FileSize,
+ "Subtract": Subtract,
"Add": func(a, b int) int {
return a + b
},
diff --git a/modules/base/tool.go b/modules/base/tool.go
index 2435ebe06f..16759f21f6 100644
--- a/modules/base/tool.go
+++ b/modules/base/tool.go
@@ -321,6 +321,10 @@ func timeSince(then time.Time, lang string) string {
}
}
+func RawTimeSince(t time.Time, lang string) string {
+ return timeSince(t, lang)
+}
+
// TimeSince calculates the time interval and generate user-friendly string.
func TimeSince(t time.Time, lang string) template.HTML {
return template.HTML(fmt.Sprintf(`<span class="time-since" title="%s">%s</span>`, t.Format(setting.TimeFormat), timeSince(t, lang)))