diff options
| author | Loïc Hoguin <[email protected]> | 2013-01-29 14:47:17 +0100 | 
|---|---|---|
| committer | Loïc Hoguin <[email protected]> | 2013-01-29 14:47:17 +0100 | 
| commit | ab0699ab29b6750d19cf2e0fce03e185d2206e9d (patch) | |
| tree | e7be2893e989ca4dd85d90bea63098bbfcf96c9f | |
| parent | 638638a841f22eacbebd827c0fb40002358bf1ac (diff) | |
| download | cowboy-ab0699ab29b6750d19cf2e0fce03e185d2206e9d.tar.gz cowboy-ab0699ab29b6750d19cf2e0fce03e185d2206e9d.tar.bz2 cowboy-ab0699ab29b6750d19cf2e0fce03e185d2206e9d.zip  | |
Make examples use the new routing
| -rw-r--r-- | examples/chunked_hello_world/src/chunked_hello_world_app.erl | 6 | ||||
| -rw-r--r-- | examples/compress_response/src/compress_response_app.erl | 6 | ||||
| -rw-r--r-- | examples/cookie/src/cookie_app.erl | 4 | ||||
| -rw-r--r-- | examples/echo_get/src/echo_get_app.erl | 6 | ||||
| -rw-r--r-- | examples/echo_post/src/echo_post_app.erl | 6 | ||||
| -rw-r--r-- | examples/hello_world/src/hello_world_app.erl | 6 | ||||
| -rw-r--r-- | examples/rest_hello_world/src/rest_hello_world_app.erl | 6 | ||||
| -rw-r--r-- | examples/static/src/static_app.erl | 6 | 
8 files changed, 23 insertions, 23 deletions
diff --git a/examples/chunked_hello_world/src/chunked_hello_world_app.erl b/examples/chunked_hello_world/src/chunked_hello_world_app.erl index bdb073f..0032d01 100644 --- a/examples/chunked_hello_world/src/chunked_hello_world_app.erl +++ b/examples/chunked_hello_world/src/chunked_hello_world_app.erl @@ -11,11 +11,11 @@  %% API.  start(_Type, _Args) -> -	Dispatch = [ +	Dispatch = cowboy_router:compile([  		{'_', [ -			{[], toppage_handler, []} +			{"/", toppage_handler, []}  		]} -	], +	]),  	{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [  		{env, [{dispatch, Dispatch}]}  	]), diff --git a/examples/compress_response/src/compress_response_app.erl b/examples/compress_response/src/compress_response_app.erl index b5f3054..b36dcbd 100644 --- a/examples/compress_response/src/compress_response_app.erl +++ b/examples/compress_response/src/compress_response_app.erl @@ -11,11 +11,11 @@  %% API.  start(_Type, _Args) -> -	Dispatch = [ +	Dispatch = cowboy_router:compile([  		{'_', [ -			{[], toppage_handler, []} +			{"/", toppage_handler, []}  		]} -	], +	]),  	{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [  		{compress, true},  		{env, [{dispatch, Dispatch}]} diff --git a/examples/cookie/src/cookie_app.erl b/examples/cookie/src/cookie_app.erl index e527fb1..91d1b95 100644 --- a/examples/cookie/src/cookie_app.erl +++ b/examples/cookie/src/cookie_app.erl @@ -11,11 +11,11 @@  %% API.  start(_Type, _Args) -> -	Dispatch = [ +	Dispatch = cowboy_router:compile([  		{'_', [  			{'_', toppage_handler, []}  		]} -	], +	]),  	{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [  		{env, [{dispatch, Dispatch}]}  	]), diff --git a/examples/echo_get/src/echo_get_app.erl b/examples/echo_get/src/echo_get_app.erl index b8def14..d661e9c 100644 --- a/examples/echo_get/src/echo_get_app.erl +++ b/examples/echo_get/src/echo_get_app.erl @@ -11,11 +11,11 @@  %% API.  start(_Type, _Args) -> -	Dispatch = [ +	Dispatch = cowboy_router:compile([  		{'_', [ -			{[], toppage_handler, []} +			{"/", toppage_handler, []}  		]} -	], +	]),  	{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [  		{env, [{dispatch, Dispatch}]}  	]), diff --git a/examples/echo_post/src/echo_post_app.erl b/examples/echo_post/src/echo_post_app.erl index 83b4b3f..7d86c53 100644 --- a/examples/echo_post/src/echo_post_app.erl +++ b/examples/echo_post/src/echo_post_app.erl @@ -11,11 +11,11 @@  %% API.  start(_Type, _Args) -> -	Dispatch = [ +	Dispatch = cowboy_router:compile([  		{'_', [ -			{[], toppage_handler, []} +			{"/", toppage_handler, []}  		]} -	], +	]),  	{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [  		{env, [{dispatch, Dispatch}]}  	]), diff --git a/examples/hello_world/src/hello_world_app.erl b/examples/hello_world/src/hello_world_app.erl index ac86327..eb938d3 100644 --- a/examples/hello_world/src/hello_world_app.erl +++ b/examples/hello_world/src/hello_world_app.erl @@ -11,11 +11,11 @@  %% API.  start(_Type, _Args) -> -	Dispatch = [ +	Dispatch = cowboy_router:compile([  		{'_', [ -			{[], toppage_handler, []} +			{"/", toppage_handler, []}  		]} -	], +	]),  	{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [  		{env, [{dispatch, Dispatch}]}  	]), diff --git a/examples/rest_hello_world/src/rest_hello_world_app.erl b/examples/rest_hello_world/src/rest_hello_world_app.erl index c7f608c..a662c3d 100644 --- a/examples/rest_hello_world/src/rest_hello_world_app.erl +++ b/examples/rest_hello_world/src/rest_hello_world_app.erl @@ -11,11 +11,11 @@  %% API.  start(_Type, _Args) -> -	Dispatch = [ +	Dispatch = cowboy_router:compile([  		{'_', [ -			{[], toppage_handler, []} +			{"/", toppage_handler, []}  		]} -	], +	]),  	{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [  		{env, [{dispatch, Dispatch}]}  	]), diff --git a/examples/static/src/static_app.erl b/examples/static/src/static_app.erl index e147db9..a2b9c31 100644 --- a/examples/static/src/static_app.erl +++ b/examples/static/src/static_app.erl @@ -11,14 +11,14 @@  %% API.  start(_Type, _Args) -> -	Dispatch = [ +	Dispatch = cowboy_router:compile([  		{'_', [ -			{['...'], cowboy_static, [ +			{"/[...]", cowboy_static, [  				{directory, {priv_dir, static, []}},  				{mimetypes, {fun mimetypes:path_to_mimes/2, default}}  			]}   		]} -	], +	]),  	{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [  		{env, [{dispatch, Dispatch}]}  	]),  | 
