X7ROOT File Manager
Current Path:
/usr/local/share/perl5/CPAN
usr
/
local
/
share
/
perl5
/
CPAN
/
ðŸ“
..
ðŸ“
API
📄
Admin.pm
(7.61 KB)
📄
Author.pm
(6.68 KB)
📄
Bundle.pm
(9.91 KB)
📄
CacheMgr.pm
(7.48 KB)
📄
Complete.pm
(5.88 KB)
📄
Debug.pm
(2.05 KB)
📄
DeferredCode.pm
(189 B)
📄
Distribution.pm
(178.96 KB)
📄
Distroprefs.pm
(11.71 KB)
📄
Distrostatus.pm
(972 B)
ðŸ“
Exception
ðŸ“
FTP
📄
FTP.pm
(48.68 KB)
📄
FirstTime.pm
(73.02 KB)
ðŸ“
HTTP
📄
HandleConfig.pm
(23.62 KB)
📄
Index.pm
(21.71 KB)
📄
InfoObj.pm
(6.75 KB)
ðŸ“
Kwalify
📄
Kwalify.pm
(3.35 KB)
ðŸ“
LWP
ðŸ“
Meta
📄
Mirrors.pm
(17.82 KB)
📄
Module.pm
(21.87 KB)
📄
Nox.pm
(953 B)
ðŸ“
Plugin
📄
Plugin.pm
(3.14 KB)
📄
Prompt.pm
(567 B)
📄
Queue.pm
(6.96 KB)
📄
Shell.pm
(71.96 KB)
📄
Tarzip.pm
(16.25 KB)
📄
URL.pm
(588 B)
📄
Version.pm
(4.29 KB)
Editing: URL.pm
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- # vim: ts=4 sts=4 sw=4: package CPAN::URL; use overload '""' => "as_string", fallback => 1; # accessors: TEXT(the url string), FROM(DEF=>defaultlist,USER=>urllist), # planned are things like age or quality use vars qw( $VERSION ); $VERSION = "5.5"; sub new { my($class,%args) = @_; bless { %args }, $class; } sub as_string { my($self) = @_; $self->text; } sub text { my($self,$set) = @_; if (defined $set) { $self->{TEXT} = $set; } $self->{TEXT}; } 1;
Upload File
Create Folder