mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
92 lines
2.2 KiB
Text
92 lines
2.2 KiB
Text
// a2x: --dblatex-opts "-P latex.output.revhistory=0 -P doc.publisher.show=0 -P index.numbered=0"
|
|
// a2x: --dblatex-opts "-s cowboy"
|
|
// a2x: -d book --attribute tabsize=4
|
|
|
|
= Cowboy User Guide
|
|
|
|
// REST: where should i handle bindings? init, probably. qs? in media type functions
|
|
// REST: explain how a module per media type is good; module may be shared between client/server
|
|
|
|
= Rationale
|
|
|
|
include::modern_web.asciidoc[The modern Web]
|
|
|
|
include::erlang_web.asciidoc[Erlang and the Web]
|
|
|
|
= Introduction
|
|
|
|
include::introduction.asciidoc[Introduction]
|
|
|
|
include::getting_started.asciidoc[Getting started]
|
|
|
|
include::flow_diagram.asciidoc[Flow diagram]
|
|
|
|
= Configuration
|
|
|
|
include::listeners.asciidoc[Listeners]
|
|
|
|
include::routing.asciidoc[Routing]
|
|
|
|
include::constraints.asciidoc[Constraints]
|
|
|
|
= Handlers
|
|
|
|
include::handlers.asciidoc[Handlers]
|
|
|
|
include::loop_handlers.asciidoc[Loop handlers]
|
|
|
|
include::static_files.asciidoc[Static files]
|
|
|
|
= Request and response
|
|
|
|
include::req.asciidoc[Request details]
|
|
|
|
include::req_body.asciidoc[Reading the request body]
|
|
|
|
include::resp.asciidoc[Sending a response]
|
|
|
|
include::cookies.asciidoc[Using cookies]
|
|
|
|
include::multipart.asciidoc[Multipart]
|
|
|
|
= REST
|
|
|
|
include::rest_principles.asciidoc[REST principles]
|
|
|
|
include::rest_handlers.asciidoc[Handling REST requests]
|
|
|
|
include::rest_flowcharts.asciidoc[REST flowcharts]
|
|
|
|
include::resource_design.asciidoc[Designing a resource handler]
|
|
|
|
= Websocket
|
|
|
|
include::ws_protocol.asciidoc[The Websocket protocol]
|
|
|
|
include::ws_handlers.asciidoc[Websocket handlers]
|
|
|
|
= Advanced
|
|
|
|
include::streams.asciidoc[Streams]
|
|
|
|
include::middlewares.asciidoc[Middlewares]
|
|
|
|
= Additional information
|
|
|
|
include::migrating_from_2.6.asciidoc[Migrating from Cowboy 2.6 to 2.7]
|
|
|
|
include::migrating_from_2.5.asciidoc[Migrating from Cowboy 2.5 to 2.6]
|
|
|
|
include::migrating_from_2.4.asciidoc[Migrating from Cowboy 2.4 to 2.5]
|
|
|
|
include::migrating_from_2.3.asciidoc[Migrating from Cowboy 2.3 to 2.4]
|
|
|
|
include::migrating_from_2.2.asciidoc[Migrating from Cowboy 2.2 to 2.3]
|
|
|
|
include::migrating_from_2.1.asciidoc[Migrating from Cowboy 2.1 to 2.2]
|
|
|
|
include::migrating_from_2.0.asciidoc[Migrating from Cowboy 2.0 to 2.1]
|
|
|
|
include::migrating_from_1.0.asciidoc[Migrating from Cowboy 1.0 to 2.0]
|
|
|
|
include::specs.asciidoc[HTTP and other specifications]
|