We’ve found 88 issues

#88

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 ...

  • Opened by guruma Apr 2, 2016
#87

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 ...

  • Opened by guruma Apr 2, 2016
#86

A small typo fix

  • Opened by orend Sep 17, 2015
#85

Minor docstring update for http-only flag

Fix confusing and incorrect definition in docstring for http-only https://www.owasp.org/index.php/HttpOnly

#84

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 ...

  • Opened by pjlegato Jul 30, 2014
  • 2 comments
#32

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 ...

#49

parse-params public

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 ...

  • Opened by rjack Jan 4, 2012
  • 8 comments
#68

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.

  • Opened by lynaghk Apr 7, 2012
  • 19 comments
#12

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 ...

  • Opened by lolownia Feb 21, 2011
  • 1 comment
#35

Support streaming

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 ...