perl
view release on metacpan or search on metacpan
installhtml view on Meta::CPAN
splitpod=s
verbose
));
usage("invalid parameters") unless $result;
parse_command_line();
# set these variables to appropriate values if the user didn't specify
# values for them.
$htmldir = "$htmlroot/html" unless $htmldir;
$splitpod = "$podroot/pod" unless $splitpod;
# make sure that the destination directory exists
(mkdir($htmldir, 0755) ||
die "$0: cannot make directory $htmldir: $!\n") if ! -d $htmldir;
# the following array will eventually contain files that are to be
# ignored in the conversion process. these are files that have been
# process by splititem or splithead and should not be converted as a
# result.
my @splitdirs;
# split pods. It's important to do this before convert ANY pods because
# it may affect some of the links
@splitdirs = (); # files in these directories won't get an index
split_on_head($podroot, $htmldir, \@splitdirs, \@ignore, @splithead);
split_on_item($podroot, \@splitdirs, \@ignore, @splititem);
# convert the pod pages found in @poddirs
#warn "converting files\n" if $verbose;
#warn "\@ignore\t= @ignore\n" if $verbose;
foreach my $dir (@podpath) {
installdir($dir, $recurse, $podroot, \@splitdirs, \@ignore);
}
# now go through and create master indices for each pod we split
foreach my $dir (@splititem) {
print "creating index $htmldir/$dir.html\n" if $verbose;
create_index("$htmldir/$dir.html", "$htmldir/$dir");
}
foreach my $dir (@splithead) {
(my $pod = $dir) =~ s,^.*/,,;
$dir .= ".pod" unless $dir =~ /(\.pod|\.pm)$/;
# let pod2html create the file
runpod2html($dir, 1);
# now go through and truncate after the index
$dir =~ /^(.*?)(\.pod|\.pm)?$/sm;
my $file = "$htmldir/$1";
print "creating index $file.html\n" if $verbose;
# read in everything until what would have been the first =head
# directive, patching the index as we go.
open(H, '<', "$file.html") ||
die "$0: error opening $file.html for input: $!\n";
$/ = "";
my @data = ();
while (<H>) {
last if m!<h1 id="NAME">NAME</h1>!;
$_ =~ s{href="#(.*)">}{
my $url = "$file/@{[anchorify(qq($1))]}.html" ;
$url = relativize_url( $url, "$file.html" )
if ( ! defined $Options{htmlroot} || $Options{htmlroot} eq '' );
"href=\"$url\">" ;
}egi;
push @data, $_;
}
close(H);
# now rewrite the file
open(H, '>', "$file.html") ||
die "$0: error opening $file.html for output: $!\n";
print H @data, "</body>\n\n</html>\n\n\n";
close(H);
}
remove_tree(@splitdirs, {safe=>1});
##############################################################################
sub usage {
warn "$0: @_\n" if @_;
die $usage;
}
sub parse_command_line {
usage() if defined $Options{help};
$Options{help} = ""; # make -w shut up
# list of directories
@podpath = split(":", $Options{podpath}) if defined $Options{podpath};
# lists of files
@splithead = split(",", $Options{splithead}) if defined $Options{splithead};
@splititem = split(",", $Options{splititem}) if defined $Options{splititem};
$htmldir = $Options{htmldir} if defined $Options{htmldir};
$htmlroot = $Options{htmlroot} if defined $Options{htmlroot};
$podroot = $Options{podroot} if defined $Options{podroot};
$splitpod = $Options{splitpod} if defined $Options{splitpod};
$recurse = $Options{recurse} if defined $Options{recurse};
$verbose = $Options{verbose} if defined $Options{verbose};
@ignore = map "$podroot/$_", split(",", $Options{ignore}) if defined $Options{ignore};
}
sub create_index {
my($html, $dir) = @_;
(my $pod = $dir) =~ s,^.*/,,;
# get the list of .html files in this directory
opendir(DIR, $dir) ||
installhtml view on Meta::CPAN
$filename = "$2.pod";
# since we are splitting this file it shouldn't be converted.
push(@$ignore, "$podroot/$dirname/$filename");
# split the pod
splitpod("$podroot/$dirname/$filename", "$podroot/$dirname", $htmldir,
$splitdirs);
}
}
sub split_on_item {
my($podroot, $splitdirs, $ignore, @splititem) = @_;
my($pwd, $dirname, $filename);
print "splitting files by item.\n" if $verbose && $#splititem >= 0;
$pwd = getcwd();
my $splitter = rel2abs("$splitpod/splitpod", $pwd);
my $perl = rel2abs($^X, $pwd);
foreach my $pod (@splititem) {
# figure out the directory to split into
$pod =~ s,^([^/]*)$,/$1,;
$pod =~ m,(.*)/(.*?)(\.pod)?$,;
$dirname = "$1/$2";
$filename = "$2.pod";
# since we are splitting this file it shouldn't be converted.
push(@$ignore, "$podroot/$dirname.pod");
# split the pod
push(@$splitdirs, "$podroot/$dirname");
-d "$podroot/$dirname" and remove_tree("$podroot/$dirname", {safe=>1});
mkdir("$podroot/$dirname", 0755) ||
die "$0: error creating directory $podroot/$dirname: $!\n";
chdir("$podroot/$dirname") ||
die "$0: error changing to directory $podroot/$dirname: $!\n";
die "$splitter not found. Use '-splitpod dir' option.\n"
unless -f $splitter;
system($perl, $splitter, "../$filename") &&
warn "$0: error running '$splitter ../$filename'"
." from $podroot/$dirname";
}
chdir($pwd);
}
#
# splitpod - splits a .pod file into several smaller .pod files
# where a new file is started each time a =head[1-6] pod directive
# is encountered in the input file.
#
sub splitpod {
my($pod, $poddir, $htmldir, $splitdirs) = @_;
my(@poddata, @filedata, @heads);
my($file, $i, $j, $prevsec, $section, $nextsec);
print "splitting $pod\n" if $verbose;
# read the file in paragraphs
$/ = "";
open(SPLITIN, '<', $pod) ||
die "$0: error opening $pod for input: $!\n";
@filedata = <SPLITIN>;
close(SPLITIN) ||
die "$0: error closing $pod: $!\n";
# restore the file internally by =head[1-6] sections
@poddata = ();
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;
}
}
# create list of =head[1-6] sections so that we can rewrite
# L<> links as necessary.
my %heads = ();
foreach $i (0..$#poddata) {
$heads{anchorify($1)} = 1 if $poddata[$i] =~ /=head[1-6]\s+(.*)/;
}
# create a directory of a similar name and store all the
# files in there
$pod =~ s,.*/(.*),$1,; # get the last part of the name
my $dir = $pod;
$dir =~ s/\.pod//g;
push(@$splitdirs, "$poddir/$dir");
-d "$poddir/$dir" and remove_tree("$poddir/$dir", {safe=>1});
mkdir("$poddir/$dir", 0755) ||
die "$0: could not create directory $poddir/$dir: $!\n";
$poddata[0] =~ /^\s*=head[1-6]\s+(.*)/;
$section = "";
$nextsec = $1;
# for each section of the file create a separate pod file
for ($i = 0; $i <= $#poddata; $i++) {
# determine the "prev" and "next" links
$prevsec = $section;
$section = $nextsec;
if ($i < $#poddata) {
$poddata[$i+1] =~ /^\s*=head[1-6]\s+(.*)/;
$nextsec = $1;
} else {
$nextsec = "";
}
# determine an appropriate filename (this must correspond with
# what pod2html will try and guess)
# $poddata[$i] =~ /^\s*=head[1-6]\s+(.*)/;
$file = "$dir/" . anchorify($section) . ".pod";
# create the new .pod file
print "\tcreating $poddir/$file\n" if $verbose;
open(SPLITOUT, '>', "$poddir/$file") ||
die "$0: error opening $poddir/$file for output: $!\n";
$poddata[$i] =~ s,L<([^<>]*)>,
defined $heads{anchorify($1)} ? "L<$dir/$1>" : "L<$1>"
( run in 1.031 second using v1.01-cache-2.11-cpan-364913b4093 )