Re: mod_perl 2 and IPC::Open3

2008-09-05 Thread Torsten Foertsch
On Thu 04 Sep 2008, Tina Müller wrote:      $pid = open3($wtr, $rdr, $err,          '/usr/bin/source-highlight', '-s', 'perl', '-css', '--no-doc'); print $wtr $content;      close $wtr;      warn __PACKAGE__.':'.__LINE__.: before read loop\n;      while ($rdr) {          # this is

question on downloading CGI

2008-09-05 Thread practicalperl
Hello, I want to generate a data file which should be downloaded by clients. Rather than generate this file and put it in a web dir and tell clients to download it, is there any way to generate the content dynamicly and put it to cients? I mean I don't want to generate the temporary file. Thanks.

Re: question on downloading CGI

2008-09-05 Thread Sean Davis
On Fri, Sep 5, 2008 at 12:09 PM, [EMAIL PROTECTED] wrote: Hello, I want to generate a data file which should be downloaded by clients. Rather than generate this file and put it in a web dir and tell clients to download it, is there any way to generate the content dynamicly and put it to

Re: question on downloading CGI

2008-09-05 Thread Torsten Foertsch
On Fri 05 Sep 2008, [EMAIL PROTECTED] wrote: I want to generate a data file which should be downloaded by clients. Rather than generate this file and put it in a web dir and tell clients to download it, is there any way to generate the content dynamicly and put it to cients? I mean I don't

Re: question on downloading CGI

2008-09-05 Thread adam . prime
Quoting [EMAIL PROTECTED]: Hello, I want to generate a data file which should be downloaded by clients. Rather than generate this file and put it in a web dir and tell clients to download it, is there any way to generate the content dynamicly and put it to cients? I mean I don't want to