2014-03-15 16:31:50 +05:30
|
|
|
// 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-15 16:31:50 +05:30
|
|
|
"html/template"
|
|
|
|
)
|
|
|
|
|
|
|
|
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-15 16:31:50 +05:30
|
|
|
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-17 10:27:18 +05:30
|
|
|
"AvatarLink": AvatarLink,
|
2014-03-15 16:31:50 +05:30
|
|
|
"str2html": Str2html,
|
|
|
|
"TimeSince": TimeSince,
|
2014-03-15 21:59:49 +05:30
|
|
|
"FileSize": FileSize,
|
2014-03-15 16:31:50 +05:30
|
|
|
"Subtract": Subtract,
|
|
|
|
"ActionIcon": ActionIcon,
|
|
|
|
"ActionDesc": ActionDesc,
|
|
|
|
"DateFormat": DateFormat,
|
2014-03-19 12:09:07 +05:30
|
|
|
"List": List,
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|