#!/usr/bin/perl -w
use strict;
use Pod::Simple::HTML;
use File::Find::Rule;
use File::Spec;
use File::Basename;
use File::Path;
=head1 NAME
local-doc.pl - create local documentation
=cut
my ($docdir,$bindir) = @ARGV;
my $rel_docroot = '.';
{
no warnings 'redefine';
sub Pod::Simple::HTML::resolve_pod_page_link {
my ($self,$link) = @_;
my $to = $link;
$to =~ s!::!-!g;
$to .= '.html';
# warn "$rel_docroot/$to";
return "$rel_docroot/$to";
};
};
my @files = File::Find::Rule->file()->name(qr(^.*\.(pm|pl|pod)$))->in(
+$bindir);
for my $file (@files) {
my $input = $file;
my @outfile = File::Spec->splitdir( File::Spec->abs2rel( $file, $bin
+dir ));
my $outfile = File::Spec->catfile( $docdir, join "-", @outfile );
$outfile =~ s/\.[^.]+$/.html/;
# print "Generating $outfile";
my $stylesheet = "style.css";
my $parser = Pod::Simple::HTML->new();
my $html;
$parser->output_string($html);
$parser->parse_file($file);
$html =~ s!</title>\s*</head>!</title><link rel="stylesheet" href="$
+stylesheet" /></head>!sm;
open OUTPUT, ">", $outfile
or die "Couldn't create '$outfile': $!";
print OUTPUT $html;
close OUTPUT;
# print ", done.\n";
};
=head1 AUTHOR
Max Maischein (corion@cpan.org)
=cut
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|