diff options
author | Zygmunt Krynicki <zygmunt.krynicki@canonical.com> | 2014-04-07 18:29:32 +0200 |
---|---|---|
committer | Zygmunt Krynicki <zygmunt.krynicki@canonical.com> | 2014-04-07 18:29:32 +0200 |
commit | 2aa4e8301ee0f7038476365be79357d211fa7816 (patch) | |
tree | e8e7aeffbe8d889a4f0497b1d5c6338b0fd42a31 /data/websites | |
parent | 071f7927e5a2aff9ad655a6eadaf964191aa1032 (diff) |
providers:checkbox: normalize provider directories
In addition to dropping the provider_ prefix from bin, data, whitelists and jobs two of the source files moved from bin/ to the new src/ directory. They are accompanied by a new, trivial Makefile. Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>
Diffstat (limited to 'data/websites')
-rw-r--r-- | data/websites/Flash_Video.flv | bin | 0 -> 316387 bytes | |||
l--------- | data/websites/PNG_Color_Image_Ubuntu.png | 1 | ||||
-rw-r--r-- | data/websites/SWF_Test.as | 14 | ||||
-rw-r--r-- | data/websites/SWF_Test.swf | bin | 0 -> 311 bytes | |||
-rw-r--r-- | data/websites/flashtest.html | 6 | ||||
-rw-r--r-- | data/websites/flashvideo.html | 6 | ||||
-rw-r--r-- | data/websites/html5_video.html | 14 | ||||
-rw-r--r-- | data/websites/testindex.html | 6 |
8 files changed, 47 insertions, 0 deletions
diff --git a/data/websites/Flash_Video.flv b/data/websites/Flash_Video.flv Binary files differnew file mode 100644 index 0000000..0b506e8 --- /dev/null +++ b/data/websites/Flash_Video.flv diff --git a/data/websites/PNG_Color_Image_Ubuntu.png b/data/websites/PNG_Color_Image_Ubuntu.png new file mode 120000 index 0000000..8c4535a --- /dev/null +++ b/data/websites/PNG_Color_Image_Ubuntu.png @@ -0,0 +1 @@ +../images/PNG_Color_Image_Ubuntu.png \ No newline at end of file diff --git a/data/websites/SWF_Test.as b/data/websites/SWF_Test.as new file mode 100644 index 0000000..41a7df2 --- /dev/null +++ b/data/websites/SWF_Test.as @@ -0,0 +1,14 @@ +// Run: mtasc -swf SWF_Test.swf -main -header 640:480:20 SWF_Test.as +class Test { + + static var app : Test; + + function Test() { + _root.createTextField("tf",0,0,0,640,480); + _root.tf.text = "Test"; + } + + static function main(mc) { + app = new Test(); + } +} diff --git a/data/websites/SWF_Test.swf b/data/websites/SWF_Test.swf Binary files differnew file mode 100644 index 0000000..92968c0 --- /dev/null +++ b/data/websites/SWF_Test.swf diff --git a/data/websites/flashtest.html b/data/websites/flashtest.html new file mode 100644 index 0000000..b53f7a7 --- /dev/null +++ b/data/websites/flashtest.html @@ -0,0 +1,6 @@ +<html> +<body> +<center> +<embed src="SWF_Test.swf" width="1280" height="960"></embed> +</center> +</body> diff --git a/data/websites/flashvideo.html b/data/websites/flashvideo.html new file mode 100644 index 0000000..7a1b02e --- /dev/null +++ b/data/websites/flashvideo.html @@ -0,0 +1,6 @@ +<html> +<body> +<center> +<embed src="Flash_Video.flv"></embed> +</center> +</body> diff --git a/data/websites/html5_video.html b/data/websites/html5_video.html new file mode 100644 index 0000000..51220df --- /dev/null +++ b/data/websites/html5_video.html @@ -0,0 +1,14 @@ +<html> +<head> +<title>HTML5 Video Test</title> +</head> +<body> +<div>This video will play in a loop and reload every 5 seconds</div> +<div> +<video width="320" height="240" controls autoplay loop> + <source src="../video/Ogg_Theora_Video.ogv" type="video/ogg" /> + Your browser does not support the video tag. +</video> +</div> +</body> +<html> diff --git a/data/websites/testindex.html b/data/websites/testindex.html new file mode 100644 index 0000000..c3e5d5a --- /dev/null +++ b/data/websites/testindex.html @@ -0,0 +1,6 @@ +<html> +<body> +<center> +<img src="PNG_Color_Image_Ubuntu.png" /> +</center> +</body> |