ring icon indicating copy to clipboard operation
ring copied to clipboard

Clojure HTTP server abstraction

Results 61 ring issues
Sort by recently updated
recently updated
newest added

À la [creating an instance of your application without starting it](http://thinkrelevance.com/blog/2013/06/04/clojure-workflow-reloaded), I'd like to be able to call `run-jetty` to get an _instance_ of the server, but without the side...

enhancement

Hi James, thanks for the continued work on maintaining ring. Just want to throw this issue out there in case anyone else stumbles upon the same issue, plus gathering some...

bug

It would be nice to also have the field name passed to the :store function, like so: ``` clojure (defn- parse-file-item "Parse a FileItemStream into a key-value pair. If the...

enhancement

When I tried to take cookie-store into use, I noticed that it silently failed, not creating any cookie and without warning (either on the ring side, or on the Chrome...

enhancement

I would like to adjust the POST max body size for my server, as 200KB default is pretty low for my use case. I have found the solution to modify...

enhancement

I have a project where `core.clj` requiring looks something like this: ``` (:require ... [rafl.ui-backend [api-proxy :as api] (apis :as apis) (config :refer [config]) (auth :as auth :refer [ensure-auth-session]) (raflapi...

bug

When receiving a file via multipart-params, there is an (optional) key "Content-Transfer-Encoding" with values 7bit (default), 8bit, binary and base64. Depending on these values, the file or byte array (depending...

enhancement

nested-params currently processes only the `:params`, but wrap-params also assoc's `:form-params` and `:query-params` onto the query map. In cases where you need to differentiate between query and body params, `wrap-nested-params`...

waiting on dev

The date format in file_info.clj for static files: EEE, dd MMM yyyy HH:mm:ss ZZZ, is incorrect. ZZZ should be z. This makes an rfc 1123 standard date: Wed, 08 Jun...

bug

A user of spiral has encountered this strange issue: dgrnbrg/spiral#19 Do you have any insight as to what could be the difference between the two? Could it be an interaction...