From 2aee6b687e552455a4f8089eab83660bfc73b299 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Benoi=CC=82t=20Pin?= Date: Mon, 22 Jul 2013 15:49:05 +0200 Subject: [PATCH] =?utf8?q?Utilisation=20de=20la=20nouvelle=20m=C3=A9thode?= =?utf8?q?=20Plinn.Folder.PlinnFolder.put=5Fupload=20pour=20envoi=20des=20?= =?utf8?q?fichiers.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- skins/fileupload.js | 5 +++-- skins/photo_layout_macros.pt | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/skins/fileupload.js b/skins/fileupload.js index 77d7b03..0d2ce8c 100644 --- a/skins/fileupload.js +++ b/skins/fileupload.js @@ -49,7 +49,7 @@ DDFileUploader.prototype.handleFiles = function(files) { file = files[i]; slide = this.createSlide(file); // this.previewQueuePush(slide); - // this.uploadQueuePush(slide); + this.uploadQueuePush(slide); } }; @@ -65,8 +65,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); req.setRequestHeader("Content-Type", file.type); + req.setRequestHeader("X-File-Name", file.name); addListener(reader, 'load', function(evt){ console.info('load'); diff --git a/skins/photo_layout_macros.pt b/skins/photo_layout_macros.pt index ec7fa3c..82511dd 100644 --- a/skins/photo_layout_macros.pt +++ b/skins/photo_layout_macros.pt @@ -89,7 +89,7 @@ //