Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-05 | Tweak small things in the cowboy manual | Loïc Hoguin | |
2016-11-05 | Add HiPE and ErLLVM testing | 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-18 | Erlang/OTP 19.1.5 | Loïc Hoguin | |
2016-10-18 | Fix if_modified_since match of last_modified | Christopher Adams | |
Correct expected return type from `no_call` to `undefined` in if_modified_since when last_modified callback is not defined. Add an http_SUITE test to catch regressions. | |||
2016-10-14 | Erlang/OTP 19.1.4 | Loïc Hoguin | |
2016-10-10 | Update CI targets | Loïc Hoguin | |
2016-10-01 | Small tweaks to cowboy module manual | Loïc Hoguin | |
2016-10-01 | Remove circle.yml | Loïc Hoguin | |
2016-09-30 | Update README and convert to Asciidoc | 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-08-22 | Fix websocket example | Witeman Zheng | |
2016-08-15 | Send many frames in one TCP send | Loïc Hoguin | |
Includes refactoring of the related code to avoid repetition. | |||
2016-08-15 | Allow websocket_init/1 to reply/close/hibernate | Loïc Hoguin | |
2016-08-15 | Modernize the Websocket test suite | Loïc Hoguin | |
2016-08-12 | Remove Req from the Websocket interface | Loïc Hoguin | |
After the switch to Websocket, we are no longer in a request/response scenario, therefore a lot of the cowboy_req functions do not apply anymore. Any data required from the request will need to be taken from Req in init/2 and saved in the handler's state. | |||
2016-08-12 | Add missing specs to an internal cowboy_req function | Loïc Hoguin | |
2016-08-12 | Merge branch 'master' of https://github.com/camshaft/cowboy | Loïc Hoguin | |
2016-08-12 | Fix Websocket compression | Loïc Hoguin | |
The option for enabling Websocket compression has been renamed. Previously it was shared with HTTP compression, now it's specific to Websocket. The new option is named 'websocket_compress'. | |||
2016-08-11 | Use cow_http_hd:parse_host directly | Loïc Hoguin | |
Removes some duplicate code from cowboy_http. | |||
2016-08-11 | Use integer_to_binary when possible | Loïc Hoguin | |
2016-08-11 | Add a test for echo_get example undefined | Loïc Hoguin | |
2016-08-11 | Merge branch 'master' of https://github.com/sergey-ivlev/cowboy | Loïc Hoguin | |
2016-08-11 | Fix cookie example again | Loïc Hoguin | |
2016-08-11 | Fix timer-sent events in the websocket example | Loïc Hoguin | |
2016-08-10 | Add specs for the cowboy_req:push/3,4 functions | Loïc Hoguin | |
2016-08-10 | Use binary_to_integer instead of to list and back | Loïc Hoguin | |
2016-08-10 | Let the stream handler take care of crash handling and logging | Loïc Hoguin | |