Forgejo/modules/base/template.go

53 lines
969 B
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 07:39:07 +01:00
"container/list"
"html/template"
)
func Str2html(raw string) template.HTML {
return template.HTML(raw)
}
2014-03-19 07:39:07 +01:00
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
}
var TemplateFuncs template.FuncMap = map[string]interface{}{
"AppName": func() string {
return AppName
},
"AppVer": func() string {
return AppVer
},
2014-03-17 11:13:07 +01:00
"AppDomain": func() string {
return Domain
},
2014-03-17 05:57:18 +01:00
"AvatarLink": AvatarLink,
"str2html": Str2html,
"TimeSince": TimeSince,
2014-03-15 17:29:49 +01:00
"FileSize": FileSize,
"Subtract": Subtract,
"ActionIcon": ActionIcon,
"ActionDesc": ActionDesc,
"DateFormat": DateFormat,
2014-03-19 07:39:07 +01:00
"List": List,
}