Вход Регистрация
Файл: themes/classic/js/jQuery-File-Upload/test/index.html
Строк: 197
<?php
<!DOCTYPE HTML>
<!--
/*
 * jQuery File Upload Plugin Test 8.0
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2010, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */
-->
<
html lang="en">
<
head>
<!-- 
Force latest IE rendering engine or ChromeFrame if installed -->
<!--[if 
IE]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><![endif]-->
<
meta charset="utf-8">
<
title>jQuery File Upload Plugin Test</title>
<
meta name="viewport" content="width=device-width, initial-scale=1.0">
<
link rel="stylesheet" href="http://code.jquery.com/qunit/git/qunit.css">
</
head>
<
body>
<
h1 id="qunit-header">jQuery File Upload Plugin Test</h1>
<
h2 id="qunit-banner"></h2>
<
div id="qunit-testrunner-toolbar"></div>
<
h2 id="qunit-userAgent"></h2>
<
ol id="qunit-tests"></ol>
<
div id="qunit-fixture">
    <!-- 
The file upload form used as target for the file upload widget -->
    <
form id="fileupload" action="../server/php/" method="POST" enctype="multipart/form-data">
        <!-- 
The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
        <
div class="row fileupload-buttonbar">
            <
div class="span7">
                <!-- 
The fileinput-button span is used to style the file input field as button -->
                <
span class="btn btn-success fileinput-button">
                    <
class="icon-plus icon-white"></i>
                    <
span>Add files...</span>
                    <
input type="file" name="files[]" multiple>
                </
span>
                <
button type="submit" class="btn btn-primary start">
                    <
class="icon-upload icon-white"></i>
                    <
span>Start upload</span>
                </
button>
                <
button type="reset" class="btn btn-warning cancel">
                    <
class="icon-ban-circle icon-white"></i>
                    <
span>Cancel upload</span>
                </
button>
                <
button type="button" class="btn btn-danger delete">
                    <
class="icon-trash icon-white"></i>
                    <
span>Delete</span>
                </
button>
                <
input type="checkbox" class="toggle">
                <!-- 
The loading indicator is shown during file processing -->
                <
span class="fileupload-loading"></span>
            </
div>
            <!-- 
The global progress information -->
            <
div class="span5 fileupload-progress">
                <!-- 
The global progress bar -->
                <
div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100">
                    <
div class="bar" style="width:0%;"></div>
                </
div>
                <!-- 
The extended global progress information -->
                <
div class="progress-extended">&nbsp;</div>
            </
div>
        </
div>
        <!-- 
The table listing the files available for upload/download -->
        <
table role="presentation" class="table table-striped"><tbody class="files" data-toggle="modal-gallery" data-target="#modal-gallery"></tbody></table>
    </
form>
</
div>
<!-- 
The template to display files available for upload -->
<
script id="template-upload" type="text/x-tmpl">
{% for (var 
i=0filefile=o.files[i]; i++) { %}
    <
tr class="template-upload">
        <
td>
            <
span class="preview"></span>
        </
td>
        <
td>
            <
class="name">{%=file.name%}</p>
            {% if (
file.error) { %}
                <
div><span class="label label-important">Error</span> {%=file.error%}</div>
            {% } %}
        </
td>
        <
td>
            <
class="size">{%=o.formatFileSize(file.size)%}</p>
            {% if (!
o.files.error) { %}
                <
div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="bar" style="width:0%;"></div></div>
            {% } %}
        </
td>
        <
td>
            {% if (!
o.files.error && !&& !o.options.autoUpload) { %}
                <
button class="btn btn-primary start">
                    <
class="icon-upload icon-white"></i>
                    <
span>Start</span>
                </
button>
            {% } %}
            {% if (!
i) { %}
                <
button class="btn btn-warning cancel">
                    <
class="icon-ban-circle icon-white"></i>
                    <
span>Cancel</span>
                </
button>
            {% } %}
        </
td>
    </
tr>
{% } %}
</
script>
<!-- 
The template to display files available for download -->
<
script id="template-download" type="text/x-tmpl">
{% for (var 
i=0filefile=o.files[i]; i++) { %}
    <
tr class="template-download">
        <
td>
            <
span class="preview">
                {% if (
file.thumbnail_url) { %}
                    <
a href="{%=file.url%}" title="{%=file.name%}" data-gallery="gallery" download="{%=file.name%}"><img src="{%=file.thumbnail_url%}"></a>
                {% } %}
            </
span>
        </
td>
        <
td>
            <
class="name">
                <
a href="{%=file.url%}" title="{%=file.name%}" data-gallery="{%=file.thumbnail_url&&'gallery'%}" download="{%=file.name%}">{%=file.name%}</a>
            </
p>
            {% if (
file.error) { %}
                <
div><span class="label label-important">Error</span> {%=file.error%}</div>
            {% } %}
        </
td>
        <
td>
            <
span class="size">{%=o.formatFileSize(file.size)%}</span>
        </
td>
        <
td>
            <
button class="btn btn-danger delete" data-type="{%=file.delete_type%}" data-url="{%=file.delete_url%}"{% if (file.delete_with_credentials) { %} data-xhr-fields='{"withCredentials":true}'{% } %}>
                <
class="icon-trash icon-white"></i>
                <
span>Delete</span>
            </
button>
            <
input type="checkbox" name="delete" value="1" class="toggle">
        </
td>
    </
tr>
{% } %}
</
script>
<
script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<
script src="../js/vendor/jquery.ui.widget.js"></script>
<
script src="http://blueimp.github.com/JavaScript-Templates/tmpl.min.js"></script>
<
script src="http://blueimp.github.com/JavaScript-Load-Image/load-image.min.js"></script>
<
script src="http://blueimp.github.com/JavaScript-Canvas-to-Blob/canvas-to-blob.min.js"></script>
<
script src="../js/jquery.iframe-transport.js"></script>
<
script src="../js/jquery.fileupload.js"></script>
<
script>window.testBasicWidget = $.blueimp.fileupload;</script>
<
script src="../js/jquery.fileupload-process.js"></script>
<
script src="../js/jquery.fileupload-resize.js"></script>
<
script src="../js/jquery.fileupload-validate.js"></script>
<
script src="../js/jquery.fileupload-ui.js"></script>
<
script>window.testUIWidget = $.blueimp.fileupload;</script>
<
script src="http://code.jquery.com/qunit/git/qunit.js"></script>
<
script src="test.js"></script>
</
body
</
html>
?>
Онлайн: 2
Реклама