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
#!/usr/bin/perl -w # -*- perl -*- BEGIN { require "t/pod2html-lib.pl"; } use strict; use Cwd; use Test::More tests => 3; my $cwd = cwd(); my $data_pos = tell DATA; # to read <DATA> twice convert_n_test("htmldir2", "test --htmldir and --htmlroot 2a", "--podpath=t", "--htmldir=t", "--quiet", ); seek DATA, $data_pos, 0; # to read <DATA> twice (expected output is the same) convert_n_test("htmldir2", "test --htmldir and --htmlroot 2b", "--podpath=t", "--quiet", ); seek DATA, $data_pos, 0; # to read <DATA> thrice (expected output is the same) # this test makes sure paths are absolute unless --htmldir is specified convert_n_test("htmldir2", "test --htmldir and --htmlroot 2c", "--podpath=t", "--podroot=$cwd", "--norecurse", # testing --norecurse, too "--quiet", ); __DATA__ <?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link rev="made" href="mailto:[PERLADMIN]" /> </head> <body> <ul id="index"> <li><a href="#NAME">NAME</a></li> <li><a href="#LINKS">LINKS</a></li> </ul> <h1 id="NAME">NAME</h1> <p>htmldir - Test --htmldir feature</p> <h1 id="LINKS">LINKS</h1> <p>Normal text, a <a>link</a> to nowhere,</p> <p>a link to <a>perlvar-copy</a>,</p> <p><a href="/t/htmlescp.html">htmlescp</a>,</p> <p><a href="/t/feature.html#Another-Head-1">"Another Head 1" in feature</a>,</p> <p>and another <a href="/t/feature.html#Another-Head-1">"Another Head 1" in feature</a>.</p> </body> </html>