Re: script to upload from URL

2011-12-13 Thread Hetz Ben Hamo
Hi, On Wed, Dec 14, 2011 at 9:25 AM, Moish wrote: > wget2web > > Link? Hetz > On 14/12/2011 03:32, Amos Shapira wrote: > >> 2011/12/14 David Ronkin mailto:dron...@gmail.com>> >> >>Call it asynchronously with ajax or jquery get/post - while waiting >>for response you can print whatever

Re: script to upload from URL

2011-12-13 Thread Moish
wget2web On 14/12/2011 03:32, Amos Shapira wrote: 2011/12/14 David Ronkin mailto:dron...@gmail.com>> Call it asynchronously with ajax or jquery get/post - while waiting for response you can print whatever you what. I second that - that's, for instance, how Google's auto-completion (of

Re: script to upload from URL

2011-12-13 Thread Amos Shapira
2011/12/14 David Ronkin > Call it asynchronously with ajax or jquery get/post - while waiting for > response you can print whatever you what. > I second that - that's, for instance, how Google's auto-completion (of addresses in gmail, search terms in search etc) works - it sets a background Java

Re: script to upload from URL

2011-12-13 Thread Evgeniy Ginzburg
Hi. Do second prototype using another language use libcurl it have CURLOPT_NOPROGRESS, use AJAX as envelope. For really big files it may be better to create some progress log or read file size from filesysem directly with AJAX callback function to check it status periodically. 2011/12/13 David Ro

Re: script to upload from URL

2011-12-13 Thread David Ronkin
Call it asynchronously with ajax or jquery get/post - while waiting for response you can print whatever you what. David -- בברכה, דוד רונקין נא בקרו בבלוג שלי: http://dronkin.blogspot.com 2011/12/13 Hetz Ben Hamo > Hi, > > I've written a simple bash script to upload a file from a remote serv

Re: script to upload from URL

2011-12-13 Thread shimi
2011/12/13 Hetz Ben Hamo > Hi, > > I've written a simple bash script to upload a file from a remote server as > a CGI script (yes, I know, I should use another language, but it's just a > proof-of-concept). > > It goes like this: A simple HTML page gives the user a text line to enter > a URL and

script to upload from URL

2011-12-13 Thread Hetz Ben Hamo
Hi, I've written a simple bash script to upload a file from a remote server as a CGI script (yes, I know, I should use another language, but it's just a proof-of-concept). It goes like this: A simple HTML page gives the user a text line to enter a URL and "upload" button, which submits the data u