blob: 50a09f0989934b461acb8f32cbd641dddec91e22 (
plain)
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
26
27
|
package URI::http;
use strict;
use warnings;
our $VERSION = '5.10';
use parent 'URI::_server';
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;
|