card-mod-machines 0.11.1 → 0.11.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/file/all_script_machine_output/file.js +2 -2558
  3. data/file/all_style_machine_output/file.css +2 -2
  4. data/file/script_html5shiv_printshiv_machine_output/file.js +1 -1
  5. data/lib/card/machine.rb +2 -0
  6. data/set/abstract/machine.rb +2 -2
  7. data/set/abstract/machine/output_update.rb +7 -0
  8. data/set/abstract/machine_input.rb +1 -0
  9. data/vendor/jquery_file_upload/CONTRIBUTING.md +15 -0
  10. data/vendor/jquery_file_upload/LICENSE.txt +21 -0
  11. data/vendor/jquery_file_upload/README.md +107 -0
  12. data/vendor/jquery_file_upload/angularjs.html +211 -0
  13. data/vendor/jquery_file_upload/basic-plus.html +226 -0
  14. data/vendor/jquery_file_upload/basic.html +136 -0
  15. data/vendor/jquery_file_upload/bower-version-update.js +16 -0
  16. data/vendor/jquery_file_upload/bower.json +64 -0
  17. data/vendor/jquery_file_upload/cors/postmessage.html +75 -0
  18. data/vendor/jquery_file_upload/cors/result.html +24 -0
  19. data/vendor/jquery_file_upload/css/jquery-ui-demo-ie8.css +21 -0
  20. data/vendor/jquery_file_upload/css/jquery-ui-demo.css +67 -0
  21. data/vendor/jquery_file_upload/css/jquery.fileupload-noscript.css +22 -0
  22. data/vendor/jquery_file_upload/css/jquery.fileupload-ui-noscript.css +17 -0
  23. data/vendor/jquery_file_upload/css/jquery.fileupload-ui.css +57 -0
  24. data/vendor/jquery_file_upload/css/jquery.fileupload.css +37 -0
  25. data/vendor/jquery_file_upload/css/style.css +15 -0
  26. data/vendor/jquery_file_upload/img/loading.gif +0 -0
  27. data/vendor/jquery_file_upload/img/progressbar.gif +0 -0
  28. data/vendor/jquery_file_upload/index.html +255 -0
  29. data/vendor/jquery_file_upload/jquery-ui.html +252 -0
  30. data/vendor/jquery_file_upload/js/app.js +101 -0
  31. data/vendor/jquery_file_upload/js/cors/jquery.postmessage-transport.js +126 -0
  32. data/vendor/jquery_file_upload/js/cors/jquery.xdr-transport.js +89 -0
  33. data/vendor/jquery_file_upload/js/jquery.fileupload-angular.js +437 -0
  34. data/vendor/jquery_file_upload/js/jquery.fileupload-audio.js +113 -0
  35. data/vendor/jquery_file_upload/js/jquery.fileupload-image.js +326 -0
  36. data/vendor/jquery_file_upload/js/jquery.fileupload-jquery-ui.js +161 -0
  37. data/vendor/jquery_file_upload/js/jquery.fileupload-process.js +178 -0
  38. data/vendor/jquery_file_upload/js/jquery.fileupload-ui.js +714 -0
  39. data/vendor/jquery_file_upload/js/jquery.fileupload-validate.js +125 -0
  40. data/vendor/jquery_file_upload/js/jquery.fileupload-video.js +113 -0
  41. data/vendor/jquery_file_upload/js/jquery.fileupload.js +1486 -0
  42. data/vendor/jquery_file_upload/js/jquery.iframe-transport.js +224 -0
  43. data/vendor/jquery_file_upload/js/main.js +75 -0
  44. data/vendor/jquery_file_upload/js/vendor/jquery.ui.widget.js +748 -0
  45. data/vendor/jquery_file_upload/package.json +55 -0
  46. data/vendor/jquery_file_upload/server/gae-go/app.yaml +12 -0
  47. data/vendor/jquery_file_upload/server/gae-go/app/main.go +361 -0
  48. data/vendor/jquery_file_upload/server/gae-go/static/favicon.ico +0 -0
  49. data/vendor/jquery_file_upload/server/gae-go/static/robots.txt +2 -0
  50. data/vendor/jquery_file_upload/server/gae-python/app.yaml +17 -0
  51. data/vendor/jquery_file_upload/server/gae-python/main.py +204 -0
  52. data/vendor/jquery_file_upload/server/gae-python/static/favicon.ico +0 -0
  53. data/vendor/jquery_file_upload/server/gae-python/static/robots.txt +2 -0
  54. data/vendor/jquery_file_upload/server/php/Dockerfile +38 -0
  55. data/vendor/jquery_file_upload/server/php/UploadHandler.php +1411 -0
  56. data/vendor/jquery_file_upload/server/php/docker-compose.yml +9 -0
  57. data/vendor/jquery_file_upload/server/php/index.php +15 -0
  58. data/vendor/jquery_file_upload/test/index.html +172 -0
  59. data/vendor/jquery_file_upload/test/test.js +1292 -0
  60. data/vendor/jquery_rails/CHANGELOG.md +359 -0
  61. data/vendor/jquery_rails/CONTRIBUTING.md +132 -0
  62. data/vendor/jquery_rails/Gemfile +22 -0
  63. data/vendor/jquery_rails/MIT-LICENSE +21 -0
  64. data/vendor/jquery_rails/README.md +75 -0
  65. data/vendor/jquery_rails/Rakefile +59 -0
  66. data/vendor/jquery_rails/VERSIONS.md +62 -0
  67. data/vendor/jquery_rails/jquery-rails.gemspec +26 -0
  68. data/vendor/jquery_rails/lib/jquery-rails.rb +1 -0
  69. data/vendor/jquery_rails/lib/jquery/assert_select.rb +149 -0
  70. data/vendor/jquery_rails/lib/jquery/rails.rb +8 -0
  71. data/vendor/jquery_rails/lib/jquery/rails/engine.rb +6 -0
  72. data/vendor/jquery_rails/lib/jquery/rails/version.rb +9 -0
  73. data/vendor/jquery_rails/test/assert_select_jquery_test.rb +85 -0
  74. data/vendor/jquery_rails/test/test_helper.rb +6 -0
  75. data/vendor/jquery_rails/vendor/assets/javascripts/jquery.js +11008 -0
  76. data/vendor/jquery_rails/vendor/assets/javascripts/jquery.min.js +5 -0
  77. data/vendor/jquery_rails/vendor/assets/javascripts/jquery.min.map +1 -0
  78. data/vendor/jquery_rails/vendor/assets/javascripts/jquery2.js +9814 -0
  79. data/vendor/jquery_rails/vendor/assets/javascripts/jquery2.min.js +4 -0
  80. data/vendor/jquery_rails/vendor/assets/javascripts/jquery2.min.map +1 -0
  81. data/vendor/jquery_rails/vendor/assets/javascripts/jquery3.js +10364 -0
  82. data/vendor/jquery_rails/vendor/assets/javascripts/jquery3.min.js +2 -0
  83. data/vendor/jquery_rails/vendor/assets/javascripts/jquery3.min.map +1 -0
  84. data/vendor/jquery_rails/vendor/assets/javascripts/jquery_ujs.js +555 -0
  85. metadata +115 -14
@@ -0,0 +1,24 @@
1
+ <!DOCTYPE HTML>
2
+ <!--
3
+ /*
4
+ * jQuery Iframe Transport Plugin Redirect Page
5
+ * https://github.com/blueimp/jQuery-File-Upload
6
+ *
7
+ * Copyright 2010, Sebastian Tschan
8
+ * https://blueimp.net
9
+ *
10
+ * Licensed under the MIT license:
11
+ * https://opensource.org/licenses/MIT
12
+ */
13
+ -->
14
+ <html lang="en">
15
+ <head>
16
+ <meta charset="utf-8">
17
+ <title>jQuery Iframe Transport Plugin Redirect Page</title>
18
+ </head>
19
+ <body>
20
+ <script>
21
+ document.body.innerText=document.body.textContent=decodeURIComponent(window.location.search.slice(1));
22
+ </script>
23
+ </body>
24
+ </html>
@@ -0,0 +1,21 @@
1
+ @charset "UTF-8";
2
+ /*
3
+ * jQuery File Upload Demo CSS Fixes for IE<9
4
+ * https://github.com/blueimp/jQuery-File-Upload
5
+ *
6
+ * Copyright 2013, Sebastian Tschan
7
+ * https://blueimp.net
8
+ *
9
+ * Licensed under the MIT license:
10
+ * https://opensource.org/licenses/MIT
11
+ */
12
+
13
+ .navigation {
14
+ list-style: none;
15
+ padding: 0;
16
+ margin: 1em 0;
17
+ }
18
+ .navigation li {
19
+ display: inline;
20
+ margin-right: 10px;
21
+ }
@@ -0,0 +1,67 @@
1
+ @charset "UTF-8";
2
+ /*
3
+ * jQuery File Upload Demo CSS
4
+ * https://github.com/blueimp/jQuery-File-Upload
5
+ *
6
+ * Copyright 2013, Sebastian Tschan
7
+ * https://blueimp.net
8
+ *
9
+ * Licensed under the MIT license:
10
+ * https://opensource.org/licenses/MIT
11
+ */
12
+
13
+ body {
14
+ max-width: 750px;
15
+ margin: 0 auto;
16
+ padding: 1em;
17
+ font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
18
+ font-size: 1em;
19
+ line-height: 1.4em;
20
+ background: #222;
21
+ color: #fff;
22
+ -webkit-text-size-adjust: 100%;
23
+ -ms-text-size-adjust: 100%;
24
+ }
25
+ a {
26
+ color: orange;
27
+ text-decoration: none;
28
+ }
29
+ img {
30
+ border: 0;
31
+ vertical-align: middle;
32
+ }
33
+ h1 {
34
+ line-height: 1em;
35
+ }
36
+ blockquote {
37
+ padding: 0 0 0 15px;
38
+ margin: 0 0 20px;
39
+ border-left: 5px solid #eee;
40
+ }
41
+ table {
42
+ width: 100%;
43
+ margin: 10px 0;
44
+ }
45
+
46
+ .fileupload-progress {
47
+ margin: 10px 0;
48
+ }
49
+ .fileupload-progress .progress-extended {
50
+ margin-top: 5px;
51
+ }
52
+ .error {
53
+ color: red;
54
+ }
55
+
56
+ @media (min-width: 481px) {
57
+ .navigation {
58
+ list-style: none;
59
+ padding: 0;
60
+ }
61
+ .navigation li {
62
+ display: inline-block;
63
+ }
64
+ .navigation li:not(:first-child):before {
65
+ content: "| ";
66
+ }
67
+ }
@@ -0,0 +1,22 @@
1
+ @charset "UTF-8";
2
+ /*
3
+ * jQuery File Upload Plugin NoScript CSS
4
+ * https://github.com/blueimp/jQuery-File-Upload
5
+ *
6
+ * Copyright 2013, Sebastian Tschan
7
+ * https://blueimp.net
8
+ *
9
+ * Licensed under the MIT license:
10
+ * https://opensource.org/licenses/MIT
11
+ */
12
+
13
+ .fileinput-button input {
14
+ position: static;
15
+ opacity: 1;
16
+ filter: none;
17
+ font-size: inherit !important;
18
+ direction: inherit;
19
+ }
20
+ .fileinput-button span {
21
+ display: none;
22
+ }
@@ -0,0 +1,17 @@
1
+ @charset "UTF-8";
2
+ /*
3
+ * jQuery File Upload UI Plugin NoScript CSS
4
+ * https://github.com/blueimp/jQuery-File-Upload
5
+ *
6
+ * Copyright 2012, Sebastian Tschan
7
+ * https://blueimp.net
8
+ *
9
+ * Licensed under the MIT license:
10
+ * https://opensource.org/licenses/MIT
11
+ */
12
+
13
+ .fileinput-button i,
14
+ .fileupload-buttonbar .delete,
15
+ .fileupload-buttonbar .toggle {
16
+ display: none;
17
+ }
@@ -0,0 +1,57 @@
1
+ @charset "UTF-8";
2
+ /*
3
+ * jQuery File Upload UI Plugin CSS
4
+ * https://github.com/blueimp/jQuery-File-Upload
5
+ *
6
+ * Copyright 2010, Sebastian Tschan
7
+ * https://blueimp.net
8
+ *
9
+ * Licensed under the MIT license:
10
+ * https://opensource.org/licenses/MIT
11
+ */
12
+
13
+ .fileupload-buttonbar .btn,
14
+ .fileupload-buttonbar .toggle {
15
+ margin-bottom: 5px;
16
+ }
17
+ .progress-animated .progress-bar,
18
+ .progress-animated .bar {
19
+ background: url("../img/progressbar.gif") !important;
20
+ filter: none;
21
+ }
22
+ .fileupload-process {
23
+ float: right;
24
+ display: none;
25
+ }
26
+ .fileupload-processing .fileupload-process,
27
+ .files .processing .preview {
28
+ display: block;
29
+ width: 32px;
30
+ height: 32px;
31
+ background: url("../img/loading.gif") center no-repeat;
32
+ background-size: contain;
33
+ }
34
+ .files audio,
35
+ .files video {
36
+ max-width: 300px;
37
+ }
38
+
39
+ @media (max-width: 767px) {
40
+ .fileupload-buttonbar .toggle,
41
+ .files .toggle,
42
+ .files .btn span {
43
+ display: none;
44
+ }
45
+ .files .name {
46
+ width: 80px;
47
+ word-wrap: break-word;
48
+ }
49
+ .files audio,
50
+ .files video {
51
+ max-width: 80px;
52
+ }
53
+ .files img,
54
+ .files canvas {
55
+ max-width: 100%;
56
+ }
57
+ }
@@ -0,0 +1,37 @@
1
+ @charset "UTF-8";
2
+ /*
3
+ * jQuery File Upload Plugin CSS
4
+ * https://github.com/blueimp/jQuery-File-Upload
5
+ *
6
+ * Copyright 2013, Sebastian Tschan
7
+ * https://blueimp.net
8
+ *
9
+ * Licensed under the MIT license:
10
+ * https://opensource.org/licenses/MIT
11
+ */
12
+
13
+ .fileinput-button {
14
+ position: relative;
15
+ overflow: hidden;
16
+ display: inline-block;
17
+ }
18
+ .fileinput-button input {
19
+ position: absolute;
20
+ top: 0;
21
+ right: 0;
22
+ margin: 0;
23
+ opacity: 0;
24
+ -ms-filter: 'alpha(opacity=0)';
25
+ font-size: 200px !important;
26
+ direction: ltr;
27
+ cursor: pointer;
28
+ }
29
+
30
+ /* Fixes for IE < 8 */
31
+ @media screen\9 {
32
+ .fileinput-button input {
33
+ filter: alpha(opacity=0);
34
+ font-size: 100%;
35
+ height: 100%;
36
+ }
37
+ }
@@ -0,0 +1,15 @@
1
+ @charset "UTF-8";
2
+ /*
3
+ * jQuery File Upload Plugin CSS Example
4
+ * https://github.com/blueimp/jQuery-File-Upload
5
+ *
6
+ * Copyright 2013, Sebastian Tschan
7
+ * https://blueimp.net
8
+ *
9
+ * Licensed under the MIT license:
10
+ * https://opensource.org/licenses/MIT
11
+ */
12
+
13
+ body {
14
+ padding-top: 60px;
15
+ }
@@ -0,0 +1,255 @@
1
+ <!DOCTYPE HTML>
2
+ <!--
3
+ /*
4
+ * jQuery File Upload Plugin Demo
5
+ * https://github.com/blueimp/jQuery-File-Upload
6
+ *
7
+ * Copyright 2010, Sebastian Tschan
8
+ * https://blueimp.net
9
+ *
10
+ * Licensed under the MIT license:
11
+ * https://opensource.org/licenses/MIT
12
+ */
13
+ -->
14
+ <html lang="en">
15
+ <head>
16
+ <!-- Force latest IE rendering engine or ChromeFrame if installed -->
17
+ <!--[if IE]>
18
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
19
+ <![endif]-->
20
+ <meta charset="utf-8">
21
+ <title>jQuery File Upload Demo</title>
22
+ <meta name="description" content="File Upload widget with multiple file selection, drag&amp;drop support, progress bars, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
23
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
24
+ <!-- Bootstrap styles -->
25
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
26
+ <!-- Generic page styles -->
27
+ <link rel="stylesheet" href="css/style.css">
28
+ <!-- blueimp Gallery styles -->
29
+ <link rel="stylesheet" href="https://blueimp.github.io/Gallery/css/blueimp-gallery.min.css">
30
+ <!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
31
+ <link rel="stylesheet" href="css/jquery.fileupload.css">
32
+ <link rel="stylesheet" href="css/jquery.fileupload-ui.css">
33
+ <!-- CSS adjustments for browsers with JavaScript disabled -->
34
+ <noscript><link rel="stylesheet" href="css/jquery.fileupload-noscript.css"></noscript>
35
+ <noscript><link rel="stylesheet" href="css/jquery.fileupload-ui-noscript.css"></noscript>
36
+ </head>
37
+ <body>
38
+ <div class="navbar navbar-default navbar-fixed-top">
39
+ <div class="container">
40
+ <div class="navbar-header">
41
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-fixed-top .navbar-collapse">
42
+ <span class="icon-bar"></span>
43
+ <span class="icon-bar"></span>
44
+ <span class="icon-bar"></span>
45
+ </button>
46
+ <a class="navbar-brand" href="https://github.com/blueimp/jQuery-File-Upload">jQuery File Upload</a>
47
+ </div>
48
+ <div class="navbar-collapse collapse">
49
+ <ul class="nav navbar-nav">
50
+ <li><a href="https://github.com/blueimp/jQuery-File-Upload/tags">Download</a></li>
51
+ <li><a href="https://github.com/blueimp/jQuery-File-Upload">Source Code</a></li>
52
+ <li><a href="https://github.com/blueimp/jQuery-File-Upload/wiki">Documentation</a></li>
53
+ <li><a href="https://blueimp.net">&copy; Sebastian Tschan</a></li>
54
+ </ul>
55
+ </div>
56
+ </div>
57
+ </div>
58
+ <div class="container">
59
+ <h1>jQuery File Upload Demo</h1>
60
+ <h2 class="lead">Basic Plus UI version</h2>
61
+ <ul class="nav nav-tabs">
62
+ <li><a href="basic.html">Basic</a></li>
63
+ <li><a href="basic-plus.html">Basic Plus</a></li>
64
+ <li class="active"><a href="index.html">Basic Plus UI</a></li>
65
+ <li><a href="angularjs.html">AngularJS</a></li>
66
+ <li><a href="jquery-ui.html">jQuery UI</a></li>
67
+ </ul>
68
+ <br>
69
+ <blockquote>
70
+ <p>File Upload widget with multiple file selection, drag&amp;drop support, progress bars, validation and preview images, audio and video for jQuery.<br>
71
+ Supports cross-domain, chunked and resumable file uploads and client-side image resizing.<br>
72
+ Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.</p>
73
+ </blockquote>
74
+ <br>
75
+ <!-- The file upload form used as target for the file upload widget -->
76
+ <form id="fileupload" action="https://jquery-file-upload.appspot.com/" method="POST" enctype="multipart/form-data">
77
+ <!-- Redirect browsers with JavaScript disabled to the origin page -->
78
+ <noscript><input type="hidden" name="redirect" value="https://blueimp.github.io/jQuery-File-Upload/"></noscript>
79
+ <!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
80
+ <div class="row fileupload-buttonbar">
81
+ <div class="col-lg-7">
82
+ <!-- The fileinput-button span is used to style the file input field as button -->
83
+ <span class="btn btn-success fileinput-button">
84
+ <i class="glyphicon glyphicon-plus"></i>
85
+ <span>Add files...</span>
86
+ <input type="file" name="files[]" multiple>
87
+ </span>
88
+ <button type="submit" class="btn btn-primary start">
89
+ <i class="glyphicon glyphicon-upload"></i>
90
+ <span>Start upload</span>
91
+ </button>
92
+ <button type="reset" class="btn btn-warning cancel">
93
+ <i class="glyphicon glyphicon-ban-circle"></i>
94
+ <span>Cancel upload</span>
95
+ </button>
96
+ <button type="button" class="btn btn-danger delete">
97
+ <i class="glyphicon glyphicon-trash"></i>
98
+ <span>Delete</span>
99
+ </button>
100
+ <input type="checkbox" class="toggle">
101
+ <!-- The global file processing state -->
102
+ <span class="fileupload-process"></span>
103
+ </div>
104
+ <!-- The global progress state -->
105
+ <div class="col-lg-5 fileupload-progress fade">
106
+ <!-- The global progress bar -->
107
+ <div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100">
108
+ <div class="progress-bar progress-bar-success" style="width:0%;"></div>
109
+ </div>
110
+ <!-- The extended global progress state -->
111
+ <div class="progress-extended">&nbsp;</div>
112
+ </div>
113
+ </div>
114
+ <!-- The table listing the files available for upload/download -->
115
+ <table role="presentation" class="table table-striped"><tbody class="files"></tbody></table>
116
+ </form>
117
+ <br>
118
+ <div class="panel panel-default">
119
+ <div class="panel-heading">
120
+ <h3 class="panel-title">Demo Notes</h3>
121
+ </div>
122
+ <div class="panel-body">
123
+ <ul>
124
+ <li>The maximum file size for uploads in this demo is <strong>999 KB</strong> (default file size is unlimited).</li>
125
+ <li>Only image files (<strong>JPG, GIF, PNG</strong>) are allowed in this demo (by default there is no file type restriction).</li>
126
+ <li>Uploaded files will be deleted automatically after <strong>5 minutes or less</strong> (demo files are stored in memory).</li>
127
+ <li>You can <strong>drag &amp; drop</strong> files from your desktop on this webpage (see <a href="https://github.com/blueimp/jQuery-File-Upload/wiki/Browser-support">Browser support</a>).</li>
128
+ <li>Please refer to the <a href="https://github.com/blueimp/jQuery-File-Upload">project website</a> and <a href="https://github.com/blueimp/jQuery-File-Upload/wiki">documentation</a> for more information.</li>
129
+ <li>Built with the <a href="http://getbootstrap.com/">Bootstrap</a> CSS framework and Icons from <a href="http://glyphicons.com/">Glyphicons</a>.</li>
130
+ </ul>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ <!-- The blueimp Gallery widget -->
135
+ <div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls" data-filter=":even">
136
+ <div class="slides"></div>
137
+ <h3 class="title"></h3>
138
+ <a class="prev">‹</a>
139
+ <a class="next">›</a>
140
+ <a class="close">×</a>
141
+ <a class="play-pause"></a>
142
+ <ol class="indicator"></ol>
143
+ </div>
144
+ <!-- The template to display files available for upload -->
145
+ <script id="template-upload" type="text/x-tmpl">
146
+ {% for (var i=0, file; file=o.files[i]; i++) { %}
147
+ <tr class="template-upload fade">
148
+ <td>
149
+ <span class="preview"></span>
150
+ </td>
151
+ <td>
152
+ <p class="name">{%=file.name%}</p>
153
+ <strong class="error text-danger"></strong>
154
+ </td>
155
+ <td>
156
+ <p class="size">Processing...</p>
157
+ <div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="progress-bar progress-bar-success" style="width:0%;"></div></div>
158
+ </td>
159
+ <td>
160
+ {% if (!i && !o.options.autoUpload) { %}
161
+ <button class="btn btn-primary start" disabled>
162
+ <i class="glyphicon glyphicon-upload"></i>
163
+ <span>Start</span>
164
+ </button>
165
+ {% } %}
166
+ {% if (!i) { %}
167
+ <button class="btn btn-warning cancel">
168
+ <i class="glyphicon glyphicon-ban-circle"></i>
169
+ <span>Cancel</span>
170
+ </button>
171
+ {% } %}
172
+ </td>
173
+ </tr>
174
+ {% } %}
175
+ </script>
176
+ <!-- The template to display files available for download -->
177
+ <script id="template-download" type="text/x-tmpl">
178
+ {% for (var i=0, file; file=o.files[i]; i++) { %}
179
+ <tr class="template-download fade">
180
+ <td>
181
+ <span class="preview">
182
+ {% if (file.thumbnailUrl) { %}
183
+ <a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" data-gallery><img src="{%=file.thumbnailUrl%}"></a>
184
+ {% } %}
185
+ </span>
186
+ </td>
187
+ <td>
188
+ <p class="name">
189
+ {% if (file.url) { %}
190
+ <a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" {%=file.thumbnailUrl?'data-gallery':''%}>{%=file.name%}</a>
191
+ {% } else { %}
192
+ <span>{%=file.name%}</span>
193
+ {% } %}
194
+ </p>
195
+ {% if (file.error) { %}
196
+ <div><span class="label label-danger">Error</span> {%=file.error%}</div>
197
+ {% } %}
198
+ </td>
199
+ <td>
200
+ <span class="size">{%=o.formatFileSize(file.size)%}</span>
201
+ </td>
202
+ <td>
203
+ {% if (file.deleteUrl) { %}
204
+ <button class="btn btn-danger delete" data-type="{%=file.deleteType%}" data-url="{%=file.deleteUrl%}"{% if (file.deleteWithCredentials) { %} data-xhr-fields='{"withCredentials":true}'{% } %}>
205
+ <i class="glyphicon glyphicon-trash"></i>
206
+ <span>Delete</span>
207
+ </button>
208
+ <input type="checkbox" name="delete" value="1" class="toggle">
209
+ {% } else { %}
210
+ <button class="btn btn-warning cancel">
211
+ <i class="glyphicon glyphicon-ban-circle"></i>
212
+ <span>Cancel</span>
213
+ </button>
214
+ {% } %}
215
+ </td>
216
+ </tr>
217
+ {% } %}
218
+ </script>
219
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
220
+ <!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
221
+ <script src="js/vendor/jquery.ui.widget.js"></script>
222
+ <!-- The Templates plugin is included to render the upload/download listings -->
223
+ <script src="https://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
224
+ <!-- The Load Image plugin is included for the preview images and image resizing functionality -->
225
+ <script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
226
+ <!-- The Canvas to Blob plugin is included for image resizing functionality -->
227
+ <script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
228
+ <!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
229
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
230
+ <!-- blueimp Gallery script -->
231
+ <script src="https://blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
232
+ <!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
233
+ <script src="js/jquery.iframe-transport.js"></script>
234
+ <!-- The basic File Upload plugin -->
235
+ <script src="js/jquery.fileupload.js"></script>
236
+ <!-- The File Upload processing plugin -->
237
+ <script src="js/jquery.fileupload-process.js"></script>
238
+ <!-- The File Upload image preview & resize plugin -->
239
+ <script src="js/jquery.fileupload-image.js"></script>
240
+ <!-- The File Upload audio preview plugin -->
241
+ <script src="js/jquery.fileupload-audio.js"></script>
242
+ <!-- The File Upload video preview plugin -->
243
+ <script src="js/jquery.fileupload-video.js"></script>
244
+ <!-- The File Upload validation plugin -->
245
+ <script src="js/jquery.fileupload-validate.js"></script>
246
+ <!-- The File Upload user interface plugin -->
247
+ <script src="js/jquery.fileupload-ui.js"></script>
248
+ <!-- The main application script -->
249
+ <script src="js/main.js"></script>
250
+ <!-- The XDomainRequest Transport is included for cross-domain file deletion for IE 8 and IE 9 -->
251
+ <!--[if (gte IE 8)&(lt IE 10)]>
252
+ <script src="js/cors/jquery.xdr-transport.js"></script>
253
+ <![endif]-->
254
+ </body>
255
+ </html>