ring
ring copied to clipboard
Clojure HTTP server abstraction
À 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...
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...
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...
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...
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...
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...
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...
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`...
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...
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...