Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-16 | Move cowboy_protocol:onrequest_fun() to cowboy:onrequest_fun() | Loïc Hoguin | |
2013-05-16 | Move cowboy_http:status() to cowboy:http_status() | Loïc Hoguin | |
2013-05-16 | Move cowboy_http:headers() to cowboy:http_headers() | Loïc Hoguin | |
2013-05-16 | Move cowboy_http:version() to cowboy:http_version() | Loïc Hoguin | |
2013-05-16 | Improve the specs for cowboy_req:init_stream/4 | Loïc Hoguin | |
2013-05-16 | Make the return value of AcceptResource callback consistent | Loïc Hoguin | |
2013-05-16 | Make the HTTP version type more practical | Loïc Hoguin | |
Now instead of {1, 1} we have 'HTTP/1.1', and instead of {1, 0} we have 'HTTP/1.0'. This is more efficient, easier to read in crash logs, and clearer in the code. | |||
2013-05-15 | Remove cowboy_req:fragment/1 | Loïc Hoguin | |
Clients do not send it. We skip the value if we receive it now, as it shouldn't happen, and won't for all the mainstream clients. | |||
2013-05-15 | Fix the cowboy_websocket:frame/0 type | Loïc Hoguin | |
It accepts iodata() and not binary() for the payload. | |||
2013-05-15 | Fix two incorrect comments in cowboy_req | Loïc Hoguin | |
2013-05-15 | The cookie value can only be binary() | Loïc Hoguin | |
2013-05-15 | The return value of cowboy_req:peer/1 is never undefined | Loïc Hoguin | |
2013-05-15 | Fix incorrect spec for the middleware callback | Loïc Hoguin | |
2013-05-15 | Add two missing terminate reasons to http/loop handlers specs | Loïc Hoguin | |
2013-05-15 | Change some module calls to local function calls | Loïc Hoguin | |
2013-05-01 | Update Ranch to 0.8.2 and use ct_helper for testing SSL | Loïc Hoguin | |
2013-05-01 | Spin-off erlang.mk as a separate project | Loïc Hoguin | |
2013-04-30 | Update LICENSE date | Loïc Hoguin | |
2013-04-30 | Make getting deps a function in the Makefile | Loïc Hoguin | |
2013-04-29 | Fix a bug in REST when allowed_methods is defined when method is OPTIONS | Loïc Hoguin | |
2013-04-28 | Merge branch 'chunked-set-resp-body-fun' of git://github.com/fishcakez/cowboy | Loïc Hoguin | |
2013-04-26 | Add chunked response body fun | James Fish | |
Adds a new type of streaming response fun. It can be set in a similar way to a streaming body fun with known length: Req2 = cowboy_req:set_resp_body_fun(chunked, StreamFun, Req) The fun, StreamFun, should accept a fun as its single argument. This fun, ChunkFun, is used to send chunks of iodata: ok = ChunkFun(IoData) ChunkFun should not be called with an empty binary or iolist as this will cause HTTP 1.1 clients to believe the stream is over. The final (0 length) chunk will be sent automatically - even if it has already been sent - assuming no exception is raised. Also note that the connection will close after the last chunk for HTTP 1.0 clients. | |||
2013-04-26 | Move a test resource where it belongs | Loïc Hoguin | |
2013-04-26 | Update CHANGELOG0.8.4 | Loïc Hoguin | |
2013-04-26 | Fix a small error in the REST part of the guide | Loïc Hoguin | |
2013-04-26 | Update AUTHORS | Loïc Hoguin | |
2013-04-26 | Update to 0.8.4 | Loïc Hoguin | |
2013-04-26 | Merge branch 'range_header' of git://github.com/Egobrain/cowboy | Loïc Hoguin | |
2013-04-26 | Added range header parser | Egobrain | |
2013-04-26 | Merge branch 'fix-tests' of git://github.com/fishcakez/cowboy | Loïc Hoguin | |
2013-04-26 | Merge branch 'remove_asserts' of git://github.com/Egobrain/cowboy | Loïc Hoguin | |
2013-04-26 | Removed asserts from unit tests | Egobrain | |
2013-04-26 | Update the REST chapter of the guide | Loïc Hoguin | |
2013-04-26 | Merge branch 'pr-381-fix' of git://github.com/seletskiy/cowboy | Loïc Hoguin | |
2013-04-26 | Fix indenting issues in `cowboy_rest.erl` | Seletskiy Stanislav | |
2013-04-26 | Add default CTP: "text/html" maps to `to_html` | Seletskiy Stanislav | |
2013-04-26 | Fix memory issue with large return values in testcases | James Fish | |
Previously http_SUITE:echo_body/1 and http_SUITE:check_raw_status/1 returned large values. Common test would then try to write these to the logs causing tests to take a long time and use lots of memory. | |||
2013-04-25 | Cookie names are case sensitive | Loïc Hoguin | |
This should be more in line with what browsers are doing, and will prevent errors due to failed expectations. | |||
2013-04-25 | Improve static file handler guide chapter | Loïc Hoguin | |
Add more infos about MIME types and the file option. | |||
2013-04-25 | Document meta values set by REST | Loïc Hoguin | |
You can use these values to perform a reply using the negotiated content-type and language for non-HEAD/GET methods. | |||
2013-04-24 | Update Autobahn test suite to 0.5.3 | Loïc Hoguin | |
2013-04-24 | Only test Websocket RFC6455 in Autobahn from now on | Loïc Hoguin | |
2013-04-24 | Reorganize the http test suite | Loïc Hoguin | |
2013-04-22 | Move SSL test certificates in a subdirectory | Loïc Hoguin | |
2013-04-22 | Reorganize the websocket test suite | Loïc Hoguin | |
We now have the suite specific modules in the data folder. Compilation is performed by the Makefile instead of ct_run. | |||
2013-04-22 | Fix an outdated comment | Loïc Hoguin | |
2013-04-20 | REST is no longer experimental | Loïc Hoguin | |
2013-04-20 | Fix POST behavior in REST | Loïc Hoguin | |
The resource accept callback can trigger the following responses: * returns true, new resource, location header set: 201 * returns true, otherwise: 200, 204 or 300 (depends on body) * returns false: 422 * returns URL, new resource: 201 * returns URL, otherwise: 303 | |||
2013-04-19 | Add section about REST methods | Loïc Hoguin | |
2013-04-15 | Build Allow header with a binary comprehension | Loïc Hoguin | |