We’ve found 88 issues

#46

Doc string typo fix

"Anything" -> "Any" Thanks for Ring! I'm new to Clojure and web development with Ring, Compojure, and Enlive has been awesome.

  • Opened by misfo Dec 7, 2011
#48

Add :max-threads option to the Jetty adapter

In some cloud environments, such as Heroku, the number of threads available to a process is limited. The Jetty adapter should therefore support a :max-threads option for limiting the number of threads ...

#50

Upgrade clj-stacktrace to 0.2.4

The ring-devel leiningen project includes a dependency on clj-stacktrace 0.2.2. Unfortunately, that version of clj-stacktrace is not compatible with recent versions of swank-closure (1.3.4 or newer). The ...

  • Opened by artdent Jan 22, 2012
  • 1 comment
#52

A bit of humor for the MIT license on a Clojure project.

I don't know how proud you are of your choice of the MIT license. Personally I quite like it and I think it's important for this project. I respect the choice of EPL for Clojure but I think for ...

  • Opened by benatkin Feb 5, 2012
  • 2 comments
#53

Running additional WARs in addition to the app

I'm developping a webapp which has two components, one is a JSON REST service, the other the app itself. Both are written in Clojure with Compojure. When running the app with run-jetty, is there a ...

  • Opened by pallix Feb 23, 2012
  • 4 comments
#40

Upgrade to Jetty 7.x

Any plans to upgrade to jetty 7.x?

  • Opened by vitalyper Oct 26, 2011
  • 3 comments
#56

Clean up README

Let's clean up the README, assume most people are going to use Ring via a project.clj dependency, and remove the examples folder from the repository (examples can be better stored and documented in ...

#61

Simplify the equality check against 0

Replace this with (zero? ...)

#51

Cookie parsing needs to deal with nil return value from url-decode

The decision to allow url-decode to return nil for improperly encoded strings (instead of throwing an exception) now means that cookie handling needs to accomodate this newly-endorsed return value. Frankly, ...

  • Opened by cch1 Feb 3, 2012
#58

Tag all public functions with version metadata

Public functions should have {:added "1.0"} metadata to define which version they were added in.