summaryrefslogtreecommitdiffstats
path: root/_build
diff options
context:
space:
mode:
Diffstat (limited to '_build')
-rw-r--r--_build/Makefile2
-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
-rw-r--r--_build/data/projects/ranch.toml4
5 files changed, 8 insertions, 8 deletions
diff --git a/_build/Makefile b/_build/Makefile
index dc3cf23a..35b0148d 100644
--- a/_build/Makefile
+++ b/_build/Makefile
@@ -26,7 +26,7 @@ define docs-version-target
.PHONY: docs-$1-$2
docs-$1-$2: tmp/$1
- cd tmp/$1 && git checkout $4
+ cd tmp/$1 && git checkout $4 && git reset --hard $4
if [ -f tmp/$1/doc/src/guide/book.asciidoc ]; then \
mkdir -p content/docs/en/$1/$3/guide/; \
echo "+++" > content/docs/en/$1/$3/guide.asciidoc; \
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.
diff --git a/_build/data/projects/ranch.toml b/_build/data/projects/ranch.toml
index 1f3cb624..fccaed4a 100644
--- a/_build/data/projects/ranch.toml
+++ b/_build/data/projects/ranch.toml
@@ -3,8 +3,8 @@ catchphrase = "The holy cow of servers."
description = "Ranch is a socket acceptor pool for building awesome TCP and TLS servers."
name = "ranch"
repository = "https://github.com/ninenines/ranch"
-versions = ["1.2"]
-branches = ["master"]
+versions = ["1.3", "1.2"]
+branches = ["master", "1.2.1"]
has_source = true
has_guide = true
has_manual = true