wrap-params middleware doesn't make a user detect a charset of GET mothod.
When client does not specify its charset in Content-Type header of a request, a server use default charset(ISO-8859-1). Therefore parameters of a request is encoded in other than default charset without ...
wrap-params middleware doesn't function when not url-encoded...
IE send an url not url-encoded when "Send UTF-8 query strings..." flag of Internet Option is unset. And parameters of this request can't be processed properly by wrap-params, which decode ...
Minor docstring update for http-only flag
Fix confusing and incorrect definition in docstring for http-only https://www.owasp.org/index.php/HttpOnly
wrap-resource captures root route when in a jar file
If wrap-resource is added to the handler stack ahead of Compojure routes meant to serve the root (index) route while running from a jar file, it will mistakenly identify the top resource directory as a ...
New SessionStore backed by HttpSession
Hi, On the noir group we've been discussing Google App Engine deploys which are clustered. We agreed it would be useful to have a ring SessionStore that targeted the HttpSession provided by the servlet ...
Hello, I'd like to use parse-params in my code but it's private. This change makes it public, as it can be useful as generic query strring parser. (for example I'd like to use it to capture ...
Option for wrap-file middleware to serve symlinks
I discussed this change with @weavejester on IRC earlier this week. It's just like what it sounds like. Unfortunately, I couldn't think of a nice way to write a test for this.
Add another handler body type: callback
Hi! I have a scenario, where I want to return a result of XSLT transformation (that's XML templating). I'm using a Saxon processor, which accepts OutputStream (or Writer) and serializes a formatted ...
The body can be a Fn that takes one argument that is the java.io.OutputStream to write the entity. This allows for streaming, for example, in conjunction with Compojure, an image does not need to be written ...
Fixed the described issues - moved private resource-style function to ring.util.resource for getting resource files as stylesheets. dump would also return html5 now. Ring keys updated to added ssl-client-cert ...