summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/GeertJohan/go.rice/rice/templates.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2018-08-06 21:47:05 +0200
committerWim <wim@42.be>2018-08-06 21:47:05 +0200
commit51062863a5c34d81e296cf15c61140911037cf3b (patch)
tree9b5e044672486326c7a0ca8fb26430f37bf4d83c /vendor/github.com/GeertJohan/go.rice/rice/templates.go
parent4fb4b7aa6c02a54db8ad8dd98e4d321396926c0d (diff)
downloadmatterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.gz
matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.bz2
matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.zip
Use mod vendor for vendored directory (backwards compatible)
Diffstat (limited to 'vendor/github.com/GeertJohan/go.rice/rice/templates.go')
-rw-r--r--vendor/github.com/GeertJohan/go.rice/rice/templates.go98
1 files changed, 0 insertions, 98 deletions
diff --git a/vendor/github.com/GeertJohan/go.rice/rice/templates.go b/vendor/github.com/GeertJohan/go.rice/rice/templates.go
deleted file mode 100644
index 02561ca0..00000000
--- a/vendor/github.com/GeertJohan/go.rice/rice/templates.go
+++ /dev/null
@@ -1,98 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
- "text/template"
-)
-
-var tmplEmbeddedBox *template.Template
-
-func init() {
- var err error
-
- // parse embedded box template
- tmplEmbeddedBox, err = template.New("embeddedBox").Parse(`package {{.Package}}
-
-import (
- "github.com/GeertJohan/go.rice/embedded"
- "time"
-)
-
-{{range .Boxes}}
-func init() {
-
- // define files
- {{range .Files}}{{.Identifier}} := &embedded.EmbeddedFile{
- Filename: ` + "`" + `{{.FileName}}` + "`" + `,
- FileModTime: time.Unix({{.ModTime}}, 0),
- Content: string({{.Content | printf "%q"}}),
- }
- {{end}}
-
- // define dirs
- {{range .Dirs}}{{.Identifier}} := &embedded.EmbeddedDir{
- Filename: ` + "`" + `{{.FileName}}` + "`" + `,
- DirModTime: time.Unix({{.ModTime}}, 0),
- ChildFiles: []*embedded.EmbeddedFile{
- {{range .ChildFiles}}{{.Identifier}}, // {{.FileName}}
- {{end}}
- },
- }
- {{end}}
-
- // link ChildDirs
- {{range .Dirs}}{{.Identifier}}.ChildDirs = []*embedded.EmbeddedDir{
- {{range .ChildDirs}}{{.Identifier}}, // {{.FileName}}
- {{end}}
- }
- {{end}}
-
- // register embeddedBox
- embedded.RegisterEmbeddedBox(` + "`" + `{{.BoxName}}` + "`" + `, &embedded.EmbeddedBox{
- Name: ` + "`" + `{{.BoxName}}` + "`" + `,
- Time: time.Unix({{.UnixNow}}, 0),
- Dirs: map[string]*embedded.EmbeddedDir{
- {{range .Dirs}}"{{.FileName}}": {{.Identifier}},
- {{end}}
- },
- Files: map[string]*embedded.EmbeddedFile{
- {{range .Files}}"{{.FileName}}": {{.Identifier}},
- {{end}}
- },
- })
-}
-{{end}}`)
- if err != nil {
- fmt.Printf("error parsing embedded box template: %s\n", err)
- os.Exit(-1)
- }
-}
-
-type embedFileDataType struct {
- Package string
- Boxes []*boxDataType
-}
-
-type boxDataType struct {
- BoxName string
- UnixNow int64
- Files []*fileDataType
- Dirs map[string]*dirDataType
-}
-
-type fileDataType struct {
- Identifier string
- FileName string
- Content []byte
- ModTime int64
-}
-
-type dirDataType struct {
- Identifier string
- FileName string
- Content []byte
- ModTime int64
- ChildDirs []*dirDataType
- ChildFiles []*fileDataType
-}