reitit/test
Matthew Davidson f6054a7c40 Add URL-decoding support
Enables matching URLs with %-encoded chars, and decodes path params.
Currently Reitit cannot handle %-encoded paths, even though they can be
quite common (like `/search/my random search string`)

E.g.:
Successfully match `/space in path` to `/space%20in%20path`
Match `/path/:param1` to `/path/foo%20bar` and see
`:param1` => `"foo bar"` in path params

Does not apply %-decoding to routes, only URLs
Does not guarantee decoding '+' into a space. (Java's URLDecoder
supports it, but it shouldn't for URL path part.)
2018-07-23 00:53:53 -04:00
..
clj/cljdoc cljdoc 2018-05-18 18:42:10 +03:00
cljc/reitit Add URL-decoding support 2018-07-23 00:53:53 -04:00
cljs/reitit Fix capture-console on node 2018-07-12 12:49:14 +03:00