mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			969 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			969 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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 (
 | |
| 	"container/list"
 | |
| 	"html/template"
 | |
| )
 | |
| 
 | |
| func Str2html(raw string) template.HTML {
 | |
| 	return template.HTML(raw)
 | |
| }
 | |
| 
 | |
| 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
 | |
| 	},
 | |
| 	"AppDomain": func() string {
 | |
| 		return Domain
 | |
| 	},
 | |
| 	"AvatarLink": AvatarLink,
 | |
| 	"str2html":   Str2html,
 | |
| 	"TimeSince":  TimeSince,
 | |
| 	"FileSize":   FileSize,
 | |
| 	"Subtract":   Subtract,
 | |
| 	"ActionIcon": ActionIcon,
 | |
| 	"ActionDesc": ActionDesc,
 | |
| 	"DateFormat": DateFormat,
 | |
| 	"List":       List,
 | |
| }
 |