mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-02 22:27:10 +01:00
export of variables undone
This commit is contained in:
parent
9995466a18
commit
e039577d66
2 changed files with 9 additions and 9 deletions
|
@ -39,11 +39,11 @@ func templatesParse(c *Controller) ([]templates.Rule, error) {
|
|||
// Any remaining arguments are extensions
|
||||
rule.Extensions = c.RemainingArgs()
|
||||
if len(rule.Extensions) == 0 {
|
||||
rule.Extensions = DefaultTemplateExtensions
|
||||
rule.Extensions = defaultTemplateExtensions
|
||||
}
|
||||
} else {
|
||||
rule.Path = DefaultTemplatePath
|
||||
rule.Extensions = DefaultTemplateExtensions
|
||||
rule.Path = defaultTemplatePath
|
||||
rule.Extensions = defaultTemplateExtensions
|
||||
}
|
||||
|
||||
for _, ext := range rule.Extensions {
|
||||
|
@ -56,6 +56,6 @@ func templatesParse(c *Controller) ([]templates.Rule, error) {
|
|||
return rules, nil
|
||||
}
|
||||
|
||||
const DefaultTemplatePath = "/"
|
||||
const defaultTemplatePath = "/"
|
||||
|
||||
var DefaultTemplateExtensions = []string{".html", ".htm", ".tmpl", ".tpl", ".txt"}
|
||||
var defaultTemplateExtensions = []string{".html", ".htm", ".tmpl", ".tpl", ".txt"}
|
||||
|
|
|
@ -27,14 +27,14 @@ func TestTemplates(t *testing.T) {
|
|||
t.Fatalf("Expected handler to be type Templates, got: %#v", handler)
|
||||
}
|
||||
|
||||
if myHandler.Rules[0].Path != DefaultTemplatePath {
|
||||
if myHandler.Rules[0].Path != defaultTemplatePath {
|
||||
t.Errorf("Expected / as the default Path")
|
||||
}
|
||||
if fmt.Sprint(myHandler.Rules[0].Extensions) != fmt.Sprint(DefaultTemplateExtensions) {
|
||||
t.Errorf("Expected %v to be the Default Extensions", DefaultTemplateExtensions)
|
||||
if fmt.Sprint(myHandler.Rules[0].Extensions) != fmt.Sprint(defaultTemplateExtensions) {
|
||||
t.Errorf("Expected %v to be the Default Extensions", defaultTemplateExtensions)
|
||||
}
|
||||
var indexFiles []string
|
||||
for _, extension := range DefaultTemplateExtensions {
|
||||
for _, extension := range defaultTemplateExtensions {
|
||||
indexFiles = append(indexFiles, "index"+extension)
|
||||
}
|
||||
if fmt.Sprint(myHandler.Rules[0].IndexFiles) != fmt.Sprint(indexFiles) {
|
||||
|
|
Loading…
Reference in a new issue