diff options
author | clsr <clsr@clsr.net> | 2021-02-05 08:23:30 +0000 |
---|---|---|
committer | clsr <clsr@clsr.net> | 2021-02-05 08:23:30 +0000 |
commit | c0edbdbdd6ab164fdbbd157c2e0fa10663d26c36 (patch) | |
tree | 70d0fc9b2488f6a0cff16c7c6c634889326f06f4 | |
parent | 605b2f39dfa8c45fc3271c77f6fe37a9c2af9305 (diff) | |
download | cn-http-c0edbdbdd6ab164fdbbd157c2e0fa10663d26c36.tar.gz cn-http-c0edbdbdd6ab164fdbbd157c2e0fa10663d26c36.zip |
-rw-r--r-- | cnhttp.go | 4 | ||||
-rw-r--r-- | go.mod | 9 | ||||
-rw-r--r-- | go.sum | 6 |
3 files changed, 17 insertions, 2 deletions
@@ -1,4 +1,4 @@ -package main +package main // import "contnet.org/util/cn-http" import ( "bytes" @@ -274,7 +274,7 @@ func (srv *server) cnpParamsToHTTP(w http.ResponseWriter, resp *cnp.Response) { } if n := resp.Name(); n != "" { w.Header().Set("Content-Disposition", "inline; filename=\""+strings.Map(func(r rune) rune { - if r < ' ' || r == ' ' || r == '\'' { // filter out nulls, control codes, newlines and quotes + if r < ' ' || r == '"' || r == '\'' { // filter out nulls, control codes, newlines and quotes return -1 } return r @@ -0,0 +1,9 @@ +module contnet.org/util/cn-http + +go 1.12 + +require ( + contnet.org/lib/cnm-go v0.4.0 + contnet.org/lib/cnp-go v0.2.0 + github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 +) @@ -0,0 +1,6 @@ +contnet.org/lib/cnm-go v0.4.0 h1:28I1CXDp3QyBPaWy7lZeD2gIOdfAUD4ErBvuujgibFk= +contnet.org/lib/cnm-go v0.4.0/go.mod h1:BL0FsUB8++6EDKgUz2ynC3IEgyouBkJXeBE6ZGh7f0s= +contnet.org/lib/cnp-go v0.2.0 h1:hKzFwR7BRZdU6MrLzb3P76pIRuI2u1b6IiSg7voP7w8= +contnet.org/lib/cnp-go v0.2.0/go.mod h1:gXG8x1iRjObzAJxRWlv1YrYiuCutye7SS+X9VArmxNA= +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs= +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= |