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 /
ext /
Pod-Html /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
anchorify.t
1.24
KB
-r--r--r--
2014-12-27 11:48
cache.pod
54
B
-r--r--r--
2014-12-27 11:48
cache.t
1.89
KB
-r--r--r--
2014-12-27 11:48
crossref.pod
393
B
-r--r--r--
2014-12-27 11:48
crossref.t
2.27
KB
-r--r--r--
2014-12-27 11:48
crossref2.t
1.93
KB
-r--r--r--
2014-12-27 11:48
crossref3.t
2.02
KB
-r--r--r--
2014-12-27 11:48
eol.t
1.67
KB
-r--r--r--
2014-12-27 11:48
feature.pod
172
B
-r--r--r--
2014-12-27 11:48
feature.t
1.52
KB
-r--r--r--
2014-12-27 11:48
feature2.pod
172
B
-r--r--r--
2014-12-27 11:48
feature2.t
1.74
KB
-r--r--r--
2014-12-27 11:48
htmldir1.pod
239
B
-r--r--r--
2014-12-27 11:48
htmldir1.t
2.32
KB
-r--r--r--
2014-12-27 11:48
htmldir2.pod
212
B
-r--r--r--
2014-12-27 11:48
htmldir2.t
1.68
KB
-r--r--r--
2014-12-27 11:48
htmldir3.pod
208
B
-r--r--r--
2014-12-27 11:48
htmldir3.t
2.04
KB
-r--r--r--
2014-12-27 11:48
htmldir4.pod
212
B
-r--r--r--
2014-12-27 11:48
htmldir4.t
1.52
KB
-r--r--r--
2014-12-27 11:48
htmldir5.pod
208
B
-r--r--r--
2014-12-27 11:48
htmldir5.t
1.62
KB
-r--r--r--
2014-12-27 11:48
htmlescp.pod
371
B
-r--r--r--
2014-12-27 11:48
htmlescp.t
1.08
KB
-r--r--r--
2014-12-27 11:48
htmllink.pod
1010
B
-r--r--r--
2014-12-27 11:48
htmllink.t
3
KB
-r--r--r--
2014-12-27 11:48
htmlview.pod
1.97
KB
-r--r--r--
2014-12-27 11:48
htmlview.t
4.1
KB
-r--r--r--
2014-12-27 11:48
pod2html-lib.pl
3.08
KB
-r--r--r--
2014-12-27 11:48
poderr.pod
132
B
-r--r--r--
2014-12-27 11:48
poderr.t
1.11
KB
-r--r--r--
2014-12-27 11:48
podnoerr.pod
132
B
-r--r--r--
2014-12-27 11:48
podnoerr.t
818
B
-r--r--r--
2014-12-27 11:48
Save
Rename
# -*- perl -*- use strict; use Pod::Html qw( anchorify ); use Test::More tests => 1; my @filedata; { local $/ = ''; @filedata = <DATA>; } my (@poddata, $i, $j); for ($i = 0, $j = -1; $i <= $#filedata; $i++) { $j++ if ($filedata[$i] =~ /^\s*=head[1-6]/); if ($j >= 0) { $poddata[$j] = "" unless defined $poddata[$j]; $poddata[$j] .= "\n$filedata[$i]" if $j >= 0; } } my %heads = (); foreach $i (0..$#poddata) { $heads{anchorify($1)} = 1 if $poddata[$i] =~ /=head[1-6]\s+(.*)/; } my %expected = map { $_ => 1 } qw( name description subroutine error method has_a_wordspace hastrailingwordspace hasleadingwordspace has_extra_internalwordspace hasquotes hasquestionmark has_hyphen_and_space ); is_deeply( \%heads, \%expected, "Got expected POD heads" ); __DATA__ =head1 NAME anchorify - Test C<Pod::Html::anchorify()> =head1 DESCRIPTION alpha =head2 Subroutine beta =head3 Error gamma =head4 Method delta =head4 Has A Wordspace delta =head4 HasTrailingWordspace epsilon =head4 HasLeadingWordspace zeta =head4 Has Extra InternalWordspace eta =head4 Has"Quotes" theta =head4 Has?QuestionMark iota =head4 Has-Hyphen And Space kappa =cut __END__