aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide
AgeCommit message (Collapse)Author
2017-07-20Remove cowboy_sub_protocol from the documentationLoïc Hoguin
This will be reintroduced in a future release once the interface stabilizes. For the time being it will be an internal module only.
2017-07-19Remove the old architecture chapterLoïc Hoguin
2017-07-19Remove the guide chapter about broken clientsLoïc Hoguin
None of these workarounds currently exist in Cowboy 2.0. We can resurrect the chapter later if it's still necessary, once we've added the workarounds back in some other form.
2017-07-19Fix the name of an option in the migration guideLoïc Hoguin
2017-07-19Remove hooks from the user guideLoïc Hoguin
They're gone!
2017-07-19Tweak the migration guideLoïc Hoguin
2017-07-19Add a guide appendix on migrating from Cowboy 1.0Loïc Hoguin
2017-07-12Remove any mention of the waiting_stream hackLoïc Hoguin
2017-06-28Add another RFC to the pileLoïc Hoguin
2017-06-14Fix a confusing code snippetLoïc Hoguin
Reported by Jordan Chaitin.
2017-06-09Make cowboy_req:read_part return multipart headers as mapLoïc Hoguin
2017-06-07Remove NumAcceptors argument from start_clear/tlsLoïc Hoguin
They are now cowboy:start_clear/3 and cowboy:start_tls/3. The NumAcceptors argument can be specified via the num_acceptor transport option. Ranch has been updated to 1.4.0 to that effect.
2017-05-20Add another RFC to the list of specsLoïc Hoguin
2017-04-18Update Websocket handler docs default timeoutGary Rennie
This was changed from infinity to 60s in a45813c60f0f983a24ea29d491b37f0590fdd087
2017-04-18Add more RFCs to the specs listLoïc Hoguin
2017-03-20Add a guide chapter linking to all specsLoïc Hoguin
2017-02-19Change the type of bindings from a list to a mapLoïc Hoguin
Maps make more sense because the keys are unique.
2017-02-19Change the order of set_resp_cookie argumentsLoïc Hoguin
The Opts value is put last, to be more consistent with the rest of the cowboy_req module. Additionally a test handler was fixed which reduced the number of errors in http_SUITE.
2017-02-18Allow passing options to sub protocolsLoïc Hoguin
Before this commit we had an issue where configuring a Websocket connection was simply not possible without doing magic, adding callbacks or extra return values. The init/2 function only allowed setting hibernate and timeout options. After this commit, when switching to a different type of handler you can either return {module, Req, State} or {module, Req, State, Opts} where Opts is any value (as far as the sub protocol interface is concerned) and is ultimately checked by the custom handlers. A large protocol like Websocket would accept only a map there, with many different options, while a small interface like loop handlers would allow passing hibernate and nothing else. For Websocket, hibernate must be set from the websocket_init/1 callback, because init/2 executes in a separate process. Sub protocols now have two callbacks: one with the Opts value, one without. The loop handler code was largely reworked and simplified. It does not need to manage a timeout or read from the socket anymore, it's the job of the protocol code. A lot of unnecessary stuff was therefore removed. Websocket compression must now be enabled from the handler options instead of per listener. This means that a project can have two separate Websocket handlers with different options. Compression is still disabled by default, and the idle_timeout value was changed from inifnity to 60000 (60 seconds), as that's safer and is also a good value for mobile devices.
2017-01-02Welcome to 2017Loïc Hoguin
2017-01-02Various fixes and tweaks to the user guideLoïc Hoguin
2016-12-28Add templates as Erlang.mk pluginLoïc Hoguin
2016-12-28Update the cowboy_rest manualLoïc Hoguin
2016-09-29Tweak the one-liner description of the projectLoïc Hoguin
2016-09-14Use spaces in snippets in the guideLoïc Hoguin
2016-09-14Update the Websocket handlers chapterLoïc Hoguin
2016-09-04Update the routing chapterLoïc Hoguin
2016-09-04Rework the constraints chapterLoïc Hoguin
2016-09-02Minor updates to static files chapterLoïc Hoguin
2016-09-02Update the multipart chapterLoïc Hoguin
2016-09-01Update the Websocket protocol chapterLoïc Hoguin
2016-09-01Update the cookies guide chapterLoïc Hoguin
2016-08-31Merge branch 'master' of https://github.com/alexprut/cowboyLoïc Hoguin
2016-08-31Update the guide chapter for responsesLoïc Hoguin
2016-08-31Update websocket documentation: based on ↵Alex Prut
https://github.com/ninenines/cowboy/blob/master/examples/websocket/src/ws_handler.erl
2016-08-30Add the missing listeners guide chapterLoïc Hoguin
While incomplete it's still a pretty good start.
2016-08-30Minor documentation fixesLoïc Hoguin
"make docs" should now work again.
2016-08-30Fix a couple xref linksLoïc Hoguin
They were still using the old ezdoc syntax.
2016-08-30Add placeholder flow diagram chapterLoïc Hoguin
2016-08-30Fix rendering issues in the guide and manualLoïc Hoguin
2016-08-25Update the body reading chapterLoïc Hoguin
2016-08-24More 2.0 documentation updatesLoïc Hoguin
Still incomplete.
2016-06-06Wording tweak in static handler chapter in the guideLoïc Hoguin
2016-05-24Partial update of the user guideLoïc Hoguin
I will do more breaking changes before documenting more.
2016-03-06Completely remove SPDYLoïc Hoguin
2016-01-15Minor grammar improvements from Derek Brown2.0.0-pre.3Loïc Hoguin
[ci-skip]
2016-01-15Make the getting started properly use masterLoïc Hoguin
2016-01-14Convert the documentation to AsciidocLoïc Hoguin
A few small revisions were made, and Erlang.mk has been updated.
2015-02-16Merge branch 'master' of https://github.com/sstrigler/cowboyLoïc Hoguin
2015-02-16Merge branch 'patch-1' of https://github.com/grahamrhay/cowboyLoïc Hoguin