Re: POST with attachment issues

2005-11-16 Thread Alexis Marrero
Any words on this issue? On Nov 9, 2005, at 9:31 AM, Alexis Marrero wrote: Why do you use such strange file names anyway? Is not me, is the users. And my application shouldn't care about renaming files. Anyway, Perl can handle it. Regarding the diffs, I'll do that for next time. On Nov

RE: POST with attachment issues

2005-11-10 Thread Matthew.van.Eerde
Jacinta Richardson wrote: > Please note that such a change is likely to break a lot of existing > programs which read in a filename from somewhere and then don't chomp > it. This breakage would arguably be a feature. -- Matthew.van.Eerde (at) hbinc.com 805.964.4554 x902 Hispanic B

Re: POST with attachment issues

2005-11-09 Thread Jacinta Richardson
Gisle Aas wrote: >>Originally: >>142 require Symbol; >>143 my $fh = Symbol::gensym(); >>144 open($fh, $file) or Carp::croak("Can't open >>file $file: $!"); >>145 binmode($fh); >> >>After changes: >> >>142

Re: POST with attachment issues

2005-11-09 Thread Alexis Marrero
Why do you use such strange file names anyway? Is not me, is the users. And my application shouldn't care about renaming files. Anyway, Perl can handle it. Regarding the diffs, I'll do that for next time. On Nov 9, 2005, at 8:25 AM, Gisle Aas wrote: Alexis Marrero <[EMAIL PROTECTED]> wri

Re: POST with attachment issues

2005-11-09 Thread Gisle Aas
Alexis Marrero <[EMAIL PROTECTED]> writes: > This is to report a change that I had to do in the LWP code to avoid > "Can't open file" > Notice line 144. > > Originally: > 142 require Symbol; > 143 my $fh = Symbol::gensym(); > 144