We’ve found 88 issues

#66

Fixes for Issue#54.

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

  • Opened by shanmuha Mar 24, 2012
  • 1 comment
#25

Request headers middleware

A take on parsing the header values in a request, as discussed here: http://groups.google.com/group/ring-clojure/t/37abefdc99127229

  • Opened by rahcola Aug 6, 2011
  • 1 comment
#14

second attempt at cache-control middleware

This patch adds a middleware for setting HTTP headers, and specifically setting the cache-control headers. I made a first attempt at this last September, weavejester had comments on my patch, sorry it ...

  • Opened by arohner Apr 5, 2011
  • 3 comments
#33

Allow for manual configuration of Jetty server in ring-adapter-jetty

Hello Mark, Would you consider including this changeset? It allows for manual configuration of the Jetty server and is backwards compatible. I have a use case where I need to do some extensive customization ...

  • Opened by lispnik Sep 15, 2011
  • 4 comments
#5

Class loading issue causing resource-response to fail on some servlet containers

Ring currently uses the classloader that loaded java.lang.System in resource-response. This classloader doesn't necessarily have access to resources in the WAR, since it may well be higher in the classloader ...

  • Opened by teropa Nov 21, 2010
  • 1 comment
#44

Accept keywords in keyword params (fix for #43)

The first commit adds tests that expose the bug. The second one is a fix.

#62

Support clj-time Intervals/DateTime for :max-age and :expires

This fixes #55. Each commit appears with a header and body description for what I've done. Here's a quick summary: - clj-time is a dependency for ring-core - Tests check that :max-age and :expires ...

  • Opened by KushalP Mar 19, 2012
  • 2 comments
#65

run-jetty :configurator set to run last

This change allows for replacing the default proxy-handler with a custom handler; the benefit of this (for us) was to allow for logging custom timing and request information from the handler in a way that ...

  • Opened by logosity Mar 24, 2012
  • 2 comments
#17

Stacktrace with Full Exception Causes

Adds all causes of an Exception to the returned html of a wrapped stacktrace.

  • Opened by youngnh Apr 7, 2011
  • 3 comments
#10

Consider allowing the handler to see response's output stream

I am working on a high-throughput RESTful web service that serves database records as JSON. The results are streamed to the client directly from the db to prevent unbounded heap growth. Ring currently ...