tpl: Make absURL and relURL accept anything
authorStephan Kulla <stephan.kulla@kulla>
Fri, 12 Aug 2016 22:31:50 +0000 (00:31 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 12 Aug 2016 22:31:50 +0000 (00:31 +0200)
tpl/template_funcs.go
tpl/template_funcs_test.go

index 28ac1f8858598fabb26155bc07afb71d90330d42..efaf1a827666587082f5fd1b1ef3611b0f636a73 100644 (file)
@@ -1803,7 +1803,7 @@ func htmlUnescape(in interface{}) (string, error) {
 
 func init() {
        funcMap = template.FuncMap{
-               "absURL":       func(a string) template.HTML { return template.HTML(helpers.AbsURL(a)) },
+               "absURL":       func(a interface{}) template.HTML { return template.HTML(helpers.AbsURL(cast.ToString(a))) },
                "add":          func(a, b interface{}) (interface{}, error) { return helpers.DoArithmetic(a, b, '+') },
                "after":        after,
                "apply":        apply,
@@ -1856,7 +1856,7 @@ func init() {
                "readDir":      readDirFromWorkingDir,
                "readFile":     readFileFromWorkingDir,
                "ref":          ref,
-               "relURL":       func(a string) template.HTML { return template.HTML(helpers.RelURL(a)) },
+               "relURL":       func(a interface{}) template.HTML { return template.HTML(helpers.RelURL(cast.ToString(a))) },
                "relref":       relRef,
                "replace":      replace,
                "replaceRE":    replaceRE,
index 14046eb3dbf87ebea305287359912f6929ed0684..38a94a113b5e71a86c64bd2530a966c9b5d4b976 100644 (file)
@@ -82,6 +82,7 @@ func TestFuncsInTemplate(t *testing.T) {
        in :=
                `absURL: {{ "http://gohugo.io/" | absURL }}
 absURL: {{ "mystyle.css" | absURL }}
+absURL: {{ 42 | absURL }}
 add: {{add 1 2}}
 base64Decode 1: {{ "SGVsbG8gd29ybGQ=" | base64Decode }}
 base64Decode 2: {{ 42 | base64Encode | base64Decode }}
@@ -121,6 +122,7 @@ readDir: {{ range (readDir ".") }}{{ .Name }}{{ end }}
 readFile: {{ readFile "README.txt" }}
 relURL 1: {{ "http://gohugo.io/" | relURL }}
 relURL 2: {{ "mystyle.css" | relURL }}
+relURL 2: {{ mul 2 21 | relURL }}
 replace: {{ replace "Batman and Robin" "Robin" "Catwoman" }}
 replaceRE: {{ "http://gohugo.io/docs" | replaceRE "^https?://([^/]+).*" "$1" }}
 safeCSS: {{ "Bat&Man" | safeCSS | safeCSS }}
@@ -146,6 +148,7 @@ urlize: {{ "Bat Man" | urlize }}
 
        expected := `absURL: http://gohugo.io/
 absURL: http://mysite.com/hugo/mystyle.css
+absURL: http://mysite.com/hugo/42
 add: 3
 base64Decode 1: Hello world
 base64Decode 2: 42
@@ -185,6 +188,7 @@ readDir: README.txt
 readFile: Hugo Rocks!
 relURL 1: http://gohugo.io/
 relURL 2: /hugo/mystyle.css
+relURL 2: /hugo/42
 replace: Batman and Catwoman
 replaceRE: gohugo.io
 safeCSS: Bat&amp;Man