Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-06 | Strip whitespaces when authorization type is unknown | Loïc Hoguin | |
2013-02-06 | Merge branch 'expose-to_upper' of git://github.com/dvv/cowboy | Loïc Hoguin | |
2013-02-06 | Merge branch 'no-unicode-uri' of git://github.com/dvv/cowboy | Loïc Hoguin | |
2013-02-06 | Merge branch 'master' of git://github.com/tsloughter/cowboy | Loïc Hoguin | |
2013-02-06 | Makefile: separate deps compilation from app compilation | Loïc Hoguin | |
2013-02-01 | add guards on set_resp_body_fun for streamlen and streamfun | Tristan Sloughter | |
2013-01-30 | Make sure the peer name is always available | Loïc Hoguin | |
2013-01-30 | Rename example 'static' to 'static_world' to avoid confusion | Loïc Hoguin | |
2013-01-30 | Merge branch 'fix_routing_guide' of https://github.com/ivlis/cowboy | Loïc Hoguin | |
2013-01-31 | Small routing guide fix | Ivan Lisenkov | |
Make cowboy_router:compile/1 return to be consistent with current implementation. | |||
2013-01-30 | Fix small error in the websocket chapter in the guide | Loïc Hoguin | |
Reported by Michel Rijnders. | |||
2013-01-30 | Fix a new warning found by Dialyzer R16A | Loïc Hoguin | |
2013-01-30 | Merge branch 'websocket-example' of https://github.com/pvieytes/cowboy | Loïc Hoguin | |
2013-01-30 | add websocket example | Pablo Vieytes | |
2013-01-29 | Merge branch 'patch-1' of https://github.com/CamShaft/cowboy | Loïc Hoguin | |
Conflicts: src/cowboy_rest.erl | |||
2013-01-29 | Merge branch 'feature_basic_auth' of https://github.com/ivlis/cowboy | Loïc Hoguin | |
2013-01-30 | Implement authorization header parsing | Ivan Lisenkov | |
Basic HTTP authorization according to RFC 2617 is implemented. Added an example of its usage with REST handler. | |||
2013-01-29 | Merge branch 'rest_post_created_path' of https://github.com/treetopllc/cowboy | Loïc Hoguin | |
2013-01-29 | Makefile verbosity tweaks | Loïc Hoguin | |
2013-01-29 | allow POST rest handling to specify path after accepting content | Tom Burdick | |
2013-01-29 | Merge branch 'rest_patch' of https://github.com/treetopllc/cowboy | Loïc Hoguin | |
2013-01-29 | Fix chunked streaming of request body and improve speed | Loïc Hoguin | |
2013-01-29 | add patch support to cowboy_rest | Tom Burdick | |
2013-01-29 | Make examples use the new routing | Loïc Hoguin | |
2013-01-29 | Fix {cowboy_req, resp_sent} potentially leaking in loop handlers | Loïc Hoguin | |
2013-01-29 | Do not attempt to skip the request body on Connection: close | Loïc Hoguin | |
2013-01-29 | Add a section about closing the connection in the guide | Loïc Hoguin | |
2013-01-29 | Merge branch 'fix/callback_specs' of https://github.com/keynslug/cowboy | Loïc Hoguin | |
2013-01-29 | Makefile: only recompile files newer than the .app | Loïc Hoguin | |
2013-01-29 | Update Ranch to 0.6.1 | Loïc Hoguin | |
2013-01-29 | Update roadmap | Loïc Hoguin | |
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-26 | Update handler callback specs | Andrew Majorov | |
There is one another {upgrade, ...} quintuple allowed as the result of Handler:init call, somewhy not mentioned in the callback specifications. | |||
2013-01-25 | Expose uppercase binary converter | Vladimir Dronnikov | |
2013-01-25 | Do not transform URIs to Unicode | Vladimir Dronnikov | |
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-22 | Merge branch 'fix_change_state' of https://github.com/nevar/cowboy | Loïc Hoguin | |
2013-01-22 | Add HTML5 Video Example to the static example | Loïc Hoguin | |
2013-01-22 | Fix handler state change in cowboy_rest | Slava Yurin | |
2013-01-22 | Do not crash if connection is closed while sending static file | Loïc Hoguin | |
2013-01-22 | Merge branch 'master' of https://github.com/0x00F6/cowboy | Loïc Hoguin | |
2013-01-22 | Make cowboy_static use universal time | 0x00F6 | |
2013-01-22 | Do not require inets for running tests anymore | Loïc Hoguin | |
2013-01-22 | Replace terminate/2 with terminate/3, adding a Reason | Loïc Hoguin | |
This should have been done a *long* time ago, back when I initially added Websocket support. This is the first part of two in improving loop handler support with regards to socket closure. Reason may include: {normal, shutdown} for the most normal shutdown, {normal, timeout} for a loop handler timeout shutdown, or {error, _} if an error occured. | |||
2013-01-22 | Fix cowboy_websocket_handler callback spec | Loïc Hoguin | |
2013-01-21 | Merge pull request #369 from rramsden/patch-1 | Loïc Hoguin | |
Fix typo in the guide introduction | |||
2013-01-21 | Improve keepalive tests | Loïc Hoguin | |