Commit e039577d authored by Karthic Rao's avatar Karthic Rao

export of variables undone

parent 9995466a
...@@ -39,11 +39,11 @@ func templatesParse(c *Controller) ([]templates.Rule, error) { ...@@ -39,11 +39,11 @@ func templatesParse(c *Controller) ([]templates.Rule, error) {
// Any remaining arguments are extensions // Any remaining arguments are extensions
rule.Extensions = c.RemainingArgs() rule.Extensions = c.RemainingArgs()
if len(rule.Extensions) == 0 { if len(rule.Extensions) == 0 {
rule.Extensions = DefaultTemplateExtensions rule.Extensions = defaultTemplateExtensions
} }
} else { } else {
rule.Path = DefaultTemplatePath rule.Path = defaultTemplatePath
rule.Extensions = DefaultTemplateExtensions rule.Extensions = defaultTemplateExtensions
} }
for _, ext := range rule.Extensions { for _, ext := range rule.Extensions {
...@@ -56,6 +56,6 @@ func templatesParse(c *Controller) ([]templates.Rule, error) { ...@@ -56,6 +56,6 @@ func templatesParse(c *Controller) ([]templates.Rule, error) {
return rules, nil 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) { ...@@ -27,14 +27,14 @@ func TestTemplates(t *testing.T) {
t.Fatalf("Expected handler to be type Templates, got: %#v", handler) 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") t.Errorf("Expected / as the default Path")
} }
if fmt.Sprint(myHandler.Rules[0].Extensions) != fmt.Sprint(DefaultTemplateExtensions) { if fmt.Sprint(myHandler.Rules[0].Extensions) != fmt.Sprint(defaultTemplateExtensions) {
t.Errorf("Expected %v to be the Default Extensions", DefaultTemplateExtensions) t.Errorf("Expected %v to be the Default Extensions", defaultTemplateExtensions)
} }
var indexFiles []string var indexFiles []string
for _, extension := range DefaultTemplateExtensions { for _, extension := range defaultTemplateExtensions {
indexFiles = append(indexFiles, "index"+extension) indexFiles = append(indexFiles, "index"+extension)
} }
if fmt.Sprint(myHandler.Rules[0].IndexFiles) != fmt.Sprint(indexFiles) { if fmt.Sprint(myHandler.Rules[0].IndexFiles) != fmt.Sprint(indexFiles) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment