Nicolas Ritouet

Results 5 issues of Nicolas Ritouet

@EvilDrW sent us a nice PR to refactor dpd-fileupload and inherit from collection (https://github.com/NicolasRitouet/dpd-fileupload/pull/47). This introduced some backward compatibility. We should collect in this ticket the backward-compatibility issues we have...

Need contributions from community

Add a nice UI in the dashboard to display the uploaded files with the params

enhancement

Example with Formidable: ``` on('progress', function(bytesReceived, bytesExpected) { var percentageUpload = '100*(bytesReceived/bytesExpected)'; ctx.session.emit(percentageUpload, xxx, xxx); // Should emit only to user } ```

enhancement

If a file with the same name already exists, we should handle that: - throw an error or - append (n) at the end of the file Check should probably...

enhancement

I don't like [this](https://github.com/NicolasRitouet/dpd-fileupload/blob/master/index.js#L25): ``` fullDirectory: __dirname + "/../../public/" + (this.config.directory || 'upload') + "/" ``` Can we find a better way?

enhancement