Skip Menu |

This queue is for tickets about the Net-DAV-Server CPAN distribution.

Report information
The Basics
Id: 60887
Status: new
Priority: 0/
Queue: Net-DAV-Server

People
Owner: Nobody in particular
Requestors: contact [...] clipland.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.300_05
Fixed in: (no value)



Subject: UTF-8 filename in Destination header
For example, the copy {} function uses these lines: my $destination = $request->header('Destination'); $destination = URI->new($destination)->path; Problem is, that the utf8 challenges from another filed bug apply here as well, so we need to do: # no need to uri_unescape in the first step as URI treats # escaped uris equally well and always returns uri_escaped anyway, so: my $destination = $request->header('Destination'); $destination = uri_unescape(URI->new($destination)->path);