mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-25 19:17:35 +00:00
Fixed upload progress issue and few CSS tweaks
This commit is contained in:
@@ -259,7 +259,6 @@ def upload(request):
|
|||||||
logger.exception(ex.message)
|
logger.exception(ex.message)
|
||||||
return HttpResponse(content="Error occurred uploading file", status=503)
|
return HttpResponse(content="Error occurred uploading file", status=503)
|
||||||
|
|
||||||
|
|
||||||
@csrf_exempt
|
@csrf_exempt
|
||||||
def lookup_search(request):
|
def lookup_search(request):
|
||||||
query = request.GET['query'] if 'query' in request.GET else request.GET['q'] if 'q' in request.GET else ''
|
query = request.GET['query'] if 'query' in request.GET else request.GET['q'] if 'q' in request.GET else ''
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
/*
|
/*
|
||||||
* jQuery File Upload UI Plugin CSS 8.1
|
* jQuery File Upload UI Plugin CSS 8.8.1
|
||||||
* https://github.com/blueimp/jQuery-File-Upload
|
* https://github.com/blueimp/jQuery-File-Upload
|
||||||
*
|
*
|
||||||
* Copyright 2010, Sebastian Tschan
|
* Copyright 2010, Sebastian Tschan
|
||||||
@@ -30,6 +30,7 @@
|
|||||||
.fileupload-buttonbar .toggle {
|
.fileupload-buttonbar .toggle {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
.progress-animated .progress-bar,
|
||||||
.progress-animated .bar {
|
.progress-animated .bar {
|
||||||
background: url(../img/progressbar.gif) !important;
|
background: url(../img/progressbar.gif) !important;
|
||||||
filter: none;
|
filter: none;
|
||||||
|
|||||||
@@ -10,13 +10,6 @@ define(['backbone'], function (Backbone) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var TastypieCollection = Backbone.Collection.extend({
|
|
||||||
parse: function (response) {
|
|
||||||
this.meta = response.meta || {};
|
|
||||||
return response.objects || response;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return TastypieModel.extend({
|
return TastypieModel.extend({
|
||||||
addError: function (field, message) {
|
addError: function (field, message) {
|
||||||
if (_.isUndefined(this.errors[field])) {
|
if (_.isUndefined(this.errors[field])) {
|
||||||
@@ -24,6 +17,18 @@ define(['backbone'], function (Backbone) {
|
|||||||
}
|
}
|
||||||
this.errors[field].push(message);
|
this.errors[field].push(message);
|
||||||
return field;
|
return field;
|
||||||
|
},
|
||||||
|
secondsToHms: function (field) {
|
||||||
|
var d = this.get(field);
|
||||||
|
if (d) {
|
||||||
|
d = Number(d);
|
||||||
|
var h = Math.floor(d / 3600);
|
||||||
|
var m = Math.floor(d % 3600 / 60);
|
||||||
|
var s = Math.floor(d % 3600 % 60);
|
||||||
|
return ((h > 0 ? h + ":" : "") + (m > 0 ? (h > 0 && m < 10 ? "0" : "") + m + ":" : "0:") + (s < 10 ? "0" : "") + s);
|
||||||
|
}else{
|
||||||
|
return "00:00:00";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -30,9 +30,7 @@ define ['moment', 'app', 'vent', 'marionette', 'utils', 'models/comment/commentC
|
|||||||
onRender: =>
|
onRender: =>
|
||||||
id = @model.get('id')
|
id = @model.get('id')
|
||||||
if @model.get('duration')
|
if @model.get('duration')
|
||||||
totalDuration = moment.duration(this.model.get('duration'), "seconds")
|
$('#player-duration-' + id, this.el).text(@model.secondsToHms('duration'))
|
||||||
totalDurationText = if totalDuration.hours() != 0 then moment(totalDuration).format("h:mm:ss") else moment(totalDuration).format("mm:ss");
|
|
||||||
$('#player-duration-' + id, this.el).text(totalDurationText)
|
|
||||||
|
|
||||||
|
|
||||||
@renderGenres()
|
@renderGenres()
|
||||||
|
|||||||
@@ -1,22 +1,26 @@
|
|||||||
// Generated by CoffeeScript 1.6.2
|
// Generated by CoffeeScript 1.3.3
|
||||||
(function() {
|
(function() {
|
||||||
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
|
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
|
||||||
__hasProp = {}.hasOwnProperty,
|
__hasProp = {}.hasOwnProperty,
|
||||||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
|
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
|
||||||
|
|
||||||
define(['moment', 'app', 'vent', 'marionette', 'utils', 'models/comment/commentCollection', 'views/comment/commentListView', 'text!/tpl/MixListItemView'], function(moment, App, vent, Marionette, utils, CommentsCollection, CommentsListView, Template) {
|
define(['moment', 'app', 'vent', 'marionette', 'utils', 'models/comment/commentCollection', 'views/comment/commentListView', 'text!/tpl/MixListItemView'], function(moment, App, vent, Marionette, utils, CommentsCollection, CommentsListView, Template) {
|
||||||
var MixItemView, _ref;
|
var MixItemView;
|
||||||
|
|
||||||
MixItemView = (function(_super) {
|
MixItemView = (function(_super) {
|
||||||
|
|
||||||
__extends(MixItemView, _super);
|
__extends(MixItemView, _super);
|
||||||
|
|
||||||
function MixItemView() {
|
function MixItemView() {
|
||||||
this.doStart = __bind(this.doStart, this);
|
this.doStart = __bind(this.doStart, this);
|
||||||
|
|
||||||
this.renderComments = __bind(this.renderComments, this);
|
this.renderComments = __bind(this.renderComments, this);
|
||||||
|
|
||||||
this.renderGenres = __bind(this.renderGenres, this);
|
this.renderGenres = __bind(this.renderGenres, this);
|
||||||
|
|
||||||
this.onRender = __bind(this.onRender, this);
|
this.onRender = __bind(this.onRender, this);
|
||||||
this.initialize = __bind(this.initialize, this); _ref = MixItemView.__super__.constructor.apply(this, arguments);
|
|
||||||
return _ref;
|
this.initialize = __bind(this.initialize, this);
|
||||||
|
return MixItemView.__super__.constructor.apply(this, arguments);
|
||||||
}
|
}
|
||||||
|
|
||||||
MixItemView.prototype.template = _.template(Template);
|
MixItemView.prototype.template = _.template(Template);
|
||||||
@@ -49,13 +53,10 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
MixItemView.prototype.onRender = function() {
|
MixItemView.prototype.onRender = function() {
|
||||||
var id, totalDuration, totalDurationText;
|
var id;
|
||||||
|
|
||||||
id = this.model.get('id');
|
id = this.model.get('id');
|
||||||
if (this.model.get('duration')) {
|
if (this.model.get('duration')) {
|
||||||
totalDuration = moment.duration(this.model.get('duration'), "seconds");
|
$('#player-duration-' + id, this.el).text(this.model.secondsToHms('duration'));
|
||||||
totalDurationText = totalDuration.hours() !== 0 ? moment(totalDuration).format("h:mm:ss") : moment(totalDuration).format("mm:ss");
|
|
||||||
$('#player-duration-' + id, this.el).text(totalDurationText);
|
|
||||||
}
|
}
|
||||||
this.renderGenres();
|
this.renderGenres();
|
||||||
this.renderComments();
|
this.renderComments();
|
||||||
@@ -71,7 +72,6 @@
|
|||||||
|
|
||||||
MixItemView.prototype.renderGenres = function() {
|
MixItemView.prototype.renderGenres = function() {
|
||||||
var el;
|
var el;
|
||||||
|
|
||||||
el = this.el;
|
el = this.el;
|
||||||
$.each(this.model.get("genre-list"), function(data) {
|
$.each(this.model.get("genre-list"), function(data) {
|
||||||
$("#genre-list", el).append('<a href="/mixes/' + this.slug + '" class="label label-info arrowed-right arrowed-in">' + this.text + '</a>');
|
$("#genre-list", el).append('<a href="/mixes/' + this.slug + '" class="label label-info arrowed-right arrowed-in">' + this.text + '</a>');
|
||||||
@@ -82,7 +82,6 @@
|
|||||||
|
|
||||||
MixItemView.prototype.renderComments = function() {
|
MixItemView.prototype.renderComments = function() {
|
||||||
var comments;
|
var comments;
|
||||||
|
|
||||||
comments = new CommentsCollection();
|
comments = new CommentsCollection();
|
||||||
comments.url = this.model.get("resource_uri") + "comments/";
|
comments.url = this.model.get("resource_uri") + "comments/";
|
||||||
comments.mix_id = this.model.id;
|
comments.mix_id = this.model.id;
|
||||||
@@ -90,7 +89,6 @@
|
|||||||
comments.fetch({
|
comments.fetch({
|
||||||
success: function(data) {
|
success: function(data) {
|
||||||
var content;
|
var content;
|
||||||
|
|
||||||
content = new CommentsListView({
|
content = new CommentsListView({
|
||||||
collection: comments
|
collection: comments
|
||||||
}).render();
|
}).render();
|
||||||
@@ -139,7 +137,6 @@
|
|||||||
|
|
||||||
MixItemView.prototype.mixFavourite = function() {
|
MixItemView.prototype.mixFavourite = function() {
|
||||||
var app;
|
var app;
|
||||||
|
|
||||||
console.log("MixItemView: favouriteMix");
|
console.log("MixItemView: favouriteMix");
|
||||||
app = require('app');
|
app = require('app');
|
||||||
vent.trigger("mix:favourite", this.model);
|
vent.trigger("mix:favourite", this.model);
|
||||||
@@ -154,7 +151,6 @@
|
|||||||
|
|
||||||
MixItemView.prototype.mixShare = function(e) {
|
MixItemView.prototype.mixShare = function(e) {
|
||||||
var mode;
|
var mode;
|
||||||
|
|
||||||
console.log("MixItemView: shareMix");
|
console.log("MixItemView: shareMix");
|
||||||
mode = $(e.currentTarget).data("mode");
|
mode = $(e.currentTarget).data("mode");
|
||||||
console.log("MixItemView: " + mode);
|
console.log("MixItemView: " + mode);
|
||||||
|
|||||||
@@ -51,6 +51,17 @@ com.podnoms.player = {
|
|||||||
soundDuration: 0,
|
soundDuration: 0,
|
||||||
|
|
||||||
/*Privates */
|
/*Privates */
|
||||||
|
_secondsToHms: function (d) {
|
||||||
|
if (d) {
|
||||||
|
d = Number(d);
|
||||||
|
var h = Math.floor(d / 3600);
|
||||||
|
var m = Math.floor(d % 3600 / 60);
|
||||||
|
var s = Math.floor(d % 3600 % 60);
|
||||||
|
return ((h > 0 ? h + ":" : "") + (m > 0 ? (h > 0 && m < 10 ? "0" : "") + m + ":" : "00:") + (s < 10 ? "0" : "") + s);
|
||||||
|
} else {
|
||||||
|
return "00:00:00";
|
||||||
|
}
|
||||||
|
},
|
||||||
_getDurationEstimate: function (oSound) {
|
_getDurationEstimate: function (oSound) {
|
||||||
if (oSound.instanceOptions.isMovieStar) {
|
if (oSound.instanceOptions.isMovieStar) {
|
||||||
return (oSound.duration);
|
return (oSound.duration);
|
||||||
@@ -76,11 +87,7 @@ com.podnoms.player = {
|
|||||||
var percentageFinished = (this.currentSound.position / duration) * 100;
|
var percentageFinished = (this.currentSound.position / duration) * 100;
|
||||||
var percentageWidth = (this.waveFormWidth / 100) * percentageFinished;
|
var percentageWidth = (this.waveFormWidth / 100) * percentageFinished;
|
||||||
this.playHeadEl.css('width', percentageWidth);
|
this.playHeadEl.css('width', percentageWidth);
|
||||||
var elapsed = moment.duration(this.currentSound.position, "milliseconds");
|
this.timeDisplayLabel.text(this._secondsToHms(this.currentSound.position / 1000));
|
||||||
var text = elapsed.hours() != 0 ?
|
|
||||||
moment(elapsed).format("HH:mm") :
|
|
||||||
moment(elapsed).format("mm:ss");
|
|
||||||
this.timeDisplayLabel.text(text);
|
|
||||||
},
|
},
|
||||||
_mouseDown: function (event) {
|
_mouseDown: function (event) {
|
||||||
if (this.currentSound != null) {
|
if (this.currentSound != null) {
|
||||||
|
|||||||
2
static/js/lib/jquery.fileupload-audio.js
vendored
2
static/js/lib/jquery.fileupload-audio.js
vendored
@@ -19,7 +19,7 @@
|
|||||||
define([
|
define([
|
||||||
'jquery',
|
'jquery',
|
||||||
'load-image',
|
'load-image',
|
||||||
'jquery.fileupload-process'
|
'./jquery.fileupload-process'
|
||||||
], factory);
|
], factory);
|
||||||
} else {
|
} else {
|
||||||
// Browser globals:
|
// Browser globals:
|
||||||
|
|||||||
2
static/js/lib/jquery.fileupload-image.js
vendored
2
static/js/lib/jquery.fileupload-image.js
vendored
@@ -23,7 +23,7 @@
|
|||||||
'load-image-exif',
|
'load-image-exif',
|
||||||
'load-image-ios',
|
'load-image-ios',
|
||||||
'canvas-to-blob',
|
'canvas-to-blob',
|
||||||
'jquery.fileupload-process'
|
'./jquery.fileupload-process'
|
||||||
], factory);
|
], factory);
|
||||||
} else {
|
} else {
|
||||||
// Browser globals:
|
// Browser globals:
|
||||||
|
|||||||
138
static/js/lib/jquery.fileupload-jquery-ui.js
Normal file
138
static/js/lib/jquery.fileupload-jquery-ui.js
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
/*
|
||||||
|
* jQuery File Upload jQuery UI Plugin 8.7.0
|
||||||
|
* https://github.com/blueimp/jQuery-File-Upload
|
||||||
|
*
|
||||||
|
* Copyright 2013, Sebastian Tschan
|
||||||
|
* https://blueimp.net
|
||||||
|
*
|
||||||
|
* Licensed under the MIT license:
|
||||||
|
* http://www.opensource.org/licenses/MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*jslint nomen: true, unparam: true */
|
||||||
|
/*global define, window */
|
||||||
|
|
||||||
|
(function (factory) {
|
||||||
|
'use strict';
|
||||||
|
if (typeof define === 'function' && define.amd) {
|
||||||
|
// Register as an anonymous AMD module:
|
||||||
|
define(['jquery', './jquery.fileupload-ui'], factory);
|
||||||
|
} else {
|
||||||
|
// Browser globals:
|
||||||
|
factory(window.jQuery);
|
||||||
|
}
|
||||||
|
}(function ($) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
$.widget('blueimp.fileupload', $.blueimp.fileupload, {
|
||||||
|
|
||||||
|
options: {
|
||||||
|
progress: function (e, data) {
|
||||||
|
if (data.context) {
|
||||||
|
data.context.find('.progress').progressbar(
|
||||||
|
'option',
|
||||||
|
'value',
|
||||||
|
parseInt(data.loaded / data.total * 100, 10)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
progressall: function (e, data) {
|
||||||
|
var $this = $(this);
|
||||||
|
$this.find('.fileupload-progress')
|
||||||
|
.find('.progress').progressbar(
|
||||||
|
'option',
|
||||||
|
'value',
|
||||||
|
parseInt(data.loaded / data.total * 100, 10)
|
||||||
|
).end()
|
||||||
|
.find('.progress-extended').each(function () {
|
||||||
|
$(this).html(
|
||||||
|
($this.data('blueimp-fileupload') ||
|
||||||
|
$this.data('fileupload'))
|
||||||
|
._renderExtendedProgress(data)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_renderUpload: function (func, files) {
|
||||||
|
var node = this._super(func, files),
|
||||||
|
showIconText = $(window).width() > 480;
|
||||||
|
node.find('.progress').empty().progressbar();
|
||||||
|
node.find('.start').button({
|
||||||
|
icons: {primary: 'ui-icon-circle-arrow-e'},
|
||||||
|
text: showIconText
|
||||||
|
});
|
||||||
|
node.find('.cancel').button({
|
||||||
|
icons: {primary: 'ui-icon-cancel'},
|
||||||
|
text: showIconText
|
||||||
|
});
|
||||||
|
return node;
|
||||||
|
},
|
||||||
|
|
||||||
|
_renderDownload: function (func, files) {
|
||||||
|
var node = this._super(func, files),
|
||||||
|
showIconText = $(window).width() > 480;
|
||||||
|
node.find('.delete').button({
|
||||||
|
icons: {primary: 'ui-icon-trash'},
|
||||||
|
text: showIconText
|
||||||
|
});
|
||||||
|
return node;
|
||||||
|
},
|
||||||
|
|
||||||
|
_transition: function (node) {
|
||||||
|
var deferred = $.Deferred();
|
||||||
|
if (node.hasClass('fade')) {
|
||||||
|
node.fadeToggle(
|
||||||
|
this.options.transitionDuration,
|
||||||
|
this.options.transitionEasing,
|
||||||
|
function () {
|
||||||
|
deferred.resolveWith(node);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
deferred.resolveWith(node);
|
||||||
|
}
|
||||||
|
return deferred;
|
||||||
|
},
|
||||||
|
|
||||||
|
_create: function () {
|
||||||
|
this._super();
|
||||||
|
this.element
|
||||||
|
.find('.fileupload-buttonbar')
|
||||||
|
.find('.fileinput-button').each(function () {
|
||||||
|
var input = $(this).find('input:file').detach();
|
||||||
|
$(this)
|
||||||
|
.button({icons: {primary: 'ui-icon-plusthick'}})
|
||||||
|
.append(input);
|
||||||
|
})
|
||||||
|
.end().find('.start')
|
||||||
|
.button({icons: {primary: 'ui-icon-circle-arrow-e'}})
|
||||||
|
.end().find('.cancel')
|
||||||
|
.button({icons: {primary: 'ui-icon-cancel'}})
|
||||||
|
.end().find('.delete')
|
||||||
|
.button({icons: {primary: 'ui-icon-trash'}})
|
||||||
|
.end().find('.progress').progressbar();
|
||||||
|
},
|
||||||
|
|
||||||
|
_destroy: function () {
|
||||||
|
this.element
|
||||||
|
.find('.fileupload-buttonbar')
|
||||||
|
.find('.fileinput-button').each(function () {
|
||||||
|
var input = $(this).find('input:file').detach();
|
||||||
|
$(this)
|
||||||
|
.button('destroy')
|
||||||
|
.append(input);
|
||||||
|
})
|
||||||
|
.end().find('.start')
|
||||||
|
.button('destroy')
|
||||||
|
.end().find('.cancel')
|
||||||
|
.button('destroy')
|
||||||
|
.end().find('.delete')
|
||||||
|
.button('destroy')
|
||||||
|
.end().find('.progress').progressbar('destroy');
|
||||||
|
this._super();
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
}));
|
||||||
2
static/js/lib/jquery.fileupload-process.js
vendored
2
static/js/lib/jquery.fileupload-process.js
vendored
@@ -18,7 +18,7 @@
|
|||||||
// Register as an anonymous AMD module:
|
// Register as an anonymous AMD module:
|
||||||
define([
|
define([
|
||||||
'jquery',
|
'jquery',
|
||||||
'jquery.fileupload'
|
'./jquery.fileupload'
|
||||||
], factory);
|
], factory);
|
||||||
} else {
|
} else {
|
||||||
// Browser globals:
|
// Browser globals:
|
||||||
|
|||||||
36
static/js/lib/jquery.fileupload-ui.js
vendored
36
static/js/lib/jquery.fileupload-ui.js
vendored
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* jQuery File Upload User Interface Plugin 8.7.1
|
* jQuery File Upload User Interface Plugin 8.8.5
|
||||||
* https://github.com/blueimp/jQuery-File-Upload
|
* https://github.com/blueimp/jQuery-File-Upload
|
||||||
*
|
*
|
||||||
* Copyright 2010, Sebastian Tschan
|
* Copyright 2010, Sebastian Tschan
|
||||||
@@ -19,10 +19,10 @@
|
|||||||
define([
|
define([
|
||||||
'jquery',
|
'jquery',
|
||||||
'tmpl',
|
'tmpl',
|
||||||
'jquery.fileupload-image',
|
'./jquery.fileupload-image',
|
||||||
'jquery.fileupload-audio',
|
'./jquery.fileupload-audio',
|
||||||
'jquery.fileupload-video',
|
'./jquery.fileupload-video',
|
||||||
'jquery.fileupload-validate'
|
'./jquery.fileupload-validate'
|
||||||
], factory);
|
], factory);
|
||||||
} else {
|
} else {
|
||||||
// Browser globals:
|
// Browser globals:
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
!$.support.transition && 'progress-animated'
|
!$.support.transition && 'progress-animated'
|
||||||
)
|
)
|
||||||
.attr('aria-valuenow', 100)
|
.attr('aria-valuenow', 100)
|
||||||
.find('.bar').css(
|
.children().first().css(
|
||||||
'width',
|
'width',
|
||||||
'100%'
|
'100%'
|
||||||
);
|
);
|
||||||
@@ -238,14 +238,16 @@
|
|||||||
},
|
},
|
||||||
// Callback for upload progress events:
|
// Callback for upload progress events:
|
||||||
progress: function (e, data) {
|
progress: function (e, data) {
|
||||||
|
var progress = Math.floor(data.loaded / data.total * 100);
|
||||||
if (data.context) {
|
if (data.context) {
|
||||||
var progress = Math.floor(data.loaded / data.total * 100);
|
data.context.each(function () {
|
||||||
data.context.find('.progress')
|
$(this).find('.progress')
|
||||||
.attr('aria-valuenow', progress)
|
.attr('aria-valuenow', progress)
|
||||||
.find('.bar').css(
|
.children().first().css(
|
||||||
'width',
|
'width',
|
||||||
progress + '%'
|
progress + '%'
|
||||||
);
|
);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// Callback for global upload progress events:
|
// Callback for global upload progress events:
|
||||||
@@ -264,7 +266,7 @@
|
|||||||
globalProgressNode
|
globalProgressNode
|
||||||
.find('.progress')
|
.find('.progress')
|
||||||
.attr('aria-valuenow', progress)
|
.attr('aria-valuenow', progress)
|
||||||
.find('.bar').css(
|
.children().first().css(
|
||||||
'width',
|
'width',
|
||||||
progress + '%'
|
progress + '%'
|
||||||
);
|
);
|
||||||
@@ -293,7 +295,7 @@
|
|||||||
function () {
|
function () {
|
||||||
$(this).find('.progress')
|
$(this).find('.progress')
|
||||||
.attr('aria-valuenow', '0')
|
.attr('aria-valuenow', '0')
|
||||||
.find('.bar').css('width', '0%');
|
.children().first().css('width', '0%');
|
||||||
$(this).find('.progress-extended').html(' ');
|
$(this).find('.progress-extended').html(' ');
|
||||||
deferred.resolve();
|
deferred.resolve();
|
||||||
}
|
}
|
||||||
@@ -460,9 +462,11 @@
|
|||||||
|
|
||||||
_cancelHandler: function (e) {
|
_cancelHandler: function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
var template = $(e.currentTarget).closest('.template-upload'),
|
var template = $(e.currentTarget)
|
||||||
|
.closest('.template-upload,.template-download'),
|
||||||
data = template.data('data') || {};
|
data = template.data('data') || {};
|
||||||
if (!data.jqXHR) {
|
if (!data.jqXHR) {
|
||||||
|
data.context = data.context || template;
|
||||||
data.errorThrown = 'abort';
|
data.errorThrown = 'abort';
|
||||||
this._trigger('fail', e, data);
|
this._trigger('fail', e, data);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
15
static/js/lib/jquery.fileupload-validate.js
vendored
15
static/js/lib/jquery.fileupload-validate.js
vendored
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* jQuery File Upload Validation Plugin 1.1
|
* jQuery File Upload Validation Plugin 1.1.1
|
||||||
* https://github.com/blueimp/jQuery-File-Upload
|
* https://github.com/blueimp/jQuery-File-Upload
|
||||||
*
|
*
|
||||||
* Copyright 2013, Sebastian Tschan
|
* Copyright 2013, Sebastian Tschan
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
// Register as an anonymous AMD module:
|
// Register as an anonymous AMD module:
|
||||||
define([
|
define([
|
||||||
'jquery',
|
'jquery',
|
||||||
'jquery.fileupload-process'
|
'./jquery.fileupload-process'
|
||||||
], factory);
|
], factory);
|
||||||
} else {
|
} else {
|
||||||
// Browser globals:
|
// Browser globals:
|
||||||
@@ -83,16 +83,17 @@
|
|||||||
}
|
}
|
||||||
var dfd = $.Deferred(),
|
var dfd = $.Deferred(),
|
||||||
settings = this.options,
|
settings = this.options,
|
||||||
file = data.files[data.index],
|
file = data.files[data.index];
|
||||||
numberOfFiles = settings.getNumberOfFiles();
|
if ($.type(options.maxNumberOfFiles) === 'number' &&
|
||||||
if (numberOfFiles && $.type(options.maxNumberOfFiles) === 'number' &&
|
(settings.getNumberOfFiles() || 0) + data.files.length >
|
||||||
numberOfFiles + data.files.length > options.maxNumberOfFiles) {
|
options.maxNumberOfFiles) {
|
||||||
file.error = settings.i18n('maxNumberOfFiles');
|
file.error = settings.i18n('maxNumberOfFiles');
|
||||||
} else if (options.acceptFileTypes &&
|
} else if (options.acceptFileTypes &&
|
||||||
!(options.acceptFileTypes.test(file.type) ||
|
!(options.acceptFileTypes.test(file.type) ||
|
||||||
options.acceptFileTypes.test(file.name))) {
|
options.acceptFileTypes.test(file.name))) {
|
||||||
file.error = settings.i18n('acceptFileTypes');
|
file.error = settings.i18n('acceptFileTypes');
|
||||||
} else if (options.maxFileSize && file.size > options.maxFileSize) {
|
} else if (options.maxFileSize && file.size >
|
||||||
|
options.maxFileSize) {
|
||||||
file.error = settings.i18n('maxFileSize');
|
file.error = settings.i18n('maxFileSize');
|
||||||
} else if ($.type(file.size) === 'number' &&
|
} else if ($.type(file.size) === 'number' &&
|
||||||
file.size < options.minFileSize) {
|
file.size < options.minFileSize) {
|
||||||
|
|||||||
2
static/js/lib/jquery.fileupload-video.js
vendored
2
static/js/lib/jquery.fileupload-video.js
vendored
@@ -19,7 +19,7 @@
|
|||||||
define([
|
define([
|
||||||
'jquery',
|
'jquery',
|
||||||
'load-image',
|
'load-image',
|
||||||
'jquery.fileupload-process'
|
'./jquery.fileupload-process'
|
||||||
], factory);
|
], factory);
|
||||||
} else {
|
} else {
|
||||||
// Browser globals:
|
// Browser globals:
|
||||||
|
|||||||
4
static/js/lib/jquery.fileupload.js
vendored
4
static/js/lib/jquery.fileupload.js
vendored
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* jQuery File Upload Plugin 5.32.2
|
* jQuery File Upload Plugin 5.32.3
|
||||||
* https://github.com/blueimp/jQuery-File-Upload
|
* https://github.com/blueimp/jQuery-File-Upload
|
||||||
*
|
*
|
||||||
* Copyright 2010, Sebastian Tschan
|
* Copyright 2010, Sebastian Tschan
|
||||||
@@ -399,7 +399,7 @@
|
|||||||
// Ignore non-multipart setting if not supported:
|
// Ignore non-multipart setting if not supported:
|
||||||
multipart = options.multipart || !$.support.xhrFileUpload,
|
multipart = options.multipart || !$.support.xhrFileUpload,
|
||||||
paramName = options.paramName[0];
|
paramName = options.paramName[0];
|
||||||
options.headers = options.headers || {};
|
options.headers = $.extend({}, options.headers);
|
||||||
if (options.contentRange) {
|
if (options.contentRange) {
|
||||||
options.headers['Content-Range'] = options.contentRange;
|
options.headers['Content-Range'] = options.contentRange;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
</h4>
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="widget-body">
|
<div class="widget-body">
|
||||||
<div class="widget-main no-padding" id="activity-container">
|
<div class="widget-main" id="activity-container">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -13,11 +13,9 @@
|
|||||||
<span class="fileupload-loading"></span>
|
<span class="fileupload-loading"></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="span5 fileupload-progress fade">
|
<div class="span5 fileupload-progress fade">
|
||||||
<div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0"
|
<div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100">
|
||||||
aria-valuemax="100">
|
<div class="progress-bar progress-bar-success" style="width:0%;"></div>
|
||||||
<div class="bar" style="width:0%;"></div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="progress-extended"> </div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<table role="presentation" class="table table-striped">
|
<table role="presentation" class="table table-striped">
|
||||||
@@ -60,7 +58,7 @@
|
|||||||
<td colspan="4">
|
<td colspan="4">
|
||||||
<div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0"
|
<div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0"
|
||||||
aria-valuemax="100" aria-valuenow="0">
|
aria-valuemax="100" aria-valuenow="0">
|
||||||
<div class="bar" style="width:0%;"></div>
|
<div class="progress-bar progress-bar-success" style="width:0%;"></div>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user