reitit/modules
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
..
reitit Start version 0.1.4 2018-07-12 12:49:14 +03:00
reitit-core Add URL-decoding support 2018-07-23 00:53:53 -04:00
reitit-frontend coercion/coerce! can be used now 2018-07-17 12:41:29 +03:00
reitit-ring Start version 0.1.4 2018-07-12 12:49:14 +03:00
reitit-schema Start version 0.1.4 2018-07-12 12:49:14 +03:00
reitit-spec Start version 0.1.4 2018-07-12 12:49:14 +03:00
reitit-swagger [:swagger :id] defaults to :reitit.swagger/default 2018-07-21 09:38:44 +03:00
reitit-swagger-ui Fix #109 2018-07-16 09:34:52 +03:00