Do not double-escape in querify
authorCathal Garvey <cathalgarvey@cathalgarvey.me>
Thu, 14 Jul 2016 13:53:33 +0000 (14:53 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 14 Jul 2016 13:53:33 +0000 (15:53 +0200)
Test case modified and expanded for querify to reflect original bug and changes.

Fixes #2279

tpl/template_funcs.go
tpl/template_funcs_test.go

index b8896a9cdc096516429be4133f5462af1fcf6059..c12218468137e185520b223a3d9dc30ab85d0310 100644 (file)
@@ -1769,7 +1769,7 @@ func querify(params ...interface{}) (string, error) {
        }
 
        for name, value := range vals {
-               qs.Add(name, url.QueryEscape(fmt.Sprintf("%v", value)))
+               qs.Add(name, fmt.Sprintf("%v", value))
        }
 
        return qs.Encode(), nil
index 1dcae066c3bd196351c570b2f535c2d57f5272b3..e6c3a78f1f693e09ed8ff6b0b1e352812ba89b19 100644 (file)
@@ -103,7 +103,7 @@ modBool: {{modBool 15 3}}
 mul: {{mul 2 3}}
 plainify: {{ plainify  "Hello <strong>world</strong>, gophers!" }}
 pluralize: {{ "cat" | pluralize }}
-querify: {{ (querify "foo" 1 "bar" 2 "baz" "with spaces") | safeHTML }}
+querify: {{ (querify "foo" 1 "bar" 2 "baz" "with spaces" "qux" "this&that=those") | safeHTML }}
 readDir: {{ range (readDir ".") }}{{ .Name }}{{ end }}
 readFile: {{ readFile "README.txt" }}
 relURL 1: {{ "http://gohugo.io/" | relURL }}
@@ -155,7 +155,7 @@ modBool: true
 mul: 6
 plainify: Hello world, gophers!
 pluralize: cats
-querify: bar=2&baz=with%2Bspaces&foo=1
+querify: bar=2&baz=with+spaces&foo=1&qux=this%26that%3Dthose
 readDir: README.txt
 readFile: Hugo Rocks!
 relURL 1: http://gohugo.io/