diff options
author | Loïc Hoguin <[email protected]> | 2016-06-13 13:23:22 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-06-13 13:26:24 +0200 |
commit | 88227898edd26a823d0942fc7226adb61a20cb5d (patch) | |
tree | af1aeb41e7b92145b3be017cfdf18bf66f4a8e6e /examples/static_world/priv | |
parent | 4293a40d9e922bc00f25d6c7e328f86e102275a0 (diff) | |
download | cowboy-88227898edd26a823d0942fc7226adb61a20cb5d.tar.gz cowboy-88227898edd26a823d0942fc7226adb61a20cb5d.tar.bz2 cowboy-88227898edd26a823d0942fc7226adb61a20cb5d.zip |
Merge static_world and web_server examples
The new example is called file_server and it's basically
the same as web_server was. The name is clearer than the
original, all examples being "Web servers".
The new example is also tested and the test suite has
been refactored a little.
Diffstat (limited to 'examples/static_world/priv')
-rw-r--r-- | examples/static_world/priv/index.html | 1 | ||||
-rw-r--r-- | examples/static_world/priv/small.mp4 | bin | 383631 -> 0 bytes | |||
-rw-r--r-- | examples/static_world/priv/small.ogv | bin | 872453 -> 0 bytes | |||
-rw-r--r-- | examples/static_world/priv/test.txt | 1 | ||||
-rw-r--r-- | examples/static_world/priv/video.html | 11 |
5 files changed, 0 insertions, 13 deletions
diff --git a/examples/static_world/priv/index.html b/examples/static_world/priv/index.html deleted file mode 100644 index 2ebe508..0000000 --- a/examples/static_world/priv/index.html +++ /dev/null @@ -1 +0,0 @@ -<h1>Howdy, Pardner</h1> diff --git a/examples/static_world/priv/small.mp4 b/examples/static_world/priv/small.mp4 Binary files differdeleted file mode 100644 index 1fc4788..0000000 --- a/examples/static_world/priv/small.mp4 +++ /dev/null diff --git a/examples/static_world/priv/small.ogv b/examples/static_world/priv/small.ogv Binary files differdeleted file mode 100644 index 6409d6e..0000000 --- a/examples/static_world/priv/small.ogv +++ /dev/null diff --git a/examples/static_world/priv/test.txt b/examples/static_world/priv/test.txt deleted file mode 100644 index 760cddb..0000000 --- a/examples/static_world/priv/test.txt +++ /dev/null @@ -1 +0,0 @@ -If you read this then the static file server works! diff --git a/examples/static_world/priv/video.html b/examples/static_world/priv/video.html deleted file mode 100644 index eca63ee..0000000 --- a/examples/static_world/priv/video.html +++ /dev/null @@ -1,11 +0,0 @@ -<!DOCTYPE html> -<html> -<body> - <h1>HTML5 Video Example</h1> - <video controls> - <source src="small.ogv" type="video/ogg"/> - <source src="small.mp4" type="video/mp4"/> - </video> - <p>Videos taken from <a href="http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5/">TechSlides</a></p> -</body> -</html> |