mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
Fix the list of registered processes in the examples
This commit is contained in:
parent
bbe42d9bc5
commit
1a4e7a8618
17 changed files with 17 additions and 17 deletions
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy Chunked Hello World example."},
|
{description, "Cowboy Chunked Hello World example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [chunked_hello_world_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy Compress Response example."},
|
{description, "Cowboy Compress Response example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [compress_response_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy Cookie example."},
|
{description, "Cowboy Cookie example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [cookie_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy GET echo example."},
|
{description, "Cowboy GET echo example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [echo_get_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy POST echo example."},
|
{description, "Cowboy POST echo example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [echo_post_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy error handler example."},
|
{description, "Cowboy error handler example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [error_hook_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy EventSource example."},
|
{description, "Cowboy EventSource example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [eventsource_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy Hello World example."},
|
{description, "Cowboy Hello World example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [hello_world_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy static file handler example with middleware component."},
|
{description, "Cowboy static file handler example with middleware component."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [markdown_middleware_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy Basic HTTP Authorization example."},
|
{description, "Cowboy Basic HTTP Authorization example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [rest_basic_auth_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy REST Hello World example."},
|
{description, "Cowboy REST Hello World example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [rest_hello_world_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy REST Pastebin example inspired by sprunge."},
|
{description, "Cowboy REST Pastebin example inspired by sprunge."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [rest_pastebin_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy REST with streaming."},
|
{description, "Cowboy REST with streaming."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [rest_stream_response_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy Hello World example with SSL."},
|
{description, "Cowboy Hello World example with SSL."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [ssl_hello_world_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy static file handler example."},
|
{description, "Cowboy static file handler example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [static_world_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy static file handler with directory indexes."},
|
{description, "Cowboy static file handler with directory indexes."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [web_server_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{description, "Cowboy websocket example."},
|
{description, "Cowboy websocket example."},
|
||||||
{vsn, "1"},
|
{vsn, "1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, [websocket_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue