Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-02 | Describe arguments of the HTTP handler callbacks | Loïc Hoguin | |
2013-03-02 | Explain what are listeners and acceptors in Getting Started | Loïc Hoguin | |
2013-03-02 | Add a recommendation about static files in production to the guide | Loïc Hoguin | |
2013-03-01 | Add an example of onresponse hooks | Adam Cammack | |
Also fix the guide entry on hooks. | |||
2013-03-01 | Fix an error in the guide introduction | Loïc Hoguin | |
Reported by Joe Armstrong. | |||
2013-02-27 | Add a Supported platforms section to the guide introduction | Loïc Hoguin | |
2013-02-20 | Add cowboy:set_env/3 | Loïc Hoguin | |
2013-02-16 | Add sub protocol behaviour | James Fish | |
2013-02-12 | Merge branch 'static_doc' of git://github.com/acammack/cowboy | Loïc Hoguin | |
2013-02-11 | Fix examples in cowboy_static edoc and guide | Adam Cammack | |
2013-02-11 | Add a few directions in the REST chapter in the guide | Loïc Hoguin | |
This is obviously not proper documentation. We will properly document it when the API stabilizes. | |||
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-29 | Add a section about closing the connection in the guide | Loïc Hoguin | |
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 | 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-21 | Merge pull request #369 from rramsden/patch-1 | Loïc Hoguin | |
Fix typo in the guide introduction | |||
2013-01-20 | First draft done for the request object guide chapter | Loïc Hoguin | |
2013-01-19 | More request object documentation in the guide | Loïc Hoguin | |
2013-01-18 | Document the static handler in the guide | Loïc Hoguin | |
2013-01-18 | Finish up the Internals chapter | Loïc Hoguin | |
2013-01-18 | Document loop handlers in the guide | Loïc Hoguin | |
2013-01-18 | Beginning of request object chapter in the guide | Loïc Hoguin | |
2013-01-18 | Add plain HTTP handlers documentation to the guide | Loïc Hoguin | |
2013-01-18 | Finish the routing chapter of the guide | Loïc Hoguin | |
Note that this is the new routing not yet available in master. The code should follow in a few days. | |||
2013-01-18 | Fix capitalize_hook example | Loïc Hoguin | |
2013-01-17 | Fix typo in the guide introduction | Richard Ramsden | |
2013-01-18 | Add hooks documentation to the guide | Loïc Hoguin | |
2013-01-18 | Do not use tabulations in the guide | Loïc Hoguin | |
2013-01-18 | Explain how to write custom protocol upgrades in the guide | Loïc Hoguin | |
2013-01-17 | Get the basics of Websocket covered in the guide | Loïc Hoguin | |
2013-01-17 | Add cowboy_bstr:capitalize_token/1 | Loïc Hoguin | |
For optional header name capitalization. See the guide section about it. | |||
2013-01-11 | Fix getting started example, missing env | Loïc Hoguin | |
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. | |||
2013-01-03 | Salvage the README and move parts into the guide | Loïc Hoguin | |
2013-01-01 | Add a skeleton of the guide to ease user contributions | Loïc Hoguin | |
Has some stuff that aren't in master yet, and lacks a lot more that is already in master. | |||
2012-11-27 | Cosmetic changes to various documentation files | Loïc Hoguin | |
2012-10-15 | Add Introduction chapter to the guide | Loïc Hoguin | |