aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/manual/cowboy_router.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-01-14 13:35:25 +0100
committerLoïc Hoguin <[email protected]>2016-01-14 13:37:20 +0100
commit4023e7f4e429179fd9c2cce4487c33646c6bd327 (patch)
tree3c4e26d1b5592958e35297c82ad3069bdb642594 /doc/src/manual/cowboy_router.asciidoc
parentb7d666cfc746f55b0a72ef8d37f703885099daf7 (diff)
downloadcowboy-4023e7f4e429179fd9c2cce4487c33646c6bd327.tar.gz
cowboy-4023e7f4e429179fd9c2cce4487c33646c6bd327.tar.bz2
cowboy-4023e7f4e429179fd9c2cce4487c33646c6bd327.zip
Convert the documentation to Asciidoc
A few small revisions were made, and Erlang.mk has been updated.
Diffstat (limited to 'doc/src/manual/cowboy_router.asciidoc')
-rw-r--r--doc/src/manual/cowboy_router.asciidoc56
1 files changed, 56 insertions, 0 deletions
diff --git a/doc/src/manual/cowboy_router.asciidoc b/doc/src/manual/cowboy_router.asciidoc
new file mode 100644
index 0000000..9142930
--- /dev/null
+++ b/doc/src/manual/cowboy_router.asciidoc
@@ -0,0 +1,56 @@
+= cowboy_router(3)
+
+== Name
+
+cowboy_router - router middleware
+
+== Description
+
+The `cowboy_router` middleware maps the requested host and
+path to the handler to be used for processing the request.
+It uses the dispatch rules compiled from the routes given
+to the `compile/1` function for this purpose. It adds the
+handler name and options to the environment as the values
+`handler` and `handler_opts` respectively.
+
+=== Environment input
+
+dispatch = dispatch_rules():: Dispatch table.
+
+=== Environment output
+
+handler = module():: Handler module.
+handler_opts = any():: Handler options.
+
+== Types
+
+=== bindings() = [{atom(), binary()}]
+
+List of bindings found during routing.
+
+=== dispatch_rules() - opaque to the user
+
+Rules for dispatching request used by Cowboy.
+
+=== routes() = [{Host, Paths} | {Host, cowboy:fields(), Paths}]
+
+With types:
+
+* Host = Path = '_' | iodata()
+* Paths = [{Path, Handler, Opts} | {Path, cowboy:fields(), Handler, HandlerOpts}]
+* Handler = module()
+* HandlerOpts = any()
+
+Human readable list of routes mapping hosts and paths to handlers.
+
+The syntax for routes is defined in the user guide.
+
+=== tokens() = [binary()]
+
+List of host_info and path_info tokens found during routing.
+
+== Exports
+
+=== compile(routes()) -> dispatch_rules()
+
+Compile the routes for use by Cowboy.