summaryrefslogtreecommitdiffstats
path: root/_build/content
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-11-26 12:58:19 +0100
committerLoïc Hoguin <[email protected]>2016-11-26 12:58:19 +0100
commit9c80a8810759c9ed19606547c5aaa47aa1699be4 (patch)
treedc36dcc3c97db8dc2476c46df9b2ba596e9e578a /_build/content
parentb2d4e41dcda3c2964c8a865482129a7fdf9e55a6 (diff)
downloadninenines.eu-9c80a8810759c9ed19606547c5aaa47aa1699be4.tar.gz
ninenines.eu-9c80a8810759c9ed19606547c5aaa47aa1699be4.tar.bz2
ninenines.eu-9c80a8810759c9ed19606547c5aaa47aa1699be4.zip
Add Ranch 1.3 and various small fixes
Diffstat (limited to '_build/content')
-rw-r--r--_build/content/articles/erlang-validate-utf8.asciidoc4
-rw-r--r--_build/content/articles/erlang.mk-and-relx.asciidoc4
-rw-r--r--_build/content/articles/ranch-ftp.asciidoc2
3 files changed, 5 insertions, 5 deletions
diff --git a/_build/content/articles/erlang-validate-utf8.asciidoc b/_build/content/articles/erlang-validate-utf8.asciidoc
index 383afcc6..dd0c1e10 100644
--- a/_build/content/articles/erlang-validate-utf8.asciidoc
+++ b/_build/content/articles/erlang-validate-utf8.asciidoc
@@ -13,8 +13,8 @@ change in the way the code validates UTF-8 data]
When looking into why the permessage-deflate tests
in autobahntestsuite were taking such a long time, I
found that autobahn is using an adaptation of the
-algorithm named <a href="http://bjoern.hoehrmann.de/utf-8/decoder/dfa/">Flexible
-and Economical UTF-8 Decoder</a>. This is the C99
+algorithm named http://bjoern.hoehrmann.de/utf-8/decoder/dfa/[Flexible
+and Economical UTF-8 Decoder]. This is the C99
implementation:
[source,c]
diff --git a/_build/content/articles/erlang.mk-and-relx.asciidoc b/_build/content/articles/erlang.mk-and-relx.asciidoc
index e8a667a8..b6f3b25f 100644
--- a/_build/content/articles/erlang.mk-and-relx.asciidoc
+++ b/_build/content/articles/erlang.mk-and-relx.asciidoc
@@ -50,8 +50,8 @@ this website. I only removed a few targets that were off-topic.
PROJECT = ninenines
DEPS = cowboy erlydtl
-dep_cowboy = https://github.com/extend/cowboy.git 0.8.5
-dep_erlydtl = https://github.com/evanmiller/erlydtl.git 4d0dc8fb
+dep_cowboy_commit = 0.8.5
+dep_erlydtl_commit = 4d0dc8fb
.PHONY: release clean-release
diff --git a/_build/content/articles/ranch-ftp.asciidoc b/_build/content/articles/ranch-ftp.asciidoc
index 19209ccc..056e3102 100644
--- a/_build/content/articles/ranch-ftp.asciidoc
+++ b/_build/content/articles/ranch-ftp.asciidoc
@@ -197,7 +197,7 @@ loop(Socket, Transport, Buffer) ->
Buffer2 = << Buffer/binary, Data/binary >>,
{Commands, Rest} = split(Buffer2),
[handle(Socket, Transport, C) || C <- Commands],
- loop(Socket, Transport);
+ loop(Socket, Transport, Rest);
{error, _} ->
io:format("The client disconnected~n")
end.