aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-09-09 16:46:21 +0200
committerLoïc Hoguin <[email protected]>2013-09-09 16:46:21 +0200
commit1a4e7a86185021f1f1eb50b3fde5043570da3f94 (patch)
tree1e562eda881ba43b34ddcc76d14017723afe66e2 /examples
parentbbe42d9bc5a2655daea2f4d099c002c93ae715b7 (diff)
downloadcowboy-1a4e7a86185021f1f1eb50b3fde5043570da3f94.tar.gz
cowboy-1a4e7a86185021f1f1eb50b3fde5043570da3f94.tar.bz2
cowboy-1a4e7a86185021f1f1eb50b3fde5043570da3f94.zip
Fix the list of registered processes in the examples
Diffstat (limited to 'examples')
-rw-r--r--examples/chunked_hello_world/src/chunked_hello_world.app.src2
-rw-r--r--examples/compress_response/src/compress_response.app.src2
-rw-r--r--examples/cookie/src/cookie.app.src2
-rw-r--r--examples/echo_get/src/echo_get.app.src2
-rw-r--r--examples/echo_post/src/echo_post.app.src2
-rw-r--r--examples/error_hook/src/error_hook.app.src2
-rw-r--r--examples/eventsource/src/eventsource.app.src2
-rw-r--r--examples/hello_world/src/hello_world.app.src2
-rw-r--r--examples/markdown_middleware/src/markdown_middleware.app.src2
-rw-r--r--examples/rest_basic_auth/src/rest_basic_auth.app.src2
-rw-r--r--examples/rest_hello_world/src/rest_hello_world.app.src2
-rw-r--r--examples/rest_pastebin/src/rest_pastebin.app.src2
-rw-r--r--examples/rest_stream_response/src/rest_stream_response.app.src2
-rw-r--r--examples/ssl_hello_world/src/ssl_hello_world.app.src2
-rw-r--r--examples/static_world/src/static_world.app.src2
-rw-r--r--examples/web_server/src/web_server.app.src2
-rw-r--r--examples/websocket/src/websocket.app.src2
17 files changed, 17 insertions, 17 deletions
diff --git a/examples/chunked_hello_world/src/chunked_hello_world.app.src b/examples/chunked_hello_world/src/chunked_hello_world.app.src
index 1a6c03b..3bd7556 100644
--- a/examples/chunked_hello_world/src/chunked_hello_world.app.src
+++ b/examples/chunked_hello_world/src/chunked_hello_world.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy Chunked Hello World example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [chunked_hello_world_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/compress_response/src/compress_response.app.src b/examples/compress_response/src/compress_response.app.src
index 3512084..2f11ef1 100644
--- a/examples/compress_response/src/compress_response.app.src
+++ b/examples/compress_response/src/compress_response.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy Compress Response example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [compress_response_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/cookie/src/cookie.app.src b/examples/cookie/src/cookie.app.src
index b7098f0..192d907 100644
--- a/examples/cookie/src/cookie.app.src
+++ b/examples/cookie/src/cookie.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy Cookie example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [cookie_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/echo_get/src/echo_get.app.src b/examples/echo_get/src/echo_get.app.src
index ecbf01a..fd5646c 100644
--- a/examples/echo_get/src/echo_get.app.src
+++ b/examples/echo_get/src/echo_get.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy GET echo example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [echo_get_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/echo_post/src/echo_post.app.src b/examples/echo_post/src/echo_post.app.src
index 74ff7f3..92c71ff 100644
--- a/examples/echo_post/src/echo_post.app.src
+++ b/examples/echo_post/src/echo_post.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy POST echo example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [echo_post_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/error_hook/src/error_hook.app.src b/examples/error_hook/src/error_hook.app.src
index 80a1f2b..728fd35 100644
--- a/examples/error_hook/src/error_hook.app.src
+++ b/examples/error_hook/src/error_hook.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy error handler example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [error_hook_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/eventsource/src/eventsource.app.src b/examples/eventsource/src/eventsource.app.src
index 002ea85..5018168 100644
--- a/examples/eventsource/src/eventsource.app.src
+++ b/examples/eventsource/src/eventsource.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy EventSource example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [eventsource_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/hello_world/src/hello_world.app.src b/examples/hello_world/src/hello_world.app.src
index eeab835..7512a2f 100644
--- a/examples/hello_world/src/hello_world.app.src
+++ b/examples/hello_world/src/hello_world.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy Hello World example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [hello_world_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/markdown_middleware/src/markdown_middleware.app.src b/examples/markdown_middleware/src/markdown_middleware.app.src
index d582399..56f26af 100644
--- a/examples/markdown_middleware/src/markdown_middleware.app.src
+++ b/examples/markdown_middleware/src/markdown_middleware.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy static file handler example with middleware component."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [markdown_middleware_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/rest_basic_auth/src/rest_basic_auth.app.src b/examples/rest_basic_auth/src/rest_basic_auth.app.src
index d715b6a..c5f836b 100644
--- a/examples/rest_basic_auth/src/rest_basic_auth.app.src
+++ b/examples/rest_basic_auth/src/rest_basic_auth.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy Basic HTTP Authorization example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [rest_basic_auth_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/rest_hello_world/src/rest_hello_world.app.src b/examples/rest_hello_world/src/rest_hello_world.app.src
index 81446bd..0c786e8 100644
--- a/examples/rest_hello_world/src/rest_hello_world.app.src
+++ b/examples/rest_hello_world/src/rest_hello_world.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy REST Hello World example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [rest_hello_world_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/rest_pastebin/src/rest_pastebin.app.src b/examples/rest_pastebin/src/rest_pastebin.app.src
index 7701ebe..aae6146 100644
--- a/examples/rest_pastebin/src/rest_pastebin.app.src
+++ b/examples/rest_pastebin/src/rest_pastebin.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy REST Pastebin example inspired by sprunge."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [rest_pastebin_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/rest_stream_response/src/rest_stream_response.app.src b/examples/rest_stream_response/src/rest_stream_response.app.src
index 4a458b8..bf734ab 100644
--- a/examples/rest_stream_response/src/rest_stream_response.app.src
+++ b/examples/rest_stream_response/src/rest_stream_response.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy REST with streaming."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [rest_stream_response_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/ssl_hello_world/src/ssl_hello_world.app.src b/examples/ssl_hello_world/src/ssl_hello_world.app.src
index d628b68..30faecb 100644
--- a/examples/ssl_hello_world/src/ssl_hello_world.app.src
+++ b/examples/ssl_hello_world/src/ssl_hello_world.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy Hello World example with SSL."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [ssl_hello_world_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/static_world/src/static_world.app.src b/examples/static_world/src/static_world.app.src
index b65995d..879801d 100644
--- a/examples/static_world/src/static_world.app.src
+++ b/examples/static_world/src/static_world.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy static file handler example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [static_world_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/web_server/src/web_server.app.src b/examples/web_server/src/web_server.app.src
index b4326d7..f503422 100644
--- a/examples/web_server/src/web_server.app.src
+++ b/examples/web_server/src/web_server.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy static file handler with directory indexes."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [web_server_sup]},
{applications, [
kernel,
stdlib,
diff --git a/examples/websocket/src/websocket.app.src b/examples/websocket/src/websocket.app.src
index 4fa4f78..c6ada82 100644
--- a/examples/websocket/src/websocket.app.src
+++ b/examples/websocket/src/websocket.app.src
@@ -4,7 +4,7 @@
{description, "Cowboy websocket example."},
{vsn, "1"},
{modules, []},
- {registered, []},
+ {registered, [websocket_sup]},
{applications, [
kernel,
stdlib,