aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-01-14Simplify specifying the Cowboy version in examplesLoïc Hoguin
2016-01-14Remove the .app.src file in all examplesLoïc Hoguin
2016-01-14Convert the example index README to AsciiDocLoïc Hoguin
2016-01-14Merge branch 'patch-1' of https://github.com/yurrriq/cowboyLoïc Hoguin
2016-01-14Simplify example instructions and fix broken examplesLoïc Hoguin
Also convert to AsciiDoc while we're at it.
2016-01-14Convert the documentation to AsciidocLoïc Hoguin
A few small revisions were made, and Erlang.mk has been updated.
2016-01-06Update README.mdEric Bailey
Consistently use the imperative mood and add link to LFE examples.
2015-12-11Merge pull request #924 from abs/patch-1Loïc Hoguin
Update README.md
2015-12-11Update README.mdAndrei Soroker
Replace Kato with Sameroom
2015-11-16Update Erlang.mkLoïc Hoguin
2015-11-16Update CONTRIBUTINGLoïc Hoguin
2015-10-28Update README.mdThomas Gebert
I noticed that this appeared to point to a bad URL. If LeoFS is sponsoring this, they'd probably prefer having the right URL.
2015-09-23Update OTP versions to use for CILoïc Hoguin
2015-08-16Update apt-get before installing things on CILoïc Hoguin
2015-08-07Use 'Connection' header only when necessaryAlexey Lebedeff
Fixes #839 when 'Connection: Keep-Alive' wasn't sent in a HTTP/1.0 response. Now the usage of 'Connection' header is consistent with current protocol version: when this header is not specified explicitly in the response, HTTP/1.0 implies 'Connection: close' and HTTP/1.1 implies 'Connection: Keep-Alive'. So if current 'Connection' value matches the default value of current protocol, we won't state obvious fact in the response; and vice versa. Amended to fix and improve tests, and revert the variable name change from HTTP11Headers to StdHeaders. I think it's still good to leave it as is because it's not really a standard header for HTTP/1.0, and it's gone from HTTP/2 entirely.
2015-07-27Add optional callbacksLoïc Hoguin
Mostly useful for REST, which has a ton. This is an initial commit, it still needs to be tested, but it's time to sleep.
2015-07-27Add spec to silence a Dialyzer warningLoïc Hoguin
Yes I know the function never returns. :-)
2015-07-27Use map syntax instead of maps:put/3Loïc Hoguin
2015-07-27Use erlang:monotonic_time instead of os:timestampLoïc Hoguin
Avoids unnecessary calculations.
2015-07-27Use the new unique_integer function to generate IDsLoïc Hoguin
In the eventsource example.
2015-07-27CONTRIBUTING additionsLoïc Hoguin
[ci skip]
2015-07-25Merge branch 'use-https' of https://github.com/ahf/cowboyLoïc Hoguin
2015-07-25Merge branch 'master' of https://github.com/jmccaughey/cowboyLoïc Hoguin
2015-07-25Update the CONTRIBUTING fileLoïc Hoguin
Looks like I pushed too early in the previous commit. Oops!
2015-07-23Fix .app module listLoïc Hoguin
cowboy_stream_h isn't in the repository yet.
2015-07-23Update gitignoreLoïc Hoguin
Let's try this [ci skip] stuff.
2015-07-22Fix autobahn test suite report link when used in CILoïc Hoguin
2015-07-22Add autobahn test suite output to the consoleLoïc Hoguin
2015-07-22Add support for Autobahn test suite for CircleCI buildsLoïc Hoguin
2015-07-22Experiment with a Dialyzer step for CircleCILoïc Hoguin
2015-07-21Fix ci-prepare when OTP builds existLoïc Hoguin
2015-07-21Add logs/ as CircleCI artifactLoïc Hoguin
To be kept after the run ends.
2015-07-21Don't ignore failure when doing 'make ci'Loïc Hoguin
The best way to use 'make ci' is 'make -k ci', then it will complete its run even if a version fails, and still exit with an error code.
2015-07-21Add caching of OTP builds for CircleCILoïc Hoguin
Unfortunately not seeing how I can try it other than committing the file... Oh well, polluting the logs!
2015-07-21Don't call xdg-open at the end of CILoïc Hoguin
2015-07-21Update erlang.mk and remove .app.srcLoïc Hoguin
Everything is now directly generated from the Makefile. Also properly update dependencies.
2015-07-21Experiment with CircleCILoïc Hoguin
2015-07-05Use HTTPS dependencies when using RebarAlexander Færøy
2015-06-12Fix compilation error due to previous commitLoïc Hoguin
Ah, conference commits.
2015-06-11Add HTTP/2 support preview2.0.0-pre.2Loïc Hoguin
This commit is not only an early preview of HTTP/2, it is an early preview of the new Cowboy architecture that will be presented tomorrow in my talk. If you have found it before the talk, great! It's not complete so you better go watch the talk anyway.
2015-05-29expect header parses to an atom (continue)jmccaughey
2015-05-07Exit with exit/1 on handler exception and include class in reasonJames Fish
2015-05-06Use the most recent state on error in cowboy_restLoïc Hoguin
2015-05-06Fix a compile error introduced in previous commitLoïc Hoguin
2015-05-06Dialyzer fixes in cowboy_clockLoïc Hoguin
This is what I get for merging blindly!
2015-05-06Add an index.html that is also served statically as the default for /David N. Welton
2015-05-06Merge branch 'patch-2' of https://github.com/egobrain/cowboyLoïc Hoguin
2015-05-06added a comment for non-obvious erlang:cancel_timerAlex Kovalev
2015-05-06fixed cowboy_clock inbox overflow if system clock was changedAlex Kovalev
2015-05-06Update Cowlib to 1.3.0Juan Puig