aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-02-06Update copyright yearsLoïc Hoguin
2014-02-06Use the INLINE_LOWERCASE macro in the request parsing codeLoïc Hoguin
Since I made it for similar code in cowlib, let's use it here too.
2014-02-06Add and document the new multipart codeLoïc Hoguin
The old undocumented API is removed entirely. While a documentation exists for the new API, it will not be considered set in stone until further testing has been performed, and a file upload example has been added. The new API should be a little more efficient than the old API, especially with smaller messages.
2014-02-05Add R16B03-1 to the list of releases to testLoïc Hoguin
2014-01-23Clarify what stream_body is doingLoïc Hoguin
2013-12-29Now testing on R15B01+ and maint and master git branchesLoïc Hoguin
2013-12-28Fix typespecs for cowboy_req:binding/{2,3} and :bindings/1Loïc Hoguin
2013-12-28Clarify functions that can only be called onceLoïc Hoguin
2013-12-28Merge branch 'typofix' of git://github.com/Etsukata/cowboyLoïc Hoguin
2013-12-28Nicer error when NPN isn't availableLoïc Hoguin
2013-12-28Fix a small typo in a testLoïc Hoguin
2013-12-28Merge branch 'patch-1' of git://github.com/edgurgel/cowboyLoïc Hoguin
2013-12-28Fix the SPDY suite for R15Loïc Hoguin
2013-12-27Fix echo_get/README.mdEduardo Gurgel
2013-12-12example: fix typo in doc http to httpsEiichi Tsukata
ssl_hello_world_example uses https instead of http.
2013-12-02Merge branch 'fix/keepalive_loop_stream_recv' of ↵Loïc Hoguin
git://github.com/fishcakez/cowboy
2013-12-02Merge branch 'to_hex_fix' of git://github.com/matthias-endler/cowboyLoïc Hoguin
2013-12-02Merge branch 'master' of git://github.com/KlausTrainer/cowboyLoïc Hoguin
2013-12-02Remove the confusing doc folderLoïc Hoguin
All documentation is in README.md, guide/ or manual/ now.
2013-12-02Update erlang.mk againLoïc Hoguin
2013-12-02Update erlang.mkLoïc Hoguin
2013-11-26manual: Add note about cowlibKlaus Trainer
2013-11-26Fix tohexu/1 and tohexl/1Matthias Endler
tohexu(16) or tohexl(16) will now crash, instead of evaluating to $G or $g.
2013-11-18Fix loop handler keepalive race conditionJames Fish
Previously if a loop handler received the timeout message from a previous request on the same connection the socket would be set to {active, once} incorrectly - when a socket packet was already in the message queue. This second packet would not be added to the buffer before a Handler:info/3 call if a user message was in the message queue before both socket packets.
2013-11-15Merge branch 'patch-1' of git://github.com/alco/cowboyLoïc Hoguin
2013-11-15Fix link to the Ranch guide in getting startedLoïc Hoguin
2013-11-14Fix grammar in "how it looks like"Alexei Sholik
2013-11-14Add link to cowboy_spdy function reference in indexLoïc Hoguin
2013-11-14Update Cowboy to 0.9.00.9.0Loïc Hoguin
2013-11-14Update AUTHORSLoïc Hoguin
2013-11-14Update CHANGELOGLoïc Hoguin
2013-11-14Add documentation for cowboy_spdyLoïc Hoguin
2013-11-14Update ROADMAPLoïc Hoguin
2013-11-14Update Ranch to 0.9.0Loïc Hoguin
2013-11-14Update erlang.mkLoïc Hoguin
2013-11-09Properly send 201 on PUT requests when resource didn't existLoïc Hoguin
Regardless of whether a location header has been set, as explained in the HTTP RFC.
2013-11-09Remove an unnecessary clause in cowboy_req:body/2Loïc Hoguin
2013-11-09Use try/catch instead of catchLoïc Hoguin
Thanks Richard Carlsson for the remainder.
2013-11-08Merge branch 'dsucher-better-routes-without-start-slash-error'Loïc Hoguin
2013-11-08Clarify error msg for route lacking starting slashDanielle Sucher
2013-11-08Merge branch 'adrianroe-streaming-http1.1-compat'Loïc Hoguin
2013-11-08Add a workaround to disable chunked transfer-encodingAdrian Roe
This is an undocumented workaround to disable chunks when using HTTP/1.1. It can be used when the client advertises itself as HTTP/1.1 despite not understanding the chunked transfer-encoding. Usage can be found looking at the test for it. When activated, Cowboy will still advertise itself as HTTP/1.1, but will send the body the same way it would if it was HTTP/1.0.
2013-11-08Add link to the repository of elixir Cowboy examplesLoïc Hoguin
2013-11-08Optimize query string parsingLoïc Hoguin
* Parsing code was moved to cowlib: cowboy_qs:parse_qs/1 * A function was added to build query strings: cowboy_qs:qs/1 * Also added cowboy_qs:urlencode/1 and cowboy_qsurldecode/1
2013-11-02Review, improve and document the static files handlerLoïc Hoguin
Changes include: * Much simplified route configuration. * Etag generation is now enabled by default. * Web mimetypes are now detected by default. A bigger list of mimetypes can be detected without any additional library. * Mimetypes can no longer be specified as a list. Copying this list for new connections is too costy. You can easily convert it into a function and pass that function to the handler instead. * You can however specify a single hardcoded mimetype. Mostly useful when serving a single file, like an index.html file, to avoid extra operations. * Specifying a path as a list of tokens is not possible anymore. Use either a binary or a string. * Using a private directory will not work if the application was not started properly. Cowboy will not attempt to find the location of this directory if the VM doesn't know it, as this caused issues in some setups. * Overall the code has been much simplified and clarified, and of course has now been documented.
2013-10-23Move cookie parsing/building code to cowlibLoïc Hoguin
The code for parsing has also been rewritten to be more efficient and to be able to handle cookie values with space inside them properly. Update cowlib to 0.2.0.
2013-10-22Remove the elixir_hello_world exampleLoïc Hoguin
Elixir examples will be in a separate repository maintained by Elixir capable developers.
2013-10-22Add relx to the ignore listLoïc Hoguin
2013-10-22No need for relx in path for examples anymoreLoïc Hoguin
2013-10-22Convert the markdown_middleware example to a releaseLoïc Hoguin