Re: script to upload from URL

2011-12-14 Thread Moish
http://sourceforge.net/projects/download-webgui/ http://exir.ru/wget4web/ sorry On 14/12/2011 09:41, Hetz Ben Hamo wrote: Hi, On Wed, Dec 14, 2011 at 9:25 AM, Moish mo...@mln.co.il mailto:mo...@mln.co.il wrote: wget2web Link? Hetz On 14/12/2011 03:32, Amos Shapira wrote:

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

Re: script to upload from URL

2011-12-13 Thread shimi
2011/12/13 Hetz Ben Hamo het...@gmail.com 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

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 het...@gmail.com Hi, I've written a simple bash script to upload a file from

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

Re: script to upload from URL

2011-12-13 Thread Amos Shapira
2011/12/14 David Ronkin 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 addresses in gmail, search terms in search etc) works - it sets a

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 dron...@gmail.com 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

Re: script to upload from URL

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