Stas Bekman wrote:
>Markus Wichitill wrote:
>
>
>>Stas Bekman wrote:
>>
>>
>>
>>>Index: t/filter/TestFilter/out_bbs_filebucket.pm
>>>===================================================================
>>>RCS file:
>>>/home/cvs/modperl-2.0/t/filter/TestFilter/out_bbs_filebucket.pm,v
>>>retrieving revision 1.1
>>>diff -u -r1.1 out_bbs_filebucket.pm
>>>--- t/filter/TestFilter/out_bbs_filebucket.pm 13 Aug 2004 01:51:14
>>>-0000 1.1
>>>+++ t/filter/TestFilter/out_bbs_filebucket.pm 13 Aug 2004 17:24:19
>>>-0000
>>>@@ -58,6 +58,9 @@
>>>
>>> $r->content_type('text/plain');
>>> my $file = $r->args;
>>>+ warn "file: $file\n";
>>>+
>>>+ $file =~ s|\\|/|g; # sendfile wants a unix style separator?
>>>
>>> $r->sendfile($file);
>>>
>>>
>>The backslashes are URL-escaped, either of the following works:
>>
>>$file =~ s|%5C|\\|g;
>>$file =~ s|%5C|/|g;
>>
>>
>
>Excellent, committed. Thanks Markus.
>
This allows the test to run successfully in isolation for me, but "nmake
test" now hangs when it reaches this test.
Even reverting this change I still find that "nmake test" hangs when it
gets to that test. Must be something else that's changed since Friday...
- Steve
------------------------------------------------
Radan Computational Ltd.
The information contained in this message and any files transmitted with it are
confidential and intended for the addressee(s) only. If you have received this
message in error or there are any problems, please notify the sender immediately. The
unauthorized use, disclosure, copying or alteration of this message is strictly
forbidden. Note that any views or opinions presented in this email are solely those
of the author and do not necessarily represent those of Radan Computational Ltd. The
recipient(s) of this message should check it and any attached files for viruses: Radan
Computational will accept no liability for any damage caused by any virus transmitted
by this email.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]