PATH:
usr
/
share
/
perl5
/
URI
package URI::_segment; # Represents a generic path_segment so that it can be treated as # a string too. use strict; use warnings; use URI::Escape qw(uri_unescape); use overload '""' => sub { $_[0]->[0] }, fallback => 1; our $VERSION = '5.09'; sub new { my $class = shift; my @segment = split(';', shift, -1); $segment[0] = uri_unescape($segment[0]); bless \@segment, $class; } 1;
[-] nntps.pm
[edit]
[-] ldap.pm
[edit]
[-] ssh.pm
[edit]
[-] ldaps.pm
[edit]
[-] mms.pm
[edit]
[-] QueryParam.pm
[edit]
[-] rtspu.pm
[edit]
[-] IRI.pm
[edit]
[-] urn.pm
[edit]
[-] sip.pm
[edit]
[-] https.pm
[edit]
[-] _query.pm
[edit]
[-] ldapi.pm
[edit]
[-] snews.pm
[edit]
[-] _generic.pm
[edit]
[-] sips.pm
[edit]
[-] _segment.pm
[edit]
[+]
urn
[-] data.pm
[edit]
[-] http.pm
[edit]
[+]
file
[-] WithBase.pm
[edit]
[-] mailto.pm
[edit]
[-] _server.pm
[edit]
[-] _login.pm
[edit]
[-] _userpass.pm
[edit]
[-] tn3270.pm
[edit]
[-] Split.pm
[edit]
[-] _idna.pm
[edit]
[-] pop.pm
[edit]
[-] file.pm
[edit]
[-] _foreign.pm
[edit]
[+]
..
[-] URL.pm
[edit]
[-] news.pm
[edit]
[-] telnet.pm
[edit]
[-] gopher.pm
[edit]
[-] _ldap.pm
[edit]
[-] Heuristic.pm
[edit]
[-] sftp.pm
[edit]
[-] rlogin.pm
[edit]
[-] nntp.pm
[edit]
[-] Escape.pm
[edit]
[-] _punycode.pm
[edit]
[-] ftp.pm
[edit]
[-] rsync.pm
[edit]
[-] rtsp.pm
[edit]