seaweedfs/weed/server/filer_ui/templates.go

26 lines
503 B
Go
Raw Normal View History

2021-04-23 05:21:11 +08:00
package filer_ui
2016-07-18 16:28:24 +08:00
import (
_ "embed"
2018-08-11 14:47:31 +08:00
"github.com/dustin/go-humanize"
"html/template"
2020-09-11 10:46:00 +08:00
"net/url"
"strings"
2016-07-18 16:28:24 +08:00
)
2020-09-11 10:46:00 +08:00
func printpath(parts ...string) string {
concat := strings.Join(parts, "")
escaped := url.PathEscape(concat)
return strings.ReplaceAll(escaped, "%2F", "/")
}
2018-08-11 14:47:31 +08:00
var funcMap = template.FuncMap{
"humanizeBytes": humanize.Bytes,
2020-09-11 10:46:00 +08:00
"printpath": printpath,
2018-08-11 14:47:31 +08:00
}
//go:embed filer.html
var filerHtml string
2018-08-20 09:42:40 +08:00
var StatusTpl = template.Must(template.New("status").Funcs(funcMap).Parse(filerHtml))