Hi, I''m downloading many files at a time, i wants to show the list of files downloading in pop up. For ex: "Downloading file 1 of 12" etc. Anyone please help this, how to do this in rails 2.3.14. Is the filemanager gem is useful for this. Awaiting for replies. Thanks, Deepika -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 25 January 2012 07:24, Deepika Vummiti <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hi, > > I''m downloading many files at a time, i wants to show the list of > files downloading in pop up. For ex: "Downloading file 1 of 12" etc. > Anyone please help this, how to do this in rails 2.3.14. > > Is the filemanager gem is useful for this. Awaiting for replies.How are you downloading multiple files at a time? Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Am downloading multiple files at a time. Using Zip file format.> > How are you downloading multiple files at a time? > > Colin-- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 25 January 2012 09:18, Deepika Vummiti <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Am downloading multiple files at a time. Using Zip file format.Please don''t top post, it makes it difficult to follow the thread. Insert your reply at appropriate places in the previous message. Thanks. The processes of zipping the files puts all the individual files into one zip file, therefore you are actually downloading just one file, the zip file, that contains information that allows the file to unzipped back to the originals. Since you are only downloading one file it is not possible to show a progress bar saying which file is currently being downloaded. Colin>> >> How are you downloading multiple files at a time?-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Colin Law wrote in post #1042447:> On 25 January 2012 09:18, Deepika Vummiti <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >> Am downloading multiple files at a time. Using Zip file format. > > Please don''t top post, it makes it difficult to follow the thread. > Insert your reply at appropriate places in the previous message. > Thanks. > > The processes of zipping the files puts all the individual files into > one zip file, therefore you are actually downloading just one file, > the zip file, that contains information that allows the file to > unzipped back to the originals. Since you are only downloading one > file it is not possible to show a progress bar saying which file is > currently being downloaded. > > ColinInstead of Zip file, is there any other possibility to download multiple files. I want to download multiple files without zip format and should show the download files remaining while downloading. is there any other methodin rails to do like this. Thanks, Deepika. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.