Dennis Schridde
Dennis Schridde
I currently handle form encoded requests like this: ```clj (require '[reitit.coercion.spec :as rcs]) (require '[reitit.ring :as reitit-ring]) (require '[reitit.ring.coercion :as rrc]) (require '[reitit.ring.middleware.parameters :as parameters]) (reitit-ring/ring-handler (reitit-ring/router [["//some/path" {:post {:swagger...
https://github.com/metosin/reitit/pull/381 seems related to the goal summarised in https://cljdoc.org/d/metosin/reitit/0.5.15/doc/ring/default-middleware#parameters-handling: > `reitit.ring.middleware.parameters/parameters-middleware` [...] will be factored into two parts: a query-parameters middleware and a Muuntaja format responsible for the the `application/x-www-form-urlencoded`...
To make this issue more discoverable, I propose to link to it from the documentation in https://github.com/metosin/reitit/pull/510.
https://github.com/metosin/reitit/issues/134 appears to be the issue that covers the discussion of this.
The default handler returns a map: ```clj (ns reitit.ring.middleware.exception ,,,) (defn default-handler "Default safe handler for any exception." [^Exception e _] {:status 500 :body {:type "exception" :class (.getName (.getClass e))}})...
I also run into this problem on Fedora 36. I made some modifications to the command line flags used to start clamd and clamonacc, compared to the official Fedora 36...
I think I want something similar. I am happy with the overview in "Manage Groups" (grid view), but often would like to "zoom into a group" to get a better...
Could the -1/255 failures be signed/unsigned issues? Maybe char defaults to unsigned on Ubuntu but to signed on your machines? (I haven't looked at the code, just guessing.)
autotools has `clean` and `distclean` for this purpose. The former shall clean all generated files, the latter return the source directory to the state after unpacking the tarball (normally only...
### Re: Clean I also think that magically figuring out what the user wants is a bad idea. Hence my suggestion to use `odir` (with alias `builddir`), where _everything_ that...