From: Benoît Pin Date: Mon, 22 Jul 2013 13:49:05 +0000 (+0200) Subject: Utilisation de la nouvelle méthode Plinn.Folder.PlinnFolder.put_upload pour envoi... X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/commitdiff_plain/2aee6b687e552455a4f8089eab83660bfc73b299 Utilisation de la nouvelle méthode Plinn.Folder.PlinnFolder.put_upload pour envoi des fichiers. --- 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 @@ //