diff --git a/examples/custom.html b/examples/custom.html deleted file mode 100644 index 3850ade..0000000 --- a/examples/custom.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - -Plupload - Custom example - - - - - - - - - - -

Custom example

- -

Shows you how to use the core plupload API.

- -
Your browser doesn't have Flash, Silverlight or HTML5 support.
-
- -
- [Select files] - [Upload files] -
- -
-

-
-
-
-
-
diff --git a/examples/dump.php b/examples/dump.php
deleted file mode 100644
index 3ce4471..0000000
--- a/examples/dump.php
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-Plupload - Form dump
-
-
-	
-

Post dump

- -

Shows the form items posted.

- - - - - - - $value) { ?> - - - - - -
NameValue
- - - diff --git a/examples/events.html b/examples/events.html deleted file mode 100644 index dd05e75..0000000 --- a/examples/events.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - -Plupload - Events example - - - - - - - - - - -

Events example

- -
- [Select files] - [Upload files] -
- -
-

- 
-
-
-
\ No newline at end of file
diff --git a/examples/jquery/all_runtimes.html b/examples/jquery/all_runtimes.html
deleted file mode 100644
index ea44a9b..0000000
--- a/examples/jquery/all_runtimes.html
+++ /dev/null
@@ -1,139 +0,0 @@
-
-
-
-
-
-Plupload - Queue widget example
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Queue widget example

- -

Shows the jQuery Plupload Queue widget and under different runtimes.

- -
-

Flash runtime

-
Your browser doesn't have Flash installed.
- -

Silverlight runtime

-
Your browser doesn't have Silverlight installed.
-
- -
-

HTML 4 runtime

-
Your browser doesn't have HTML 4 support.
- -

HTML 5 runtime

-
Your browser doesn't support native upload.
-
- -
- - -
- - - - - diff --git a/examples/jquery/jquery_ui_widget.html b/examples/jquery/jquery_ui_widget.html deleted file mode 100644 index 1beb6c1..0000000 --- a/examples/jquery/jquery_ui_widget.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - -Plupload - jQuery UI Widget - - - - - - - - - - - - - - - - -

jQuery UI Widget

- -

You can see this example with different themes on the www.plupload.com website.

- -
-
-

Your browser doesn't have Flash, Silverlight or HTML5 support.

-
-
- -
- - - - diff --git a/examples/jquery/queue_widget.html b/examples/jquery/queue_widget.html deleted file mode 100644 index 4855287..0000000 --- a/examples/jquery/queue_widget.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - -Plupload - Queue widget example - - - - - - - - - - - - - - - -
-
-

Your browser doesn't have Flash, Silverlight or HTML5 support.

-
- -
- - - - - diff --git a/examples/jquery/s3.php b/examples/jquery/s3.php deleted file mode 100644 index a46f1db..0000000 --- a/examples/jquery/s3.php +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - -In our tests SilverLight didn't require anything special and worked with this configuration just fine. It may fail back -to the same crossdomain.xml as last resort. - -!!!Important!!! Plupload UI Widget here, is used only for demo purposes and is not required for uploading to S3. -*/ - -// important variables that will be used throughout this example -$bucket = 'BUCKET'; - -// these can be found on your Account page, under Security Credentials > Access Keys -$accessKeyId = 'ACCESS_KEY_ID'; -$secret = 'SECRET_ACCESS_KEY'; - -// prepare policy -$policy = base64_encode(json_encode(array( - // ISO 8601 - date('c'); generates uncompatible date, so better do it manually - 'expiration' => date('Y-m-d\TH:i:s.000\Z', strtotime('+1 day')), - 'conditions' => array( - array('bucket' => $bucket), - array('acl' => 'public-read'), - array('starts-with', '$key', ''), - // for demo purposes we are accepting only images - array('starts-with', '$Content-Type', 'image/'), - // Plupload internally adds name field, so we need to mention it here - array('starts-with', '$name', ''), - // One more field to take into account: Filename - gets silently sent by FileReference.upload() in Flash - // http://docs.amazonwebservices.com/AmazonS3/latest/dev/HTTPPOSTFlash.html - array('starts-with', '$Filename', ''), - ) -))); - -// sign policy -$signature = base64_encode(hash_hmac('sha1', $policy, $secret, true)); - -?> - - - - - -Plupload to Amazon S3 Example - - - - - - - - - - - - - - - - - - -

Plupload to Amazon S3 Example

- -
-

Your browser doesn't have Flash, Silverlight or HTML5 support.

-
- - - - - diff --git a/examples/upload.php b/examples/upload.php deleted file mode 100644 index 0b7276c..0000000 --- a/examples/upload.php +++ /dev/null @@ -1,125 +0,0 @@ -