From a6ea6335a56fe43123ba1709d52b943972ce4787 Mon Sep 17 00:00:00 2001 From: Sourya Vatsyayan Date: Sun, 4 Jan 2015 13:00:51 +0530 Subject: [PATCH] Updated file uploads progress bar section --- docs/patterns/fileuploads.rst | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/docs/patterns/fileuploads.rst b/docs/patterns/fileuploads.rst index 339e6b53..65975448 100644 --- a/docs/patterns/fileuploads.rst +++ b/docs/patterns/fileuploads.rst @@ -168,14 +168,11 @@ client asks the server every 5 seconds how much it has transmitted already. Do you realize the irony? The client is asking for something it should already know. -Now there are better solutions to that work faster and more reliable. The -web changed a lot lately and you can use HTML5, Java, Silverlight or Flash -to get a nicer uploading experience on the client side. Look at the -following libraries for some nice examples how to do that: - -- `Plupload `_ - HTML5, Java, Flash -- `SWFUpload `_ - Flash -- `JumpLoader `_ - Java +Now there are better solutions that work faster and are more reliable. There +are JavaScript libraries like jQuery (http://jQuery.com) that have form plugins +to ease the construction of progress bar. Another great option is dropzone.js +(http://www.dropzonejs.com) that allows users to drag and drop files on to the +page. An Easier Solution