Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-07 | Small tweak to Asciidoc | Loïc Hoguin | |
Fixes Hugo rendering. | |||
2016-11-07 | Add man pages for parse_qs, match_qs and parse_header | Loïc Hoguin | |
[ci skip] | |||
2016-11-05 | Tweak small things in the cowboy manual | Loïc Hoguin | |
2016-11-05 | Partially update manual for the cowboy_req | Loïc Hoguin | |
Only the access functions have been modified so far. | |||
2016-10-01 | Small tweaks to cowboy module manual | Loïc Hoguin | |
2016-09-29 | Tweak the one-liner description of the project | Loïc Hoguin | |
2016-09-25 | Tweak the cowboy(7) manual | Loïc Hoguin | |
2016-09-25 | Update the cowboy(7) manual | Loïc Hoguin | |
It now links to all modules found in the manual and can therefore easily act as an index for the application. | |||
2016-09-25 | Fix whitespace in example | Loïc Hoguin | |
2016-09-25 | Update manual for the cowboy module | Loïc Hoguin | |
This commit separates the documentation of the functions into separate manual pages, with at least one example per function and a lot more details about parameters, return values and related functions and modules. It also includes a changelog indicating when the function was added or changed. The inspiration for this comes mainly from the PHP documentation and feedback from users. | |||
2016-09-14 | Use spaces in snippets in the guide | Loïc Hoguin | |
2016-09-14 | Update the Websocket handlers chapter | Loïc Hoguin | |
2016-09-04 | Update the routing chapter | Loïc Hoguin | |
2016-09-04 | Rework the constraints chapter | Loïc Hoguin | |
2016-09-02 | Minor updates to static files chapter | Loïc Hoguin | |
2016-09-02 | Update the multipart chapter | Loïc Hoguin | |
2016-09-01 | Update the Websocket protocol chapter | Loïc Hoguin | |
2016-09-01 | Update the cookies guide chapter | Loïc Hoguin | |
2016-08-31 | Merge branch 'master' of https://github.com/alexprut/cowboy | Loïc Hoguin | |
2016-08-31 | Update the guide chapter for responses | Loïc Hoguin | |
2016-08-31 | Update websocket documentation: based on ↵ | Alex Prut | |
https://github.com/ninenines/cowboy/blob/master/examples/websocket/src/ws_handler.erl | |||
2016-08-30 | Add the missing listeners guide chapter | Loïc Hoguin | |
While incomplete it's still a pretty good start. | |||
2016-08-30 | Minor documentation fixes | Loïc Hoguin | |
"make docs" should now work again. | |||
2016-08-30 | Fix a couple xref links | Loïc Hoguin | |
They were still using the old ezdoc syntax. | |||
2016-08-30 | Add placeholder flow diagram chapter | Loïc Hoguin | |
2016-08-30 | Fix rendering issues in the guide and manual | Loïc Hoguin | |
2016-08-25 | Update the body reading chapter | Loïc Hoguin | |
2016-08-24 | More 2.0 documentation updates | Loïc Hoguin | |
Still incomplete. | |||
2016-06-06 | Wording tweak in static handler chapter in the guide | Loïc Hoguin | |
2016-05-24 | Partial update of the user guide | Loïc Hoguin | |
I will do more breaking changes before documenting more. | |||
2016-03-06 | Completely remove SPDY | Loïc Hoguin | |
2016-01-15 | Minor grammar improvements from Derek Brown2.0.0-pre.3 | Loïc Hoguin | |
[ci-skip] | |||
2016-01-15 | Make the getting started properly use master | Loïc Hoguin | |
2016-01-14 | Convert the documentation to Asciidoc | Loïc Hoguin | |
A few small revisions were made, and Erlang.mk has been updated. | |||
2015-07-27 | Add optional callbacks | Loïc Hoguin | |
Mostly useful for REST, which has a ton. This is an initial commit, it still needs to be tested, but it's time to sleep. | |||
2015-05-05 | Add rfc7230 test suite and update others to recent Gun | Loïc Hoguin | |
This is a large commit. The rfc7230 test suite adds many tests from the RFC7230 document. Gun has been updated quite a bit recently, which broke the Cowboy suites. This is now fixed with this commit. A new hook onfirstrequest has been added. It was very useful during debugging of the test suites. The initial process code has changed a little; more changes are expected with the switch to maps for options. | |||
2015-02-16 | Merge branch 'master' of https://github.com/sstrigler/cowboy | Loïc Hoguin | |
2015-02-16 | Merge branch 'patch-1' of https://github.com/grahamrhay/cowboy | Loïc Hoguin | |
2015-02-16 | Use cow_ws for the Websocket parsing code | Loïc Hoguin | |
Updates Cowlib to 1.1.0 | |||
2015-02-01 | Fix small detail in docs | Loïc Hoguin | |
2015-01-19 | Update getting_started.ezdoc | Graham Hay | |
Make example code dialyzer approved. | |||
2014-11-25 | Small clarification on max_request_line_length | Loïc Hoguin | |
2014-11-24 | Docs clarification when returning a list of ws frames | Loïc Hoguin | |
2014-11-23 | Add a specs document for RFC6585 | Loïc Hoguin | |
Only a few status codes. Comments in the previous commit apply. | |||
2014-11-23 | Add an RFC7230 HTTP/1.1 server specification document | Loïc Hoguin | |
This document lists all rules that Cowboy HTTP server will follow after careful analysis of the RFC7230. Do note that not all these rules are implemented or tested yet, and that at the time of commit there may be rules that Cowboy will ultimately not implement (for various reasons including performance or leaving certain aspects up to the user code). | |||
2014-11-07 | Rename 'halt' to 'stop' for better consistency | Loïc Hoguin | |
Now everywhere in Cowboy when we want to stop something we return a 'stop' tuple instead of one of the many choices depending on context that we had before. This particular change affects middlewares, sub protocols and REST handlers which were using 'halt' to stop processing. | |||
2014-11-07 | Rename 'shutdown' close reason and tuples to 'stop' | Loïc Hoguin | |
The 'shutdown' atom has a specific meaning inside OTP. We are instead going to use 'stop' which is pretty much the equivalent of what we actually do. 'shutdown' is now reserved for future special processes implementation. | |||
2014-10-08 | change init/2 to return #state{} in documentation | Stefan Strigler | |
Most examples returned 'Opts' as given by second argument to init. By using '#state{}' the examples make it more clear that this is what is being passed as 'State' to all subsequent callbacks (if any). | |||
2014-10-04 | Fix a bad link in the guide | Loïc Hoguin | |
2014-10-04 | Reverse the order of arguments of match_* functions | Loïc Hoguin | |
Wasn't following the same order as the rest of the module. |