X-Git-Url: https://svn.cri.mines-paristech.fr/git/Portfolio.git/blobdiff_plain/b86e0e692ec682ae14874204d52f3ffc136cb621..d47c65f7a3142f2030d6567b2171660b8d4981d2:/skins/fileupload.js?ds=sidebyside

diff --git a/skins/fileupload.js b/skins/fileupload.js
index 7229df9..a67b3cf 100644
--- a/skins/fileupload.js
+++ b/skins/fileupload.js
@@ -50,8 +50,6 @@ DDFileUploader.prototype.handleFiles = function(files) {
 		slide = this.createSlide(file);
 		this.previewQueuePush(slide);
 		this.uploadQueuePush(slide);
-		// this.previewUploadedImage(file);
-		// this.upload(file);
 	}
 };
 
@@ -66,8 +64,9 @@ DDFileUploader.prototype.upload = function(slide) {
 	addListener(req.upload, 'progress', function(evt){self.progressHandler(evt);});
 	addListener(req.upload, 'load', function(evt){self.uploadCompleteHandler(evt);});
 
-	req.open("PUT", this.uploadUrl + '/' + file.name);
+	req.open("PUT", this.uploadUrl); // + '/' + file.name);
 	req.setRequestHeader("Content-Type", file.type);
+	req.setRequestHeader("X-File-Name", file.name);
 	addListener(reader, 'load', function(evt){req.sendAsBinary(evt.target.result);});
 	reader.readAsBinaryString(file);
 };
@@ -90,8 +89,9 @@ DDFileUploader.prototype.progressHandler = function(evt) {
 
 DDFileUploader.prototype.previewQueuePush = function(slide) {
 	this.previewQueue.push(slide);
-	if (!this._previewQueueRunning)
+	if (!this._previewQueueRunning) {
 		this.startPreviewQueue();
+	}
 };
 
 DDFileUploader.prototype.startPreviewQueue = function() {
@@ -101,16 +101,19 @@ DDFileUploader.prototype.startPreviewQueue = function() {
 
 DDFileUploader.prototype.previewQueueLoadNext = function() {
 	var slide = this.previewQueue.shift();
-	if (slide)
+	if (slide) {
 		this.previewUploadedImage(slide);
-	else
+	}
+	else {
 		this._previewQueueRunning = false;
+	}
 };
 
 DDFileUploader.prototype.uploadQueuePush = function(slide) {
 	this.uploadQueue.push(slide);
-	if (!this._uploadQueueRunning)
+	if (!this._uploadQueueRunning) {
 		this.startUploadQueue();
+	}
 };
 
 DDFileUploader.prototype.startUploadQueue = function() {
@@ -121,10 +124,12 @@ DDFileUploader.prototype.startUploadQueue = function() {
 
 DDFileUploader.prototype.uploadQueueLoadNext = function() {
 	var slide = this.uploadQueue.shift();
-	if (slide)
+	if (slide) {
 		this.upload(slide);
-	else
+	}
+	else {
 		this._uploadQueueRunning = false;
+	}
 };
 
 
@@ -142,7 +147,6 @@ DDFileUploader.prototype.createSlide = function(file) {
 	var size = this.thumbnailSize;
 	var self = this;
 	img.onload = function(evt) {
-		console.info('createSlide loaded.')
 		if (img.width > img.height) { // landscape
 			img.height = Math.round(size * img.height / img.width);
 			img.width = size;
@@ -165,7 +169,6 @@ DDFileUploader.prototype.createSlide = function(file) {
 
 	slide.appendChild(a);
 	slide.appendChild(progressBar);
-	// this.progressBar = progressBar;
 	this.dropbox.appendChild(slide);
 	
 	return slide;
@@ -184,10 +187,8 @@ DDFileUploader.prototype.previewUploadedImage = function(slide) {
 	var self = this;
 	
 	reader.onload = function(evt) {
-		console.info('previewUploadedImage loaded.')
 		slide.img.src = evt.target.result;
-		setTimeout(function(){self.previewQueueLoadNext();}, 1000);
-		// self.previewQueueLoadNext();
+		setTimeout(function(){self.previewQueueLoadNext();}, 500);
 	};
 	reader.readAsDataURL(slide.file);
 };