diff options
Diffstat (limited to 'docs/en')
95 files changed, 1412 insertions, 0 deletions
diff --git a/docs/en/cowboy/2.0/guide/architecture/index.html b/docs/en/cowboy/2.0/guide/architecture/index.html index ed86e695..df1e201c 100644 --- a/docs/en/cowboy/2.0/guide/architecture/index.html +++ b/docs/en/cowboy/2.0/guide/architecture/index.html @@ -121,6 +121,27 @@ only processing short-lived requests.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/ws_handlers/"> + Handling Websocket connections + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/broken_clients/"> + Dealing with broken clients + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/broken_clients/index.html b/docs/en/cowboy/2.0/guide/broken_clients/index.html index a61dadc8..dd8fb375 100644 --- a/docs/en/cowboy/2.0/guide/broken_clients/index.html +++ b/docs/en/cowboy/2.0/guide/broken_clients/index.html @@ -135,6 +135,27 @@ http://www.gnu.org/software/src-highlite --> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/architecture/"> + Architecture + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/middlewares/"> + Middlewares + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/constraints/index.html b/docs/en/cowboy/2.0/guide/constraints/index.html index f2904152..4640976f 100644 --- a/docs/en/cowboy/2.0/guide/constraints/index.html +++ b/docs/en/cowboy/2.0/guide/constraints/index.html @@ -177,6 +177,27 @@ to ensure that we do not crash when the input is invalid.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/routing/"> + Routing + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/handlers/"> + Handlers + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/cookies/index.html b/docs/en/cowboy/2.0/guide/cookies/index.html index 0c957e61..04dabd33 100644 --- a/docs/en/cowboy/2.0/guide/cookies/index.html +++ b/docs/en/cowboy/2.0/guide/cookies/index.html @@ -210,6 +210,27 @@ exception is thrown.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/resp/"> + Sending a response + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/multipart/"> + Multipart requests + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/erlang_web/index.html b/docs/en/cowboy/2.0/guide/erlang_web/index.html index 08e0c069..d2db7199 100644 --- a/docs/en/cowboy/2.0/guide/erlang_web/index.html +++ b/docs/en/cowboy/2.0/guide/erlang_web/index.html @@ -260,6 +260,27 @@ ebook version.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/modern_web/"> + The modern Web + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/introduction/"> + Introduction + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/flow_diagram/index.html b/docs/en/cowboy/2.0/guide/flow_diagram/index.html index 16ddfd8b..79908680 100644 --- a/docs/en/cowboy/2.0/guide/flow_diagram/index.html +++ b/docs/en/cowboy/2.0/guide/flow_diagram/index.html @@ -73,6 +73,27 @@ + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/getting_started/"> + Getting started + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/listeners/"> + Listeners + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/getting_started/index.html b/docs/en/cowboy/2.0/guide/getting_started/index.html index 34957699..98693417 100644 --- a/docs/en/cowboy/2.0/guide/getting_started/index.html +++ b/docs/en/cowboy/2.0/guide/getting_started/index.html @@ -223,6 +223,27 @@ in your browser, you should get a nice <code>Hello Erlang!</code> displayed!</p> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/introduction/"> + Introduction + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/flow_diagram/"> + Flow diagram + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/handlers/index.html b/docs/en/cowboy/2.0/guide/handlers/index.html index c45d1adb..6cdd7d48 100644 --- a/docs/en/cowboy/2.0/guide/handlers/index.html +++ b/docs/en/cowboy/2.0/guide/handlers/index.html @@ -168,6 +168,27 @@ process will terminate soon after this call returns.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/constraints/"> + Constraints + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/loop_handlers/"> + Loop handlers + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/hooks/index.html b/docs/en/cowboy/2.0/guide/hooks/index.html index b52ff4e7..57d5baa6 100644 --- a/docs/en/cowboy/2.0/guide/hooks/index.html +++ b/docs/en/cowboy/2.0/guide/hooks/index.html @@ -115,6 +115,23 @@ http://www.gnu.org/software/src-highlite --> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/sub_protocols/"> + Sub protocols + </a> + + + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/index.html b/docs/en/cowboy/2.0/guide/index.html index 325de8e7..d6403441 100644 --- a/docs/en/cowboy/2.0/guide/index.html +++ b/docs/en/cowboy/2.0/guide/index.html @@ -274,6 +274,8 @@ + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/introduction/index.html b/docs/en/cowboy/2.0/guide/introduction/index.html index 44548d49..db6f7b44 100644 --- a/docs/en/cowboy/2.0/guide/introduction/index.html +++ b/docs/en/cowboy/2.0/guide/introduction/index.html @@ -145,6 +145,27 @@ when sending responses.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/erlang_web/"> + Erlang and the Web + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/getting_started/"> + Getting started + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/listeners/index.html b/docs/en/cowboy/2.0/guide/listeners/index.html index d0de7d74..8d63e17a 100644 --- a/docs/en/cowboy/2.0/guide/listeners/index.html +++ b/docs/en/cowboy/2.0/guide/listeners/index.html @@ -175,6 +175,27 @@ shared.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/flow_diagram/"> + Flow diagram + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/routing/"> + Routing + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/loop_handlers/index.html b/docs/en/cowboy/2.0/guide/loop_handlers/index.html index df99322e..15921152 100644 --- a/docs/en/cowboy/2.0/guide/loop_handlers/index.html +++ b/docs/en/cowboy/2.0/guide/loop_handlers/index.html @@ -214,6 +214,27 @@ accordingly.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/handlers/"> + Handlers + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/static_files/"> + Static files + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/middlewares/index.html b/docs/en/cowboy/2.0/guide/middlewares/index.html index b3c10e5e..f4dfdb0a 100644 --- a/docs/en/cowboy/2.0/guide/middlewares/index.html +++ b/docs/en/cowboy/2.0/guide/middlewares/index.html @@ -158,6 +158,27 @@ values. It puts the result of the request handling into <code>result</code>.</p> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/broken_clients/"> + Dealing with broken clients + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/sub_protocols/"> + Sub protocols + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/modern_web/index.html b/docs/en/cowboy/2.0/guide/modern_web/index.html index 71a76041..bc720d03 100644 --- a/docs/en/cowboy/2.0/guide/modern_web/index.html +++ b/docs/en/cowboy/2.0/guide/modern_web/index.html @@ -179,6 +179,23 @@ the HTTP protocol.</p></div> + + + + + <nav style="margin:1em 0"> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/erlang_web/"> + Erlang and the Web + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/multipart/index.html b/docs/en/cowboy/2.0/guide/multipart/index.html index 5f661d44..f7c9202b 100644 --- a/docs/en/cowboy/2.0/guide/multipart/index.html +++ b/docs/en/cowboy/2.0/guide/multipart/index.html @@ -235,6 +235,27 @@ reading as soon as you find the data you need.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/cookies/"> + Using cookies + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/rest_principles/"> + REST principles + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/overview/index.html b/docs/en/cowboy/2.0/guide/overview/index.html index b5c779ff..914ca774 100644 --- a/docs/en/cowboy/2.0/guide/overview/index.html +++ b/docs/en/cowboy/2.0/guide/overview/index.html @@ -215,6 +215,8 @@ at this point, however.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/req/index.html b/docs/en/cowboy/2.0/guide/req/index.html index 13cf97d5..7d4aee5a 100644 --- a/docs/en/cowboy/2.0/guide/req/index.html +++ b/docs/en/cowboy/2.0/guide/req/index.html @@ -474,6 +474,27 @@ client itself. It may also be a proxy or a gateway.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/static_files/"> + Static files + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/req_body/"> + Reading the request body + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/req_body/index.html b/docs/en/cowboy/2.0/guide/req_body/index.html index 9a0a3cfc..93b7fa27 100644 --- a/docs/en/cowboy/2.0/guide/req_body/index.html +++ b/docs/en/cowboy/2.0/guide/req_body/index.html @@ -210,6 +210,27 @@ http://www.gnu.org/software/src-highlite --> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/req/"> + The Req object + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/resp/"> + Sending a response + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/resource_design/index.html b/docs/en/cowboy/2.0/guide/resource_design/index.html index 8a4f0227..23e7719e 100644 --- a/docs/en/cowboy/2.0/guide/resource_design/index.html +++ b/docs/en/cowboy/2.0/guide/resource_design/index.html @@ -280,6 +280,27 @@ no way of knowing it has been completed yet, implement the + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/rest_flowcharts/"> + REST flowcharts + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/ws_protocol/"> + The Websocket protocol + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/resp/index.html b/docs/en/cowboy/2.0/guide/resp/index.html index b87b1efa..7fd29f0f 100644 --- a/docs/en/cowboy/2.0/guide/resp/index.html +++ b/docs/en/cowboy/2.0/guide/resp/index.html @@ -388,6 +388,27 @@ ultimately send a response to the client.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/req_body/"> + Reading the request body + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/cookies/"> + Using cookies + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/rest_flowcharts/index.html b/docs/en/cowboy/2.0/guide/rest_flowcharts/index.html index d54e6a65..d76d3b14 100644 --- a/docs/en/cowboy/2.0/guide/rest_flowcharts/index.html +++ b/docs/en/cowboy/2.0/guide/rest_flowcharts/index.html @@ -310,6 +310,27 @@ the results for subsequent use.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/rest_handlers/"> + REST handlers + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/resource_design/"> + Designing a resource handler + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/rest_handlers/index.html b/docs/en/cowboy/2.0/guide/rest_handlers/index.html index da6288fb..3caf83e0 100644 --- a/docs/en/cowboy/2.0/guide/rest_handlers/index.html +++ b/docs/en/cowboy/2.0/guide/rest_handlers/index.html @@ -349,6 +349,27 @@ cellspacing="0" cellpadding="4"> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/rest_principles/"> + REST principles + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/rest_flowcharts/"> + REST flowcharts + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/rest_principles/index.html b/docs/en/cowboy/2.0/guide/rest_principles/index.html index 9696e420..2e3ad8c1 100644 --- a/docs/en/cowboy/2.0/guide/rest_principles/index.html +++ b/docs/en/cowboy/2.0/guide/rest_principles/index.html @@ -219,6 +219,27 @@ anything specific to the service to operate on it.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/multipart/"> + Multipart requests + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/rest_handlers/"> + REST handlers + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/routing/index.html b/docs/en/cowboy/2.0/guide/routing/index.html index a50be460..9a04e323 100644 --- a/docs/en/cowboy/2.0/guide/routing/index.html +++ b/docs/en/cowboy/2.0/guide/routing/index.html @@ -326,6 +326,27 @@ http://www.gnu.org/software/src-highlite --> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/listeners/"> + Listeners + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/constraints/"> + Constraints + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/static_files/index.html b/docs/en/cowboy/2.0/guide/static_files/index.html index 62067b96..ff1c78dc 100644 --- a/docs/en/cowboy/2.0/guide/static_files/index.html +++ b/docs/en/cowboy/2.0/guide/static_files/index.html @@ -239,6 +239,27 @@ http://www.gnu.org/software/src-highlite --> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/loop_handlers/"> + Loop handlers + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/req/"> + The Req object + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/sub_protocols/index.html b/docs/en/cowboy/2.0/guide/sub_protocols/index.html index 928d4965..bf05a83a 100644 --- a/docs/en/cowboy/2.0/guide/sub_protocols/index.html +++ b/docs/en/cowboy/2.0/guide/sub_protocols/index.html @@ -136,6 +136,27 @@ the optional <code>terminate/3</code> callback is called, if present.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/middlewares/"> + Middlewares + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/hooks/"> + Hooks + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/ws_handlers/index.html b/docs/en/cowboy/2.0/guide/ws_handlers/index.html index 29feb4a1..a5c84e49 100644 --- a/docs/en/cowboy/2.0/guide/ws_handlers/index.html +++ b/docs/en/cowboy/2.0/guide/ws_handlers/index.html @@ -269,6 +269,27 @@ emulate Websocket connections on older browsers.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/ws_protocol/"> + The Websocket protocol + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/architecture/"> + Architecture + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/guide/ws_protocol/index.html b/docs/en/cowboy/2.0/guide/ws_protocol/index.html index 5a640c49..faf642bb 100644 --- a/docs/en/cowboy/2.0/guide/ws_protocol/index.html +++ b/docs/en/cowboy/2.0/guide/ws_protocol/index.html @@ -137,6 +137,27 @@ the listener.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/resource_design/"> + Designing a resource handler + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/cowboy/2.0/guide/ws_handlers/"> + Handling Websocket connections + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy/index.html b/docs/en/cowboy/2.0/manual/cowboy/index.html index 22ffc773..6763940e 100644 --- a/docs/en/cowboy/2.0/manual/cowboy/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy/index.html @@ -258,6 +258,8 @@ provides detailed information about how listeners work.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_app/index.html b/docs/en/cowboy/2.0/manual/cowboy_app/index.html index 1911749e..f8d0c139 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_app/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_app/index.html @@ -101,6 +101,8 @@ environment configuration parameters.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_handler/index.html b/docs/en/cowboy/2.0/manual/cowboy_handler/index.html index 77addc71..8130d474 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_handler/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_handler/index.html @@ -295,6 +295,8 @@ miscellaneous operations.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_loop/index.html b/docs/en/cowboy/2.0/manual/cowboy_loop/index.html index ec558209..70f6c9c1 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_loop/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_loop/index.html @@ -219,6 +219,8 @@ it receives another message.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_middleware/index.html b/docs/en/cowboy/2.0/manual/cowboy_middleware/index.html index acdc55d3..acfcb743 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_middleware/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_middleware/index.html @@ -160,6 +160,8 @@ open to receive more requests from the client.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_protocol/index.html b/docs/en/cowboy/2.0/manual/cowboy_protocol/index.html index 7efcd20b..de8730ae 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_protocol/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_protocol/index.html @@ -209,6 +209,8 @@ timeout (5000) + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_req/index.html b/docs/en/cowboy/2.0/manual/cowboy_req/index.html index 0874548c..bda581ba 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_req/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_req/index.html @@ -1354,6 +1354,8 @@ to set cookies.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_rest/index.html b/docs/en/cowboy/2.0/manual/cowboy_rest/index.html index 9d46ab96..dcb46749 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_rest/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_rest/index.html @@ -1279,6 +1279,8 @@ header which holds this list.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_router/index.html b/docs/en/cowboy/2.0/manual/cowboy_router/index.html index 7a60003a..45abf974 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_router/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_router/index.html @@ -177,6 +177,8 @@ HandlerOpts = any() + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_static/index.html b/docs/en/cowboy/2.0/manual/cowboy_static/index.html index 8ac7fd51..9a4727e5 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_static/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_static/index.html @@ -118,6 +118,8 @@ and how the mimetype of files should be detected.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_sub_protocol/index.html b/docs/en/cowboy/2.0/manual/cowboy_sub_protocol/index.html index 78fd7ffa..65397642 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_sub_protocol/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_sub_protocol/index.html @@ -154,6 +154,8 @@ description of the return values.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/cowboy_websocket/index.html b/docs/en/cowboy/2.0/manual/cowboy_websocket/index.html index abba7a1c..d8cd3e46 100644 --- a/docs/en/cowboy/2.0/manual/cowboy_websocket/index.html +++ b/docs/en/cowboy/2.0/manual/cowboy_websocket/index.html @@ -280,6 +280,8 @@ connection.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/http_status_codes/index.html b/docs/en/cowboy/2.0/manual/http_status_codes/index.html index 65135d41..eaa74f9f 100644 --- a/docs/en/cowboy/2.0/manual/http_status_codes/index.html +++ b/docs/en/cowboy/2.0/manual/http_status_codes/index.html @@ -337,6 +337,8 @@ client and the connection is closed.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/cowboy/2.0/manual/index.html b/docs/en/cowboy/2.0/manual/index.html index 0d52d7d4..0fb488bf 100644 --- a/docs/en/cowboy/2.0/manual/index.html +++ b/docs/en/cowboy/2.0/manual/index.html @@ -139,6 +139,8 @@ + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/app/index.html b/docs/en/erlang.mk/1/guide/app/index.html index 24a4949a..bd03460c 100644 --- a/docs/en/erlang.mk/1/guide/app/index.html +++ b/docs/en/erlang.mk/1/guide/app/index.html @@ -587,6 +587,27 @@ you don’t explicitly use it.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/limitations/"> + Limitations + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/deps/"> + Packages and dependencies + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/asciidoc/index.html b/docs/en/erlang.mk/1/guide/asciidoc/index.html index b379b820..ffabf5c2 100644 --- a/docs/en/erlang.mk/1/guide/asciidoc/index.html +++ b/docs/en/erlang.mk/1/guide/asciidoc/index.html @@ -166,6 +166,27 @@ your user.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/compat/"> + Compatibility with other build tools + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/edoc/"> + EDoc comments + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/ci/index.html b/docs/en/erlang.mk/1/guide/ci/index.html index 2ff04e82..a3af05ed 100644 --- a/docs/en/erlang.mk/1/guide/ci/index.html +++ b/docs/en/erlang.mk/1/guide/ci/index.html @@ -73,6 +73,27 @@ + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/coverage/"> + Code coverage + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/dialyzer/"> + Dialyzer + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/common_test/index.html b/docs/en/erlang.mk/1/guide/common_test/index.html index a568e9e5..84ce7490 100644 --- a/docs/en/erlang.mk/1/guide/common_test/index.html +++ b/docs/en/erlang.mk/1/guide/common_test/index.html @@ -177,6 +177,27 @@ but covered in its own chapter.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/eunit/"> + EUnit + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/coverage/"> + Code coverage + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/compat/index.html b/docs/en/erlang.mk/1/guide/compat/index.html index 9bdaa984..a76ca857 100644 --- a/docs/en/erlang.mk/1/guide/compat/index.html +++ b/docs/en/erlang.mk/1/guide/compat/index.html @@ -152,6 +152,27 @@ configuration, add or remove modules.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/escripts/"> + Escripts + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/asciidoc/"> + AsciiDoc documentation + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/contributing/index.html b/docs/en/erlang.mk/1/guide/contributing/index.html index e962724c..c05cd4f4 100644 --- a/docs/en/erlang.mk/1/guide/contributing/index.html +++ b/docs/en/erlang.mk/1/guide/contributing/index.html @@ -197,6 +197,23 @@ the related documentation.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/history/"> + Short history + </a> + + + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/coverage/index.html b/docs/en/erlang.mk/1/guide/coverage/index.html index 5c40817e..f6a0a2be 100644 --- a/docs/en/erlang.mk/1/guide/coverage/index.html +++ b/docs/en/erlang.mk/1/guide/coverage/index.html @@ -73,6 +73,27 @@ + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/common_test/"> + Common Test + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/ci/"> + Continuous integration + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/deps/index.html b/docs/en/erlang.mk/1/guide/deps/index.html index 1d33ad50..68554d8e 100644 --- a/docs/en/erlang.mk/1/guide/deps/index.html +++ b/docs/en/erlang.mk/1/guide/deps/index.html @@ -600,6 +600,27 @@ The dependency directory <em>$(DEPS_DIR)</em> will not be removed on <code>make + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/app/"> + Building + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/ports/"> + NIFs and port drivers + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/dialyzer/index.html b/docs/en/erlang.mk/1/guide/dialyzer/index.html index 73ccb91e..a052abc5 100644 --- a/docs/en/erlang.mk/1/guide/dialyzer/index.html +++ b/docs/en/erlang.mk/1/guide/dialyzer/index.html @@ -143,6 +143,27 @@ Dialyzer creates it automatically.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/ci/"> + Continuous integration + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/xref/"> + Xref + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/edoc/index.html b/docs/en/erlang.mk/1/guide/edoc/index.html index 8d9362b3..372b65ed 100644 --- a/docs/en/erlang.mk/1/guide/edoc/index.html +++ b/docs/en/erlang.mk/1/guide/edoc/index.html @@ -120,6 +120,27 @@ the following to your Makefile:</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/asciidoc/"> + AsciiDoc documentation + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/shell/"> + Erlang shell + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/escripts/index.html b/docs/en/erlang.mk/1/guide/escripts/index.html index ebfecb1a..a8e8cf9a 100644 --- a/docs/en/erlang.mk/1/guide/escripts/index.html +++ b/docs/en/erlang.mk/1/guide/escripts/index.html @@ -73,6 +73,27 @@ + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/releases/"> + Releases + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/compat/"> + Compatibility with other build tools + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/eunit/index.html b/docs/en/erlang.mk/1/guide/eunit/index.html index a3315cb0..f7be4f02 100644 --- a/docs/en/erlang.mk/1/guide/eunit/index.html +++ b/docs/en/erlang.mk/1/guide/eunit/index.html @@ -207,6 +207,27 @@ but covered in its own chapter.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/shell/"> + Erlang shell + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/common_test/"> + Common Test + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/external_plugins/index.html b/docs/en/erlang.mk/1/guide/external_plugins/index.html index 3dd5ad0b..6659e956 100644 --- a/docs/en/erlang.mk/1/guide/external_plugins/index.html +++ b/docs/en/erlang.mk/1/guide/external_plugins/index.html @@ -135,6 +135,27 @@ in one go if they wish to do so.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/xref/"> + Xref + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/external_plugins_list/"> + List of plugins + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/external_plugins_list/index.html b/docs/en/erlang.mk/1/guide/external_plugins_list/index.html index 2afa0d97..174cf051 100644 --- a/docs/en/erlang.mk/1/guide/external_plugins_list/index.html +++ b/docs/en/erlang.mk/1/guide/external_plugins_list/index.html @@ -146,6 +146,27 @@ to generate a compatible configuration file for + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/external_plugins/"> + External plugins + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/why/"> + Why Erlang.mk + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/getting_started/index.html b/docs/en/erlang.mk/1/guide/getting_started/index.html index b845f8f5..c95ebf73 100644 --- a/docs/en/erlang.mk/1/guide/getting_started/index.html +++ b/docs/en/erlang.mk/1/guide/getting_started/index.html @@ -424,6 +424,27 @@ Loïc Hoguin by sending an email to <a href="mailto:[email protected]">contac + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/installation/"> + Installation + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/overview/"> + Overview + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/history/index.html b/docs/en/erlang.mk/1/guide/history/index.html index 9fed152f..0bdd1c94 100644 --- a/docs/en/erlang.mk/1/guide/history/index.html +++ b/docs/en/erlang.mk/1/guide/history/index.html @@ -127,6 +127,27 @@ from the 3.6.0 release onward.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/why/"> + Why Erlang.mk + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/contributing/"> + Contributing + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/index.html b/docs/en/erlang.mk/1/guide/index.html index dac5c8e6..7c820944 100644 --- a/docs/en/erlang.mk/1/guide/index.html +++ b/docs/en/erlang.mk/1/guide/index.html @@ -234,6 +234,8 @@ + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/installation/index.html b/docs/en/erlang.mk/1/guide/installation/index.html index 6375e8b4..066b4a4e 100644 --- a/docs/en/erlang.mk/1/guide/installation/index.html +++ b/docs/en/erlang.mk/1/guide/installation/index.html @@ -192,6 +192,23 @@ so expect bugs to be fixed as more tests are added.</p></div> + + + + + <nav style="margin:1em 0"> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/getting_started/"> + Getting started + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/limitations/index.html b/docs/en/erlang.mk/1/guide/limitations/index.html index 0a372690..0ee214d8 100644 --- a/docs/en/erlang.mk/1/guide/limitations/index.html +++ b/docs/en/erlang.mk/1/guide/limitations/index.html @@ -115,6 +115,27 @@ fix this behavior.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/updating/"> + Updating Erlang.mk + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/app/"> + Building + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/overview/index.html b/docs/en/erlang.mk/1/guide/overview/index.html index 9b98abae..a06ba5c3 100644 --- a/docs/en/erlang.mk/1/guide/overview/index.html +++ b/docs/en/erlang.mk/1/guide/overview/index.html @@ -160,6 +160,27 @@ everyone agreed on everything all the time.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/getting_started/"> + Getting started + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/updating/"> + Updating Erlang.mk + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/ports/index.html b/docs/en/erlang.mk/1/guide/ports/index.html index b7b6576d..737ed021 100644 --- a/docs/en/erlang.mk/1/guide/ports/index.html +++ b/docs/en/erlang.mk/1/guide/ports/index.html @@ -208,6 +208,27 @@ list the files to compile.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/deps/"> + Packages and dependencies + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/releases/"> + Releases + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/releases/index.html b/docs/en/erlang.mk/1/guide/releases/index.html index 262f71dd..a0946acd 100644 --- a/docs/en/erlang.mk/1/guide/releases/index.html +++ b/docs/en/erlang.mk/1/guide/releases/index.html @@ -145,6 +145,27 @@ use to check things as needed.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/ports/"> + NIFs and port drivers + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/escripts/"> + Escripts + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/shell/index.html b/docs/en/erlang.mk/1/guide/shell/index.html index 93eed430..3a71c163 100644 --- a/docs/en/erlang.mk/1/guide/shell/index.html +++ b/docs/en/erlang.mk/1/guide/shell/index.html @@ -113,6 +113,27 @@ command <code>q().</code>.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/edoc/"> + EDoc comments + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/eunit/"> + EUnit + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/updating/index.html b/docs/en/erlang.mk/1/guide/updating/index.html index 46c53651..c5ca3957 100644 --- a/docs/en/erlang.mk/1/guide/updating/index.html +++ b/docs/en/erlang.mk/1/guide/updating/index.html @@ -134,6 +134,27 @@ the <code>ERLANG_MK_BUILD_DIR</code> variable.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/overview/"> + Overview + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/limitations/"> + Limitations + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/why/index.html b/docs/en/erlang.mk/1/guide/why/index.html index dbe9f2c5..a90601e8 100644 --- a/docs/en/erlang.mk/1/guide/why/index.html +++ b/docs/en/erlang.mk/1/guide/why/index.html @@ -152,6 +152,27 @@ as you expect it to.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/external_plugins_list/"> + List of plugins + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/history/"> + Short history + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/erlang.mk/1/guide/xref/index.html b/docs/en/erlang.mk/1/guide/xref/index.html index d966c881..78645d68 100644 --- a/docs/en/erlang.mk/1/guide/xref/index.html +++ b/docs/en/erlang.mk/1/guide/xref/index.html @@ -73,6 +73,27 @@ + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/dialyzer/"> + Dialyzer + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/erlang.mk/1/guide/external_plugins/"> + External plugins + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/guide/connect/index.html b/docs/en/gun/1.0/guide/connect/index.html index 1928c24f..415dd438 100644 --- a/docs/en/gun/1.0/guide/connect/index.html +++ b/docs/en/gun/1.0/guide/connect/index.html @@ -234,6 +234,27 @@ when the connection has been closed.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/gun/1.0/guide/protocols/"> + Supported protocols + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/gun/1.0/guide/http/"> + HTTP + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/guide/http/index.html b/docs/en/gun/1.0/guide/http/index.html index e19670f7..662b63fb 100644 --- a/docs/en/gun/1.0/guide/http/index.html +++ b/docs/en/gun/1.0/guide/http/index.html @@ -447,6 +447,27 @@ http://www.gnu.org/software/src-highlite --> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/gun/1.0/guide/connect/"> + Connection + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/gun/1.0/guide/websocket/"> + Websocket + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/guide/index.html b/docs/en/gun/1.0/guide/index.html index 7b647bc7..3ed5fbdf 100644 --- a/docs/en/gun/1.0/guide/index.html +++ b/docs/en/gun/1.0/guide/index.html @@ -104,6 +104,8 @@ + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/guide/introduction/index.html b/docs/en/gun/1.0/guide/introduction/index.html index 6fb805a9..4af7e8cc 100644 --- a/docs/en/gun/1.0/guide/introduction/index.html +++ b/docs/en/gun/1.0/guide/introduction/index.html @@ -100,6 +100,23 @@ names.</p></div> + + + + + <nav style="margin:1em 0"> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/gun/1.0/guide/start/"> + Starting and stopping + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/guide/protocols/index.html b/docs/en/gun/1.0/guide/protocols/index.html index d175b196..fd5b4adf 100644 --- a/docs/en/gun/1.0/guide/protocols/index.html +++ b/docs/en/gun/1.0/guide/protocols/index.html @@ -325,6 +325,27 @@ cellspacing="0" cellpadding="4"> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/gun/1.0/guide/start/"> + Starting and stopping + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/gun/1.0/guide/connect/"> + Connection + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/guide/start/index.html b/docs/en/gun/1.0/guide/start/index.html index 8132e14a..c63aeeb9 100644 --- a/docs/en/gun/1.0/guide/start/index.html +++ b/docs/en/gun/1.0/guide/start/index.html @@ -144,6 +144,27 @@ between the elements of the list.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/gun/1.0/guide/introduction/"> + Introduction + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/gun/1.0/guide/protocols/"> + Supported protocols + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/guide/websocket/index.html b/docs/en/gun/1.0/guide/websocket/index.html index 7131ceae..e0d8262a 100644 --- a/docs/en/gun/1.0/guide/websocket/index.html +++ b/docs/en/gun/1.0/guide/websocket/index.html @@ -191,6 +191,23 @@ message.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/gun/1.0/guide/http/"> + HTTP + </a> + + + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/manual/gun/index.html b/docs/en/gun/1.0/manual/gun/index.html index 91b965f3..9d0f8788 100644 --- a/docs/en/gun/1.0/manual/gun/index.html +++ b/docs/en/gun/1.0/manual/gun/index.html @@ -1666,6 +1666,8 @@ Frames = @todo + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/manual/gun_app/index.html b/docs/en/gun/1.0/manual/gun_app/index.html index 3a9fd6dd..ef2ec62e 100644 --- a/docs/en/gun/1.0/manual/gun_app/index.html +++ b/docs/en/gun/1.0/manual/gun_app/index.html @@ -100,6 +100,8 @@ environment configuration parameters.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/gun/1.0/manual/index.html b/docs/en/gun/1.0/manual/index.html index ed107dfa..68dddf30 100644 --- a/docs/en/gun/1.0/manual/index.html +++ b/docs/en/gun/1.0/manual/index.html @@ -84,6 +84,8 @@ + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/guide/embedded/index.html b/docs/en/ranch/1.2/guide/embedded/index.html index 1050b924..605e5f98 100644 --- a/docs/en/ranch/1.2/guide/embedded/index.html +++ b/docs/en/ranch/1.2/guide/embedded/index.html @@ -114,6 +114,27 @@ more details on how Ranch does it.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/ranch/1.2/guide/protocols/"> + Protocols + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/ranch/1.2/guide/parsers/"> + Writing parsers + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/guide/index.html b/docs/en/ranch/1.2/guide/index.html index 521b50a8..660570ce 100644 --- a/docs/en/ranch/1.2/guide/index.html +++ b/docs/en/ranch/1.2/guide/index.html @@ -114,6 +114,8 @@ + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/guide/internals/index.html b/docs/en/ranch/1.2/guide/internals/index.html index 5ccea757..84554e20 100644 --- a/docs/en/ranch/1.2/guide/internals/index.html +++ b/docs/en/ranch/1.2/guide/internals/index.html @@ -159,6 +159,23 @@ http://www.gnu.org/software/src-highlite --> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/ranch/1.2/guide/ssl_auth/"> + SSL client authentication + </a> + + + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/guide/introduction/index.html b/docs/en/ranch/1.2/guide/introduction/index.html index 3bc565d5..b45d8fa4 100644 --- a/docs/en/ranch/1.2/guide/introduction/index.html +++ b/docs/en/ranch/1.2/guide/introduction/index.html @@ -98,6 +98,23 @@ modifications but there is no guarantee that it will work as expected.</p></div> + + + + + <nav style="margin:1em 0"> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/ranch/1.2/guide/listeners/"> + Listeners + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/guide/listeners/index.html b/docs/en/ranch/1.2/guide/listeners/index.html index bf7956cd..c817a99c 100644 --- a/docs/en/ranch/1.2/guide/listeners/index.html +++ b/docs/en/ranch/1.2/guide/listeners/index.html @@ -353,6 +353,27 @@ http://www.gnu.org/software/src-highlite --> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/ranch/1.2/guide/introduction/"> + Introduction + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/ranch/1.2/guide/transports/"> + Transports + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/guide/parsers/index.html b/docs/en/ranch/1.2/guide/parsers/index.html index e8106b96..524d645f 100644 --- a/docs/en/ranch/1.2/guide/parsers/index.html +++ b/docs/en/ranch/1.2/guide/parsers/index.html @@ -175,6 +175,27 @@ immediately if any. Otherwise wait for more data.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/ranch/1.2/guide/embedded/"> + Embedded mode + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/ranch/1.2/guide/ssl_auth/"> + SSL client authentication + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/guide/protocols/index.html b/docs/en/ranch/1.2/guide/protocols/index.html index 55c6ecfa..7cb1b338 100644 --- a/docs/en/ranch/1.2/guide/protocols/index.html +++ b/docs/en/ranch/1.2/guide/protocols/index.html @@ -195,6 +195,27 @@ http://www.gnu.org/software/src-highlite --> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/ranch/1.2/guide/transports/"> + Transports + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/ranch/1.2/guide/embedded/"> + Embedded mode + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/guide/ssl_auth/index.html b/docs/en/ranch/1.2/guide/ssl_auth/index.html index 5d04b5b5..ee3b1edb 100644 --- a/docs/en/ranch/1.2/guide/ssl_auth/index.html +++ b/docs/en/ranch/1.2/guide/ssl_auth/index.html @@ -224,6 +224,27 @@ user.</p></div> + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/ranch/1.2/guide/parsers/"> + Writing parsers + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/ranch/1.2/guide/internals/"> + Internals + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/guide/transports/index.html b/docs/en/ranch/1.2/guide/transports/index.html index adb9edc9..4b6d05dc 100644 --- a/docs/en/ranch/1.2/guide/transports/index.html +++ b/docs/en/ranch/1.2/guide/transports/index.html @@ -255,6 +255,27 @@ is the transport’s module. See <code>ranch_ssl</code> for an example.</p>< + + + + + <nav style="margin:1em 0"> + + <a style="float:left" href="http://ninenines.eu/docs/en/ranch/1.2/guide/listeners/"> + Listeners + </a> + + + + <a style="float:right" href="http://ninenines.eu/docs/en/ranch/1.2/guide/protocols/"> + Protocols + </a> + + </nav> + + + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/manual/index.html b/docs/en/ranch/1.2/manual/index.html index ad311e04..0ee1cd10 100644 --- a/docs/en/ranch/1.2/manual/index.html +++ b/docs/en/ranch/1.2/manual/index.html @@ -104,6 +104,8 @@ + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/manual/ranch/index.html b/docs/en/ranch/1.2/manual/ranch/index.html index 8c4e4045..ec646294 100644 --- a/docs/en/ranch/1.2/manual/ranch/index.html +++ b/docs/en/ranch/1.2/manual/ranch/index.html @@ -489,6 +489,8 @@ completely stopped.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/manual/ranch_app/index.html b/docs/en/ranch/1.2/manual/ranch_app/index.html index 06a01a75..69de0340 100644 --- a/docs/en/ranch/1.2/manual/ranch_app/index.html +++ b/docs/en/ranch/1.2/manual/ranch_app/index.html @@ -109,6 +109,8 @@ and <em>total.profile</em>. Do not use in production.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/manual/ranch_protocol/index.html b/docs/en/ranch/1.2/manual/ranch_protocol/index.html index f9f388ea..80c1043a 100644 --- a/docs/en/ranch/1.2/manual/ranch_protocol/index.html +++ b/docs/en/ranch/1.2/manual/ranch_protocol/index.html @@ -149,6 +149,8 @@ processes and degrade performance severely.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/manual/ranch_ssl/index.html b/docs/en/ranch/1.2/manual/ranch_ssl/index.html index b63427ee..4cbea083 100644 --- a/docs/en/ranch/1.2/manual/ranch_ssl/index.html +++ b/docs/en/ranch/1.2/manual/ranch_ssl/index.html @@ -415,6 +415,8 @@ greater control over the client certificate validation.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/manual/ranch_tcp/index.html b/docs/en/ranch/1.2/manual/ranch_tcp/index.html index 8377d5ad..d1a201e1 100644 --- a/docs/en/ranch/1.2/manual/ranch_tcp/index.html +++ b/docs/en/ranch/1.2/manual/ranch_tcp/index.html @@ -340,6 +340,8 @@ portable. Use with caution.</p></div> + + </div> <div class="span3 sidecol"> diff --git a/docs/en/ranch/1.2/manual/ranch_transport/index.html b/docs/en/ranch/1.2/manual/ranch_transport/index.html index fc92ce34..ad1784fd 100644 --- a/docs/en/ranch/1.2/manual/ranch_transport/index.html +++ b/docs/en/ranch/1.2/manual/ranch_transport/index.html @@ -560,6 +560,8 @@ directly.</p></div> + + </div> <div class="span3 sidecol"> |