/usr/share/perl5/URI/http.pm is in liburi-perl 1.59-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | package URI::http;
require URI::_server;
@ISA=qw(URI::_server);
use strict;
sub default_port { 80 }
sub canonical
{
my $self = shift;
my $other = $self->SUPER::canonical;
my $slash_path = defined($other->authority) &&
!length($other->path) && !defined($other->query);
if ($slash_path) {
$other = $other->clone if $other == $self;
$other->path("/");
}
$other;
}
1;
|