PATH:
usr
/
share
/
perl5
/
URI
package URI::IRI; # Experimental use strict; use URI (); use overload '""' => sub { shift->as_string }; sub new { my($class, $uri, $scheme) = @_; utf8::upgrade($uri); return bless { uri => URI->new($uri, $scheme), }, $class; } sub clone { my $self = shift; return bless { uri => $self->{uri}->clone, }, ref($self); } sub as_string { my $self = shift; return $self->{uri}->as_iri; } sub AUTOLOAD { use vars qw($AUTOLOAD); my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2); # We create the function here so that it will not need to be # autoloaded the next time. no strict 'refs'; *$method = sub { shift->{uri}->$method(@_) }; goto &$method; } sub DESTROY {} # avoid AUTOLOADing it 1;
[-] telnet.pm
[edit]
[-] ldapi.pm
[edit]
[-] _idna.pm
[edit]
[-] data.pm
[edit]
[-] _punycode.pm
[edit]
[-] Heuristic.pm
[edit]
[-] http.pm
[edit]
[-] ldaps.pm
[edit]
[-] rtspu.pm
[edit]
[+]
..
[-] tn3270.pm
[edit]
[-] _foreign.pm
[edit]
[-] sips.pm
[edit]
[-] https.pm
[edit]
[-] URL.pm
[edit]
[-] urn.pm
[edit]
[-] _generic.pm
[edit]
[-] Split.pm
[edit]
[-] nntp.pm
[edit]
[-] news.pm
[edit]
[-] _segment.pm
[edit]
[-] snews.pm
[edit]
[-] _userpass.pm
[edit]
[-] mms.pm
[edit]
[-] WithBase.pm
[edit]
[-] sip.pm
[edit]
[-] rsync.pm
[edit]
[-] ldap.pm
[edit]
[-] _query.pm
[edit]
[-] file.pm
[edit]
[-] rlogin.pm
[edit]
[-] Escape.pm
[edit]
[+]
urn
[-] _server.pm
[edit]
[-] ftp.pm
[edit]
[-] gopher.pm
[edit]
[-] ssh.pm
[edit]
[+]
file
[-] _login.pm
[edit]
[-] QueryParam.pm
[edit]
[-] IRI.pm
[edit]
[-] mailto.pm
[edit]
[-] rtsp.pm
[edit]
[-] pop.pm
[edit]
[-] _ldap.pm
[edit]