-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwrapTemplateText.go
103 lines (81 loc) · 2.52 KB
/
wrapTemplateText.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Copyright 2016 Andreas Pannewitz. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package template
import (
"text/template"
"text/template/parse"
)
type textTmpl struct{ *template.Template }
// Text returns a new "text/template" Template
func Text(Name string) Template {
return textTmpl{template.New(Name)}
}
// method wrappers - in alphabetical order
func (t textTmpl) AddParseTree(name string, tree *parse.Tree) (Template, error) {
tmpl, err := t.Template.AddParseTree(name, tree)
return textTmpl{tmpl}, err
}
func (t textTmpl) Clone() (Template, error) {
tmpl, err := t.Template.Clone()
return textTmpl{tmpl}, err
}
func (t textTmpl) Delims(left, right string) Template {
return textTmpl{t.Template.Delims(left, right)}
}
/* inherited:
func (t textTmpl) Execute(wr io.Writer, data interface{}) error {
return t.Template.Execute(wr, data)
}
func (t textTmpl) ExecuteTemplate(wr io.Writer, name string, data interface{}) error {
return t.Template.ExecuteTemplate(wr, name, data)
}
*/
func (t textTmpl) Funcs(funcMap map[string]interface{}) Template {
return textTmpl{t.Template.Funcs(template.FuncMap(funcMap))}
}
func (t textTmpl) Lookup(name string) Template {
return textTmpl{t.Template.Lookup(name)}
}
/* inherited:
func (t textTmpl) Name() string {
return t.Template.Name()
}
*/
func (t textTmpl) New(name string) Template {
return textTmpl{t.Template.New(name)}
}
func (t textTmpl) Option(opt ...string) Template {
return textTmpl{t.Template.Option(opt...)}
}
func (t textTmpl) Parse(text string) (Template, error) {
tmpl, err := t.Template.Parse(text)
return textTmpl{tmpl}, err
}
func (t textTmpl) ParseFiles(filenames ...string) (Template, error) {
tmpl, err := t.Template.ParseFiles(filenames...)
return textTmpl{tmpl}, err
}
func (t textTmpl) ParseGlob(pattern string) (Template, error) {
tmpl, err := t.Template.ParseGlob(pattern)
return textTmpl{tmpl}, err
}
func (t textTmpl) Templates() []Template {
tmps := t.Template.Templates()
news := make([]Template, 0, len(tmps))
for i := range tmps {
news = append(news, textTmpl{tmps[i]})
}
return news
}
// package functions
// ParseTextFiles wraps text/template.ParseFiles
func ParseTextFiles(filenames ...string) (Template, error) {
tmpl, err := template.ParseFiles(filenames...)
return textTmpl{tmpl}, err
}
// ParseTextGlob wraps text/template.ParseGlob
func ParseTextGlob(pattern string) (Template, error) {
tmpl, err := template.ParseGlob(pattern)
return textTmpl{tmpl}, err
}