Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-03-26 | Remove outdated comments, all edoc, plus a few minor tweaks | Loïc Hoguin | |
2014-03-25 | Make the latin1 cyrillic route tests work on R17+ | Loïc Hoguin | |
Instead of relying on the encoding of the file we now simply have list of numbers as they would be inside a latin1 file. | |||
2014-03-10 | Remove cowboy_http:urldecode/1 and urlencode/1 | Loïc Hoguin | |
Use cow_qs:urldecode/1 and cow_qs:urlencode/1 instead | |||
2014-02-06 | Update copyright years | Loïc Hoguin | |
2013-11-08 | Clarify error msg for route lacking starting slash | Danielle Sucher | |
2013-04-26 | Removed asserts from unit tests | Egobrain | |
2013-03-24 | add iolist support to route_match | Tristan Sloughter | |
2013-03-02 | Fix cowboy_router types | Loïc Hoguin | |
2013-02-27 | Fix an incorrect comment in cowboy_router | Loïc Hoguin | |
2013-01-25 | Do not transform URIs to Unicode | Vladimir Dronnikov | |
2013-01-29 | If a binding is reused, we check that values are identical | Loïc Hoguin | |
This is more for consistency than anything. | |||
2013-01-28 | Add the 'function' constraint | Loïc Hoguin | |
2013-01-28 | Add the 'int' constraint | Loïc Hoguin | |
2013-01-28 | New routing | Loïc Hoguin | |
Ultimately few things change, it's mostly just a nicer syntax and slightly different expectations. The name of the value `dispatch` did not change, because the previous dispatch values will now fail if the code is not updated to using `cowboy_router:compile/1`. No constraints have been implemented in this commit. | |||
2013-01-22 | Remove cowboy_dispatcher | Loïc Hoguin | |
Types and code are moved to cowboy_router. The match/3 export from cowboy_dispatcher isn't available anymore as it is called internally. | |||
2013-01-03 | Add middleware support | Loïc Hoguin | |
Middlewares allow customizing the request processing. All existing Cowboy project are incompatible with this commit. You need to change `{dispatch, Dispatch}` in the protocol options to `{env, [{dispatch, Dispatch}]}` to fix your code. |