aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-02-12Update to 0.8.00.8.0Loïc Hoguin
2013-02-12Make cowboy_protocol:resume/6 privateLoïc Hoguin
2013-02-12Update CHANGELOGLoïc Hoguin
2013-02-12Update AUTHORSLoïc Hoguin
2013-02-12Fix connection state being ignored for unknown length streamingLoïc Hoguin
2013-02-12Merge branch 'stream_example' of git://github.com/acammack/cowboyLoïc Hoguin
2013-02-12Add a REST example that streams its responseAdam Cammack
2013-02-12Merge branch 'static_doc' of git://github.com/acammack/cowboyLoïc Hoguin
2013-02-11Fix examples in cowboy_static edoc and guideAdam Cammack
2013-02-11Add a REST point on the roadmapLoïc Hoguin
2013-02-11Add a few directions in the REST chapter in the guideLoïc Hoguin
This is obviously not proper documentation. We will properly document it when the API stabilizes.
2013-02-11Better handle socket closing with loop handlersLoïc Hoguin
We now read from the socket to be able to detect errors or TCP close events, and buffer the data if any. Once the data receive goes over a certain limit, which defaults to 5000 bytes, we simply close the connection with an {error, overflow} reason.
2013-02-09Do not reset the connection timeout timer on sendLoïc Hoguin
Sends can be successful even if the connection is gone.
2013-02-09Merge branch 'add_middleware_example' of git://github.com/acammack/cowboyLoïc Hoguin
2013-02-09Add an example with custom middlewareAdam Cammack
2013-02-09Make sure rest_terminate is always calledLoïc Hoguin
Also improves error reporting.
2013-02-09Fix examples linksLoïc Hoguin
Thanks to grass on IRC for the heads up.
2013-02-09Merge branch 'fix_created_path' of git://github.com/nevar/cowboyLoïc Hoguin
2013-02-09Improve Websocket exampleLoïc Hoguin
2013-02-09Fix Location headerSlava Yurin
Fix #414
2013-02-07Merge branch 'add_rest_example' of git://github.com/acammack/cowboyLoïc Hoguin
2013-02-07Add a more involved REST exampleAdam Cammack
A pastebin type application that can optionally highlight the output as both text and HTML.
2013-02-07Merge branch 'improve_basic_auth_example' of git://github.com/acammack/cowboyLoïc Hoguin
2013-02-06Improve basic_auth exampleAdam Cammmack
Some web browsers will now prompt for user name and password
2013-02-06Fix crashes when creating the requestLoïc Hoguin
We now obtain the peer address before creating the Req object. If an error occurs, then something went wrong, we close the connection nicely directly.
2013-02-06Add note about 80 columns max to CONTRIBUTING fileLoïc Hoguin
2013-02-06Merge branch 'elixir-example' of git://github.com/yrashk/cowboyLoïc Hoguin
2013-02-06Elixir hello world exampleYurii Rashkovskii
2013-02-06Strip whitespaces when authorization type is unknownLoïc Hoguin
2013-02-06Merge branch 'expose-to_upper' of git://github.com/dvv/cowboyLoïc Hoguin
2013-02-06Merge branch 'no-unicode-uri' of git://github.com/dvv/cowboyLoïc Hoguin
2013-02-06Merge branch 'master' of git://github.com/tsloughter/cowboyLoïc Hoguin
2013-02-06Makefile: separate deps compilation from app compilationLoïc Hoguin
2013-02-01add guards on set_resp_body_fun for streamlen and streamfunTristan Sloughter
2013-01-30Make sure the peer name is always availableLoïc Hoguin
2013-01-30Rename example 'static' to 'static_world' to avoid confusionLoïc Hoguin
2013-01-30Merge branch 'fix_routing_guide' of https://github.com/ivlis/cowboyLoïc Hoguin
2013-01-31Small routing guide fixIvan Lisenkov
Make cowboy_router:compile/1 return to be consistent with current implementation.
2013-01-30Fix small error in the websocket chapter in the guideLoïc Hoguin
Reported by Michel Rijnders.
2013-01-30Fix a new warning found by Dialyzer R16ALoïc Hoguin
2013-01-30Merge branch 'websocket-example' of https://github.com/pvieytes/cowboyLoïc Hoguin
2013-01-30add websocket examplePablo Vieytes
2013-01-29Merge branch 'patch-1' of https://github.com/CamShaft/cowboyLoïc Hoguin
Conflicts: src/cowboy_rest.erl
2013-01-29Merge branch 'feature_basic_auth' of https://github.com/ivlis/cowboyLoïc Hoguin
2013-01-30Implement authorization header parsingIvan Lisenkov
Basic HTTP authorization according to RFC 2617 is implemented. Added an example of its usage with REST handler.
2013-01-29Merge branch 'rest_post_created_path' of https://github.com/treetopllc/cowboyLoïc Hoguin
2013-01-29Makefile verbosity tweaksLoïc Hoguin
2013-01-29allow POST rest handling to specify path after accepting contentTom Burdick
2013-01-29Merge branch 'rest_patch' of https://github.com/treetopllc/cowboyLoïc Hoguin
2013-01-29Fix chunked streaming of request body and improve speedLoïc Hoguin