diff options
author | Loïc Hoguin <[email protected]> | 2011-12-07 19:27:06 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-12-07 19:27:06 +0100 |
commit | 7f46e5343625ba32b6e93e6a9a1ba76b4447b7a8 (patch) | |
tree | 187043c91714586beff865321c1e70ac000ecefc /README.md | |
parent | ce92ab1e633408b0d6b2d4bb4ba61d965208ef3c (diff) | |
parent | c747efbd7533c3b4dd7caa267070c36608c4c0d2 (diff) | |
download | cowboy-7f46e5343625ba32b6e93e6a9a1ba76b4447b7a8.tar.gz cowboy-7f46e5343625ba32b6e93e6a9a1ba76b4447b7a8.tar.bz2 cowboy-7f46e5343625ba32b6e93e6a9a1ba76b4447b7a8.zip |
Merge branch 'noquoted' of https://github.com/klaar/cowboy
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -107,6 +107,14 @@ handle(Req, State) -> terminate(Req, State) -> ok. ``` +**Note**: versions prior to `0.4.0` used the +[quoted](https://github.com/klaar/quoted.erl) library instead of the built in +`cowboy_http:urldecode/2` function. If you want to retain this you must add it +as a dependency to your application and add the following cowboy_http_protocol +option: + + {urldecode, {fun quoted:from_url/2, quoted:make([])}} + Continue reading to learn how to dispatch rules and handle requests. |