bench-forgejo/modules/base/template.go

88 lines
1.7 KiB
Go
Raw Normal View History

// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package base
import (
2014-03-19 12:09:07 +05:30
"container/list"
2014-03-19 19:27:55 +05:30
"fmt"
"html/template"
2014-03-19 22:20:44 +05:30
"strings"
2014-03-19 19:27:55 +05:30
"time"
)
func Str2html(raw string) template.HTML {
return template.HTML(raw)
}
2014-03-19 12:09:07 +05:30
func Range(l int) []int {
return make([]int, l)
}
func List(l *list.List) chan interface{} {
e := l.Front()
c := make(chan interface{})
go func() {
for e != nil {
c <- e.Value
e = e.Next()
}
close(c)
}()
return c
}
2014-03-30 07:35:54 +05:30
func ShortSha(sha1 string) string {
if len(sha1) == 40 {
return sha1[:10]
}
return sha1
}
2014-03-21 10:39:22 +05:30
var mailDomains = map[string]string{
"gmail.com": "gmail.com",
}
var TemplateFuncs template.FuncMap = map[string]interface{}{
"AppName": func() string {
return AppName
},
"AppVer": func() string {
return AppVer
},
2014-03-17 15:43:07 +05:30
"AppDomain": func() string {
return Domain
},
2014-03-19 19:27:55 +05:30
"LoadTimes": func(startTime time.Time) string {
return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms"
},
2014-03-17 10:27:18 +05:30
"AvatarLink": AvatarLink,
"str2html": Str2html,
"TimeSince": TimeSince,
2014-03-15 21:59:49 +05:30
"FileSize": FileSize,
"Subtract": Subtract,
"ActionIcon": ActionIcon,
"ActionDesc": ActionDesc,
"DateFormat": DateFormat,
2014-03-19 12:09:07 +05:30
"List": List,
2014-03-19 22:20:44 +05:30
"Mail2Domain": func(mail string) string {
2014-04-05 22:02:34 +05:30
if !strings.Contains(mail, "@") {
return "try.gogits.org"
}
2014-03-21 10:39:22 +05:30
suffix := strings.SplitN(mail, "@", 2)[1]
domain, ok := mailDomains[suffix]
if !ok {
return "mail." + suffix
}
return domain
2014-03-19 22:20:44 +05:30
},
2014-03-19 22:44:56 +05:30
"SubStr": func(str string, start, length int) string {
return str[start : start+length]
},
2014-03-27 02:11:16 +05:30
"DiffTypeToStr": DiffTypeToStr,
"DiffLineTypeToStr": DiffLineTypeToStr,
2014-03-30 07:35:54 +05:30
"ShortSha": ShortSha,
}