summaryrefslogtreecommitdiff
path: root/data/websites
diff options
authorZygmunt Krynicki <zygmunt.krynicki@canonical.com>2014-04-07 18:29:32 +0200
committerZygmunt Krynicki <zygmunt.krynicki@canonical.com>2014-04-07 18:29:32 +0200
commit2aa4e8301ee0f7038476365be79357d211fa7816 (patch)
treee8e7aeffbe8d889a4f0497b1d5c6338b0fd42a31 /data/websites
parent071f7927e5a2aff9ad655a6eadaf964191aa1032 (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.flvbin0 -> 316387 bytes
l---------data/websites/PNG_Color_Image_Ubuntu.png1
-rw-r--r--data/websites/SWF_Test.as14
-rw-r--r--data/websites/SWF_Test.swfbin0 -> 311 bytes
-rw-r--r--data/websites/flashtest.html6
-rw-r--r--data/websites/flashvideo.html6
-rw-r--r--data/websites/html5_video.html14
-rw-r--r--data/websites/testindex.html6
8 files changed, 47 insertions, 0 deletions
diff --git a/data/websites/Flash_Video.flv b/data/websites/Flash_Video.flv
new file mode 100644
index 00000000..0b506e83
--- /dev/null
+++ b/data/websites/Flash_Video.flv
Binary files differ
diff --git a/data/websites/PNG_Color_Image_Ubuntu.png b/data/websites/PNG_Color_Image_Ubuntu.png
new file mode 120000
index 00000000..8c4535aa
--- /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 00000000..41a7df21
--- /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
new file mode 100644
index 00000000..92968c09
--- /dev/null
+++ b/data/websites/SWF_Test.swf
Binary files differ
diff --git a/data/websites/flashtest.html b/data/websites/flashtest.html
new file mode 100644
index 00000000..b53f7a73
--- /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 00000000..7a1b02ea
--- /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 00000000..51220dfd
--- /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 00000000..c3e5d5af
--- /dev/null
+++ b/data/websites/testindex.html
@@ -0,0 +1,6 @@
+<html>
+<body>
+<center>
+<img src="PNG_Color_Image_Ubuntu.png" />
+</center>
+</body>