5 use vars
qw($VERSION @ISA @EXPORT);
8 @EXPORT = qw(pod2html htmlify);
17 use locale
; # make \w work right in non-ASCII lands
21 Pod::Html - module to convert pod files to HTML
30 Converts files from pod format (see L<perlpod>) to HTML format. It
31 can automatically generate indexes and cross-references, and it keeps
32 a cache of things it knows how to cross-reference.
36 Pod::Html takes the following arguments:
42 --backlink="Back to Top"
44 Adds "Back to Top" links in front of every HEAD1 heading (except for
45 the first). By default, no backlink are being generated.
51 Specify the URL of a cascading style sheet.
57 Flushes the item and directory caches.
64 Creates header and footer blocks containing the text of the NAME
65 section. By default, no headers are being generated.
71 Displays the usage message.
77 Sets the directory in which the resulting HTML file is placed. This
78 is used to generate relative links to other files. Not passing this
79 causes all links to be absolute, since this is the value that tells
80 Pod::Html the root of the documentation tree.
86 Sets the base URL for the HTML files. When cross-references are made,
87 the HTML root is prepended to the URL.
94 Generate an index at the top of the HTML file. This is the default
101 Specify the pod file to convert. Input is taken from STDIN if no
106 --libpods=name:...:name
108 List of page names (eg, "perlfunc") which contain linkable C<=item>s.
115 Use Netscape HTML directives when applicable. By default, they will
122 Specify the HTML file to create. Output goes to STDOUT if no outfile
127 --podpath=name:...:name
129 Specify which subdirectories of the podroot contain pod files whose
130 HTML converted forms can be linked-to in cross-references.
136 Specify the base directory for finding library pods.
143 Don't display I<mostly harmless> warning messages. These messages
144 will be displayed by default. But this is not the same as C<verbose>
152 Recurse into subdirectories specified in podpath (default behaviour).
158 Specify the title of the resulting HTML file.
165 Display progress messages. By default, they won't be displayed.
172 "--podpath=lib:ext:pod:vms",
173 "--podroot=/usr/src/perl",
174 "--htmlroot=/perl/nmanual",
175 "--libpods=perlfunc:perlguts:perlvar:perlrun:perlop",
178 "--outfile=/perl/nmanual/foo.html");
182 Uses $Config{pod2html} to setup default options.
186 Tom Christiansen, E<lt>tchrist@perl.comE<gt>.
194 This program is distributed under the Artistic License.
198 my $cache_ext = $^O
eq 'VMS' ?
".tmp" : ".x~~";
199 my $dircache = "pod2htmd$cache_ext";
200 my $itemcache = "pod2htmi$cache_ext";
202 my @begin_stack = (); # begin/end stack
204 my @libpods = (); # files to search for links from C<> directives
205 my $htmlroot = "/"; # http-server base directory from which all
206 # relative paths in $podpath stem.
207 my $htmldir = ""; # The directory to which the html pages
208 # will (eventually) be written.
209 my $htmlfile = ""; # write to stdout by default
210 my $htmlfileurl = "" ; # The url that other files would use to
211 # refer to this file. This is only used
212 # to make relative urls that point to
214 my $podfile = ""; # read from stdin by default
215 my @podpath = (); # list of directories containing library pods.
216 my $podroot = "."; # filesystem base directory from which all
217 # relative paths in $podpath stem.
218 my $css = ''; # Cascading style sheet
219 my $recurse = 1; # recurse on subdirectories in $podpath.
220 my $quiet = 0; # not quiet by default
221 my $verbose = 0; # not verbose by default
222 my $doindex = 1; # non-zero if we should generate an index
223 my $backlink = ''; # text for "back to top" links
224 my $listlevel = 0; # current list depth
225 my @listend = (); # the text to use to end the list.
226 my $after_lpar = 0; # set to true after a par in an =item
227 my $ignore = 1; # whether or not to format text. we don't
228 # format text until we hit our first pod
231 my %items_named = (); # for the multiples of the same item in perlfunc
233 my $netscape = 0; # whether or not to use netscape directives.
234 my $title; # title to give the pod(s)
235 my $header = 0; # produce block header/footer
236 my $top = 1; # true if we are at the top of the doc. used
237 # to prevent the first <HR> directive.
238 my $paragraph; # which paragraph we're processing (used
239 # for error messages)
240 my $ptQuote = 0; # status of double-quote conversion
241 my %pages = (); # associative array used to find the location
242 # of pages referenced by L<> links.
243 my %sections = (); # sections within this page
244 my %items = (); # associative array used to find the location
245 # of =item directives referenced by C<> links
246 my %local_items = (); # local items - avoid destruction of %items
247 my $Is83; # is dos with short filenames (8.3)
250 $dircache = "pod2htmd$cache_ext";
251 $itemcache = "pod2htmi$cache_ext";
253 @begin_stack = (); # begin/end stack
255 @libpods = (); # files to search for links from C<> directives
256 $htmlroot = "/"; # http-server base directory from which all
257 # relative paths in $podpath stem.
258 $htmldir = ""; # The directory to which the html pages
259 # will (eventually) be written.
260 $htmlfile = ""; # write to stdout by default
261 $podfile = ""; # read from stdin by default
262 @podpath = (); # list of directories containing library pods.
263 $podroot = "."; # filesystem base directory from which all
264 # relative paths in $podpath stem.
265 $css = ''; # Cascading style sheet
266 $recurse = 1; # recurse on subdirectories in $podpath.
267 $quiet = 0; # not quiet by default
268 $verbose = 0; # not verbose by default
269 $doindex = 1; # non-zero if we should generate an index
270 $backlink = ''; # text for "back to top" links
271 $listlevel = 0; # current list depth
272 @listend = (); # the text to use to end the list.
273 $after_lpar = 0; # set to true after a par in an =item
274 $ignore = 1; # whether or not to format text. we don't
275 # format text until we hit our first pod
280 $netscape = 0; # whether or not to use netscape directives.
281 $header = 0; # produce block header/footer
282 $title = ''; # title to give the pod(s)
283 $top = 1; # true if we are at the top of the doc. used
284 # to prevent the first <HR> directive.
285 $paragraph = ''; # which paragraph we're processing (used
286 # for error messages)
287 %sections = (); # sections within this page
289 # These are not reinitialised here but are kept as a cache.
290 # See get_cache and related cache management code.
291 #%pages = (); # associative array used to find the location
292 # of pages referenced by L<> links.
293 #%items = (); # associative array used to find the location
294 # of =item directives referenced by C<> links
300 # clean_data: global clean-up of pod data
305 for( $i = 0; $i <= $#$dataref; $i++ ){
306 ${$dataref}[$i] =~ s/\s+\Z//;
308 # have a look for all-space lines
309 if( ${$dataref}[$i] =~ /^\s+$/m ){
310 my @chunks = split( /^\s+$/m, ${$dataref}[$i] );
311 splice( @
$dataref, $i, 1, @chunks );
324 $Is83 = 0 if (defined (&Dos
::UseLFN
) && Dos
::UseLFN
());
326 # cache of %pages and %items from last time we ran pod2html
328 #undef $opt_help if defined $opt_help;
330 # parse the command-line parameters
331 parse_command_line
();
333 # set some variables to their default values if necessary
335 unless (@ARGV && $ARGV[0]) {
336 $podfile = "-" unless $podfile; # stdin
337 open(POD
, "<$podfile")
338 || die "$0: cannot open $podfile file for input: $!\n";
340 $podfile = $ARGV[0]; # XXX: might be more filenames
343 $htmlfile = "-" unless $htmlfile; # stdout
344 $htmlroot = "" if $htmlroot eq "/"; # so we don't get a //
345 $htmldir =~ s
#/\z## ; # so we don't get a //
347 && defined( $htmldir )
349 && substr( $htmlfile, 0, length( $htmldir ) ) eq $htmldir
352 # Set the 'base' url for this file, so that we can use it
353 # as the location from which to calculate relative links
354 # to other files. If this is '', then absolute links will
355 # be used throughout.
356 $htmlfileurl= "$htmldir/" . substr( $htmlfile, length( $htmldir ) + 1);
359 # read the pod a paragraph at a time
360 warn "Scanning for sections in input file(s)\n" if $verbose;
364 clean_data
( \
@poddata );
366 # scan the pod for =head[1-6] directives and build an index
367 my $index = scan_headings
(\
%sections, @poddata);
370 warn "No headings in $podfile\n" if $verbose;
373 # open the output file
374 open(HTML
, ">$htmlfile")
375 || die "$0: cannot open $htmlfile file for output: $!\n";
377 # put a title in the HTML file if one wasn't specified
380 for (my $i = 0; $i < @poddata; $i++) {
381 if ($poddata[$i] =~ /^=head1\s*NAME\b/m) {
382 for my $para ( @poddata[$i, $i+1] ) {
384 if ($title) = $para =~ /(\S+\s+-+.*\S)/s;
391 if (!$title and $podfile =~ /\.pod\z/) {
392 # probably a split pod so take first =head[12] as title
393 for (my $i = 0; $i < @poddata; $i++) {
394 last if ($title) = $poddata[$i] =~ /^=head[12]\s*(.*)/;
396 warn "adopted '$title' as title for $podfile\n"
397 if $verbose and $title;
400 $title =~ s/\s*\(.*\)//;
402 warn "$0: no title for $podfile" unless $quiet;
403 $podfile =~ /^(.*)(\.[^.\/]+)?\z
/s
;
404 $title = ($podfile eq "-" ?
'No Title' : $1);
405 warn "using $title" if $verbose;
407 my $csslink = $css ?
qq(\n<LINK REL
="stylesheet" HREF
="$css" TYPE
="text/css">) : '';
408 $csslink =~ s
,\\,/,g
;
409 $csslink =~ s
,(/.):,$1|,;
411 my $block = $header ?
<<END_OF_BLOCK : '';
412 <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
413 <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
414 <FONT SIZE=+1><STRONG><P CLASS=block> $title</P></STRONG></FONT>
419 print HTML <<END_OF_HEAD
;
422 <TITLE
>$title</TITLE
>$csslink
423 <LINK REV
="made" HREF
="mailto:$Config{perladmin}">
430 # load/reload/validate/cache %pages and %items
431 get_cache
($dircache, $itemcache, \
@podpath, $podroot, $recurse);
433 # scan the pod for =item directives
434 scan_items
( \
%local_items, "", @poddata);
436 # put an index at the top of the file. note, if $doindex is 0 we
437 # still generate an index, but surround it with an html comment.
438 # that way some other program can extract it if desired.
440 print HTML
"<A NAME=\"__index__\"></A>\n";
441 print HTML
"<!-- INDEX BEGIN -->\n";
442 print HTML
"<!--\n" unless $doindex;
444 print HTML
"-->\n" unless $doindex;
445 print HTML
"<!-- INDEX END -->\n\n";
446 print HTML "<HR
>\n" if $doindex and $index;
448 # now convert this file
449 my $after_item; # set to true after an =item
450 warn "Converting input file
$podfile\n" if $verbose;
451 foreach my $i (0..$#poddata){
452 $ptQuote = 0; # status of quote conversion
456 if (/^(=.*)/s) { # is it a pod directive?
460 if (/^=begin\s+(\S+)\s*(.*)/si) {# =begin
461 process_begin($1, $2);
462 } elsif (/^=end\s+(\S+)\s*(.*)/si) {# =end
464 } elsif (/^=cut/) { # =cut
466 } elsif (/^=pod/) { # =pod
469 next if @begin_stack && $begin_stack[-1] ne 'html';
471 if (/^=(head[1-6])\s+(.*\S)/s) { # =head[1-6] heading
472 process_head( $1, $2, $doindex && $index );
473 } elsif (/^=item\s*(.*\S)?/sm) { # =item text
474 warn "$0: $podfile: =item without bullet
, number
or text
"
475 . " in paragraph
$paragraph.\n" if !defined($1) or $1 eq '';
478 } elsif (/^=over\s*(.*)/) { # =over N
480 } elsif (/^=back/) { # =back
482 } elsif (/^=for\s+(\S+)\s*(.*)/si) {# =for
486 warn "$0: $podfile: unknown pod directive
'$1' in "
487 . "paragraph
$paragraph. ignoring
.\n";
494 next if @begin_stack && $begin_stack[-1] ne 'html';
496 if( $text =~ /\A\s+/ ){
497 process_pre( \$text );
498 print HTML "<PRE
>\n$text</PRE
>\n";
501 process_text( \$text );
503 # experimental: check for a paragraph where all lines
504 # have some ...\t...\t...\n pattern
506 my @lines = split( "\n", $text );
509 foreach my $line ( @lines ){
510 if( $line =~ /\S/ && $line !~ /\t/ ){
516 $text =~ s/\t+/<TD>/g;
517 $text =~ s/^/<TR><TD>/gm;
518 $text = '<TABLE CELLSPACING=0 CELLPADDING=0>' .
523 ## end of experimental
526 print HTML "$text\n";
529 print HTML "<P
>$text</P
>\n";
536 # finish off any pending directives
540 print HTML "<P
><A HREF
=\"#__index__\"><SMALL>$backlink</SMALL></A></P>\n"
541 if $doindex and $index and $backlink;
543 print HTML
<<END_OF_TAIL;
550 # close the html file
553 warn "Finished\n" if $verbose;
556 ##############################################################################
558 my $usage; # see below
561 warn "$0: $podfile: @_\n" if @_;
565 $usage =<<END_OF_USAGE
;
566 Usage
: $0 --help
--htmlroot
=<name
> --infile
=<name
> --outfile
=<name
>
567 --podpath
=<name
>:...:<name
> --podroot
=<name
>
568 --libpods
=<name
>:...:<name
> --recurse
--verbose
--index
569 --netscape
--norecurse
--noindex
571 --backlink
- set text
for "back to top" links
(default: none
).
572 --css
- stylesheet URL
573 --flush
- flushes the item
and directory caches
.
574 --[no]header
- produce block header
/footer
(default is
no headers
).
575 --help
- prints this message
.
576 --htmldir
- directory
for resulting HTML files
.
577 --htmlroot
- http
-server base directory from which all relative paths
578 in podpath stem
(default is
/).
579 --[no]index - generate an
index at the top of the resulting html
581 --infile
- filename
for the pod to convert
(input taken from stdin
583 --libpods
- colon
-separated list of pages to search
for =item pod
584 directives
in as targets of C
<> and implicit links
(empty
585 by
default). note
, these are
not filenames
, but rather
586 page names like those that appear
in L
<> links
.
587 --[no]netscape
- will
use netscape html directives
when applicable
.
588 (default is
not to
use them
).
589 --outfile
- filename
for the resulting html file
(output sent to
591 --podpath
- colon
-separated list of directories containing library
592 pods
(empty by
default).
593 --podroot
- filesystem base directory from which all relative paths
594 in podpath stem
(default is
.).
595 --[no]quiet
- supress some benign warning messages
(default is off
).
596 --[no]recurse
- recurse on those subdirectories listed
in podpath
598 --title
- title that will appear
in resulting html file
.
599 --[no]verbose
- self
-explanatory
(off by
default).
603 sub parse_command_line
{
604 my ($opt_backlink,$opt_css,$opt_flush,$opt_header,$opt_help,$opt_htmldir,
605 $opt_htmlroot,$opt_index,$opt_infile,$opt_libpods,$opt_netscape,
606 $opt_outfile,$opt_podpath,$opt_podroot,$opt_quiet,$opt_recurse,
607 $opt_title,$opt_verbose);
609 unshift @ARGV, split ' ', $Config{pod2html
} if $Config{pod2html
};
610 my $result = GetOptions
(
611 'backlink=s' => \
$opt_backlink,
612 'css=s' => \
$opt_css,
613 'flush' => \
$opt_flush,
614 'header!' => \
$opt_header,
615 'help' => \
$opt_help,
616 'htmldir=s' => \
$opt_htmldir,
617 'htmlroot=s' => \
$opt_htmlroot,
618 'index!' => \
$opt_index,
619 'infile=s' => \
$opt_infile,
620 'libpods=s' => \
$opt_libpods,
621 'netscape!' => \
$opt_netscape,
622 'outfile=s' => \
$opt_outfile,
623 'podpath=s' => \
$opt_podpath,
624 'podroot=s' => \
$opt_podroot,
625 'quiet!' => \
$opt_quiet,
626 'recurse!' => \
$opt_recurse,
627 'title=s' => \
$opt_title,
628 'verbose!' => \
$opt_verbose,
630 usage
("-", "invalid parameters") if not $result;
632 usage
("-") if defined $opt_help; # see if the user asked for help
633 $opt_help = ""; # just to make -w shut-up.
635 @podpath = split(":", $opt_podpath) if defined $opt_podpath;
636 @libpods = split(":", $opt_libpods) if defined $opt_libpods;
638 $backlink = $opt_backlink if defined $opt_backlink;
639 $css = $opt_css if defined $opt_css;
640 $header = $opt_header if defined $opt_header;
641 $htmldir = $opt_htmldir if defined $opt_htmldir;
642 $htmlroot = $opt_htmlroot if defined $opt_htmlroot;
643 $doindex = $opt_index if defined $opt_index;
644 $podfile = $opt_infile if defined $opt_infile;
645 $netscape = $opt_netscape if defined $opt_netscape;
646 $htmlfile = $opt_outfile if defined $opt_outfile;
647 $podroot = $opt_podroot if defined $opt_podroot;
648 $quiet = $opt_quiet if defined $opt_quiet;
649 $recurse = $opt_recurse if defined $opt_recurse;
650 $title = $opt_title if defined $opt_title;
651 $verbose = $opt_verbose if defined $opt_verbose;
653 warn "Flushing item and directory caches\n"
654 if $opt_verbose && defined $opt_flush;
655 unlink($dircache, $itemcache) if defined $opt_flush;
662 my($dircache, $itemcache, $podpath, $podroot, $recurse) = @_;
663 my @cache_key_args = @_;
665 # A first-level cache:
666 # Don't bother reading the cache files if they still apply
667 # and haven't changed since we last read them.
669 my $this_cache_key = cache_key
(@cache_key_args);
671 return if $saved_cache_key and $this_cache_key eq $saved_cache_key;
673 # load the cache of %pages and %items if possible. $tests will be
674 # non-zero if successful.
676 if (-f
$dircache && -f
$itemcache) {
677 warn "scanning for item cache\n" if $verbose;
678 $tests = load_cache
($dircache, $itemcache, $podpath, $podroot);
681 # if we didn't succeed in loading the cache then we must (re)build
684 warn "scanning directories in pod-path\n" if $verbose;
685 scan_podpath
($podroot, $recurse, 0);
687 $saved_cache_key = cache_key
(@cache_key_args);
691 my($dircache, $itemcache, $podpath, $podroot, $recurse) = @_;
692 return join('!', $dircache, $itemcache, $recurse,
693 @
$podpath, $podroot, stat($dircache), stat($itemcache));
697 # load_cache - tries to find if the caches stored in $dircache and $itemcache
698 # are valid caches of %pages and %items. if they are valid then it loads
699 # them and returns a non-zero value.
702 my($dircache, $itemcache, $podpath, $podroot) = @_;
708 open(CACHE
, "<$itemcache") ||
709 die "$0: error opening $itemcache for reading: $!\n";
712 # is it the same podpath?
715 $tests++ if (join(":", @
$podpath) eq $_);
717 # is it the same podroot?
720 $tests++ if ($podroot eq $_);
722 # load the cache if its good
728 warn "loading item cache\n" if $verbose;
735 warn "scanning for directory cache\n" if $verbose;
736 open(CACHE
, "<$dircache") ||
737 die "$0: error opening $dircache for reading: $!\n";
741 # is it the same podpath?
744 $tests++ if (join(":", @
$podpath) eq $_);
746 # is it the same podroot?
749 $tests++ if ($podroot eq $_);
751 # load the cache if its good
757 warn "loading directory cache\n" if $verbose;
769 # scan_podpath - scans the directories specified in @podpath for directories,
770 # .pod files, and .pm files. it also scans the pod files specified in
771 # @libpods for =item directives.
774 my($podroot, $recurse, $append) = @_;
776 my($libpod, $dirname, $pod, @files, @poddata);
783 # scan each directory listed in @podpath
786 || die "$0: error changing to directory $podroot: $!\n";
787 foreach $dir (@podpath) {
788 scan_dir
($dir, $recurse);
791 # scan the pods listed in @libpods for =item directives
792 foreach $libpod (@libpods) {
793 # if the page isn't defined then we won't know where to find it
795 next unless defined $pages{$libpod} && $pages{$libpod};
797 # if there is a directory then use the .pod and .pm files within it.
798 # NOTE: Only finds the first so-named directory in the tree.
799 # if ($pages{$libpod} =~ /([^:]*[^(\.pod|\.pm)]):/) {
800 if ($pages{$libpod} =~ /([^:]*(?<!\.pod)(?<!\.pm)):/) {
801 # find all the .pod and .pm files within the directory
803 opendir(DIR
, $dirname) ||
804 die "$0: error opening directory $dirname: $!\n";
805 @files = grep(/(\.pod|\.pm)\z/ && ! -d
$_, readdir(DIR
));
808 # scan each .pod and .pm file for =item directives
809 foreach $pod (@files) {
810 open(POD
, "<$dirname/$pod") ||
811 die "$0: error opening $dirname/$pod for input: $!\n";
814 clean_data
( \
@poddata );
816 scan_items
( \
%items, "$dirname/$pod", @poddata);
819 # use the names of files as =item directives too.
820 ### Don't think this should be done this way - confuses issues.(WL)
821 ### foreach $pod (@files) {
822 ### $pod =~ /^(.*)(\.pod|\.pm)$/;
823 ### $items{$1} = "$dirname/$1.html" if $1;
825 } elsif ($pages{$libpod} =~ /([^:]*\.pod):/ ||
826 $pages{$libpod} =~ /([^:]*\.pm):/) {
827 # scan the .pod or .pm file for =item directives
829 open(POD
, "<$pod") ||
830 die "$0: error opening $pod for input: $!\n";
833 clean_data
( \
@poddata );
835 scan_items
( \
%items, "$pod", @poddata);
837 warn "$0: shouldn't be here (line ".__LINE__
."\n";
840 @poddata = (); # clean-up a bit
843 || die "$0: error changing to directory $pwd: $!\n";
845 # cache the item list for later use
846 warn "caching items for later use\n" if $verbose;
847 open(CACHE
, ">$itemcache") ||
848 die "$0: error open $itemcache for writing: $!\n";
850 print CACHE
join(":", @podpath) . "\n$podroot\n";
851 foreach my $key (keys %items) {
852 print CACHE
"$key $items{$key}\n";
857 # cache the directory list for later use
858 warn "caching directories for later use\n" if $verbose;
859 open(CACHE
, ">$dircache") ||
860 die "$0: error open $dircache for writing: $!\n";
862 print CACHE
join(":", @podpath) . "\n$podroot\n";
863 foreach my $key (keys %pages) {
864 print CACHE
"$key $pages{$key}\n";
871 # scan_dir - scans the directory specified in $dir for subdirectories, .pod
872 # files, and .pm files. notes those that it finds. this information will
873 # be used later in order to figure out where the pages specified in L<>
874 # links are on the filesystem.
877 my($dir, $recurse) = @_;
878 my($t, @subdirs, @pods, $pod, $dirname, @dirs);
884 opendir(DIR
, $dir) ||
885 die "$0: error opening directory $dir: $!\n";
886 while (defined($_ = readdir(DIR
))) {
887 if (-d
"$dir/$_" && $_ ne "." && $_ ne "..") { # directory
888 $pages{$_} = "" unless defined $pages{$_};
889 $pages{$_} .= "$dir/$_:";
891 } elsif (/\.pod\z/) { # .pod
893 $pages{$_} = "" unless defined $pages{$_};
894 $pages{$_} .= "$dir/$_.pod:";
895 push(@pods, "$dir/$_.pod");
896 } elsif (/\.html\z/) { # .html
898 $pages{$_} = "" unless defined $pages{$_};
899 $pages{$_} .= "$dir/$_.pod:";
900 } elsif (/\.pm\z/) { # .pm
902 $pages{$_} = "" unless defined $pages{$_};
903 $pages{$_} .= "$dir/$_.pm:";
904 push(@pods, "$dir/$_.pm");
909 # recurse on the subdirectories if necessary
911 foreach my $subdir (@subdirs) {
912 scan_dir
("$dir/$subdir", $recurse);
918 # scan_headings - scan a pod file for head[1-6] tags, note the tags, and
922 my($sections, @data) = @_;
923 my($tag, $which_head, $otitle, $listdepth, $index);
925 # here we need local $ignore = 0;
926 # unfortunately, we can't have it, because $ignore is lexical
932 # scan for =head directives, note their name, and build an index
933 # pointing to each of them.
934 foreach my $line (@data) {
935 if ($line =~ /^=(head)([1-6])\s+(.*)/) {
936 ($tag, $which_head, $otitle) = ($1,$2,$3);
938 my $title = depod
( $otitle );
939 my $name = htmlify
( $title );
940 $$sections{$name} = 1;
941 $title = process_text
( \
$otitle );
943 while ($which_head != $listdepth) {
944 if ($which_head > $listdepth) {
945 $index .= "\n" . ("\t" x
$listdepth) . "<UL>\n";
947 } elsif ($which_head < $listdepth) {
949 $index .= "\n" . ("\t" x
$listdepth) . "</UL>\n";
953 $index .= "\n" . ("\t" x
$listdepth) . "<LI>" .
954 "<A HREF=\"#" . $name . "\">" .
955 $title . "</A></LI>";
959 # finish off the lists
960 while ($listdepth--) {
961 $index .= "\n" . ("\t" x
$listdepth) . "</UL>\n";
964 # get rid of bogus lists
965 $index =~ s
,\t*<UL
>\s
*</UL
>\n,,g
;
967 $ignore = 1; # restore old value;
973 # scan_items - scans the pod specified by $pod for =item directives. we
974 # will use this information later on in resolving C<> links.
977 my( $itemref, $pod, @poddata ) = @_;
982 $pod .= ".html" if $pod;
984 foreach $i (0..$#poddata) {
985 my $txt = depod
( $poddata[$i] );
987 # figure out what kind of item it is.
988 # Build string for referencing this item.
989 if ( $txt =~ /\A=item\s+\*\s*(.*)\Z/s ) { # bullet
992 } elsif( $txt =~ /\A=item\s+(?>\d+\.?)\s*(.*)\Z/s ) { # numbered list
994 } elsif( $txt =~ /\A=item\s+(.*)\Z/s ) { # plain item
999 my $fid = fragment_id
( $item );
1000 $$itemref{$fid} = "$pod" if $fid;
1005 # process_head - convert a pod head[1-6] tag and convert it to HTML format.
1008 my($tag, $heading, $hasindex) = @_;
1010 # figure out the level of the =head
1011 $tag =~ /head([1-6])/;
1015 warn "$0: $podfile: unterminated list at =head in paragraph $paragraph. ignoring.\n";
1016 while( $listlevel ){
1022 if( $level == 1 && ! $top ){
1023 print HTML
"<A HREF=\"#__index__\"><SMALL>$backlink</SMALL></A>\n"
1024 if $hasindex and $backlink;
1028 my $name = htmlify
( depod
( $heading ) );
1029 my $convert = process_text
( \
$heading );
1030 print HTML
"<H$level><A NAME=\"$name\">$convert</A></H$level>\n";
1035 # emit_item_tag - print an =item's text
1036 # Note: The global $EmittedItem is used for inhibiting self-references.
1040 sub emit_item_tag
($$$){
1041 my( $otext, $text, $compact ) = @_;
1042 my $item = fragment_id
( $text );
1044 $EmittedItem = $item;
1045 ### print STDERR "emit_item_tag=$item ($text)\n";
1047 print HTML
'<STRONG>';
1048 if ($items_named{$item}++) {
1049 print HTML process_text
( \
$otext );
1051 my $name = 'item_' . $item;
1052 print HTML
qq{<A NAME
="$name">}, process_text
( \
$otext ), '</A>';
1054 print HTML
"</STRONG><BR>\n";
1055 undef( $EmittedItem );
1060 if( $items_seen[$listlevel]++ == 0 ){
1061 push( @listend, "</$tag>" );
1062 print HTML
"<$tag>\n";
1064 print HTML
$tag eq 'DL' ?
'<DT>' : '<LI>';
1068 # process_item - convert a pod item tag and convert it to HTML format.
1073 # lots of documents start a list without doing an =over. this is
1074 # bad! but, the proper thing to do seems to be to just assume
1075 # they did do an =over. so warn them once and then continue.
1076 if( $listlevel == 0 ){
1077 warn "$0: $podfile: unexpected =item directive in paragraph $paragraph. ignoring.\n";
1081 # formatting: insert a paragraph if preceding item has >1 paragraph
1083 print HTML
"<P></P>\n";
1087 # remove formatting instructions from the text
1088 my $text = depod
( $otext );
1090 # all the list variants:
1091 if( $text =~ /\A\*/ ){ # bullet
1093 if ($text =~ /\A\*\s+(.+)\Z/s ) { # with additional text
1095 $otext =~ s/\A\*\s+//;
1096 emit_item_tag
( $otext, $tag, 1 );
1099 } elsif( $text =~ /\A\d+/ ){ # numbered list
1101 if ($text =~ /\A(?>\d+\.?)\s*(.+)\Z/s ) { # with additional text
1103 $otext =~ s/\A\d+\.?\s*//;
1104 emit_item_tag
( $otext, $tag, 1 );
1107 } else { # definition list
1109 if ($text =~ /\A(.+)\Z/s ){ # should have text
1110 emit_item_tag
( $otext, $text, 1 );
1118 # process_over - process a pod over tag and start a corresponding HTML list.
1123 push( @items_seen, 0 );
1128 # process_back - process a pod back tag and convert it to HTML format.
1131 if( $listlevel == 0 ){
1132 warn "$0: $podfile: unexpected =back directive in paragraph $paragraph. ignoring.\n";
1136 # close off the list. note, I check to see if $listend[$listlevel] is
1137 # defined because an =item directive may have never appeared and thus
1138 # $listend[$listlevel] may have never been initialized.
1140 if( defined $listend[$listlevel] ){
1141 print HTML
'<P></P>' if $after_lpar;
1142 print HTML
$listend[$listlevel];
1148 # clean up item count
1153 # process_cut - process a pod cut tag, thus start ignoring pod directives.
1160 # process_pod - process a pod pod tag, thus stop ignoring pod directives
1161 # until we see a corresponding cut.
1164 # no need to set $ignore to 0 cause the main loop did it
1168 # process_for - process a =for pod tag. if it's for html, spit
1169 # it out verbatim, if illustration, center it, otherwise ignore it.
1172 my($whom, $text) = @_;
1173 if ( $whom =~ /^(pod2)?html$/i) {
1175 } elsif ($whom =~ /^illustration$/i) {
1176 1 while chomp $text;
1177 for my $ext (qw
[.png
.gif
.jpeg
.jpg
.tga
.pcl
.bmp
]) {
1178 $text .= $ext, last if -r
"$text$ext";
1180 print HTML
qq{<p align
= "center"><img src
= "$text" alt
= "$text illustration"></p
>};
1185 # process_begin - process a =begin pod tag. this pushes
1186 # whom we're beginning on the begin stack. if there's a
1187 # begin stack, we only print if it us.
1190 my($whom, $text) = @_;
1192 push (@begin_stack, $whom);
1193 if ( $whom =~ /^(pod2)?html$/) {
1194 print HTML
$text if $text;
1199 # process_end - process a =end pod tag. pop the
1200 # begin stack. die if we're mismatched.
1203 my($whom, $text) = @_;
1205 if ($begin_stack[-1] ne $whom ) {
1206 die "Unmatched begin/end at chunk $paragraph\n"
1208 pop( @begin_stack );
1212 # process_pre - indented paragraph, made into <PRE></PRE>
1221 # insert spaces in place of tabs
1224 1 while $line =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e;
1228 # convert some special chars to HTML escapes
1229 $rest =~ s/&/&/g;
1230 $rest =~ s/</</g;
1231 $rest =~ s/>/>/g;
1232 $rest =~ s/"/"/g;
1234 # try and create links for all occurrences of perl.* within
1235 # the preformatted text.
1239 if ( defined $pages{$2} ){ # is a link
1240 qq($1<A HREF
="$htmlroot/$pages{$2}">$2</A
>);
1241 } elsif (defined $pages{dosify
($2)}) { # is a link
1242 qq($1<A HREF
="$htmlroot/$pages{dosify($2)}">$2</A
>);
1248 (<A\ HREF
="?) ([^>:]*:)? ([^>:]*) \.pod: ([^>:]*:)?
1251 if ( $htmlfileurl ne '' ){
1252 # Here, we take advantage of the knowledge
1253 # that $htmlfileurl ne '' implies $htmlroot eq ''.
1254 # Since $htmlroot eq '', we need to prepend $htmldir
1255 # on the fron of the link to get the absolute path
1256 # of the link's target. We check for a leading '/'
1257 # to avoid corrupting links that are #, file:, etc.
1259 $old_url = "$htmldir$old_url" if $old_url =~ m{^\/};
1260 $url = relativize_url( "$old_url.html
", $htmlfileurl );
1267 # Look for embedded URLs and make them into links. We don't
1268 # relativize them since they are best left as the author intended.
1270 my $urls = '(' . join ('|', qw{
1283 my $gunk = '/#~:.?+=&%@!\-';
1285 my $any = "${ltrs
}${gunk
}${punc
}";
1288 \b # start at word boundary
1290 $urls : # need resource and a colon
1291 (?!:) # Ignore File::, among others.
1292 [$any] +? # followed by on or more
1293 # of any valid character, but
1294 # be conservative and take only
1295 # what you need to....
1297 (?= # look-ahead non-consumptive assertion
1298 [$punc]* # either 0 or more puntuation
1299 [^$any] # followed by a non-url char
1301 $ # then end of the string
1303 }{<A HREF="$1">$1</A>}igox;
1305 # text should be as it is (verbatim)
1311 # pure text processing
1313 # pure_text/inIS_text: differ with respect to automatic C<> recognition.
1314 # we don't want this to happen within IS
1318 process_puretext( $text, \$ptQuote, 1 );
1323 process_puretext( $text, \$ptQuote, 0 );
1327 # process_puretext - process pure text (without pod-escapes) converting
1328 # double-quotes and handling implicit C<> links.
1330 sub process_puretext {
1331 my($text, $quote, $notinIS) = @_;
1333 ## Guessing at func() or [$@%&]*var references in plain text is destined
1334 ## to produce some strange looking ref's. uncomment to disable:
1337 my(@words, $lead, $trail);
1339 # convert double-quotes to single-quotes
1340 if( $$quote && $text =~ s/"/''/s ){
1343 while ($text =~ s/"([^"]*)"/``$1''/sg) {};
1344 $$quote = 1 if $text =~ s/"/``/s;
1346 # keep track of leading and trailing white-space
1347 $lead = ($text =~ s/\A(\s+)//s ? $1 : "");
1348 $trail = ($text =~ s/(\s+)\Z//s ? $1 : "");
1350 # split at space/non-space boundaries
1351 @words = split( /(?<=\s)(?=\S)|(?<=\S)(?=\s)/, $text );
1353 # process each word individually
1354 foreach my $word (@words) {
1356 next if $word =~ /^\s*$/;
1357 # see if we can infer a link
1358 if( $notinIS && $word =~ /^(\w+)\((.*)\)$/ ) {
1359 # has parenthesis so should have been a C<> ref
1360 ## try for a pagename (perlXXX(1))?
1361 my( $func, $args ) = ( $1, $2 );
1362 if( $args =~ /^\d+$/ ){
1363 my $url = page_sect( $word, '' );
1365 $word = "<A HREF
=\"$url\">the
$word manpage
</A
>";
1369 ## try function name for a link, append tt'ed argument list
1370 $word = emit_C( $func, '', "($args)");
1372 #### disabled. either all (including $\W, $\w+{.*} etc.) or nothing.
1373 ## } elsif( $notinIS && $word =~ /^[\$\@%&*]+\w+$/) {
1374 ## # perl variables, should be a C<> ref
1375 ## $word = emit_C( $word );
1377 } elsif ($word =~ m,^\w+://\w,) {
1379 # Don't relativize it: leave it as the author intended
1380 $word = qq(<A HREF="$word">$word</A>);
1381 } elsif ($word =~ /[\w.-]+\@[\w-]+\.\w/) {
1382 # looks like an e-mail address
1383 my ($w1, $w2, $w3) = ("", $word, "");
1384 ($w1, $w2, $w3) = ("(", $1, ")$2") if $word =~ /^\((.*?)\)(,?)/;
1385 ($w1, $w2, $w3) = ("<", $1, ">$2") if $word =~ /^<(.*?)>(,?)/;
1386 $word = qq($w1<A HREF="mailto
:$w2">$w2</A>$w3);
1387 } elsif ($word !~ /[a-z]/ && $word =~ /[A-Z]/) { # all uppercase?
1388 $word = html_escape($word) if $word =~ /["&<>]/;
1389 $word = "\n<FONT SIZE=-1>$word</FONT>" if $netscape;
1391 $word = html_escape
($word) if $word =~ /["&<>]/;
1395 # put everything back together
1396 return $lead . join( '', @words ) . $trail;
1401 # process_text - handles plaintext that appears in the input pod file.
1402 # there may be pod commands embedded within the text so those must be
1403 # converted to html commands.
1406 sub process_text1
($$;$$);
1407 sub pattern
($) { $_[0] ?
'[^\S\n]+'.('>' x
($_[0] + 1)) : '>' }
1408 sub closing
($) { local($_) = shift; (defined && s/\s+$//) ?
length : 0 }
1413 my $res = process_text1
( 0, $tref );
1417 sub process_text1
($$;$$){
1418 my( $lev, $rstr, $func, $closing ) = @_;
1421 unless (defined $func) {
1427 # B<text> - boldface
1428 $res = '<STRONG>' . process_text1
( $lev, $rstr ) . '</STRONG>';
1430 } elsif( $func eq 'C' ){
1431 # C<code> - can be a ref or <CODE></CODE>
1432 # need to extract text
1433 my $par = go_ahead
( $rstr, 'C', $closing );
1435 ## clean-up of the link target
1436 my $text = depod
( $par );
1438 ### my $x = $par =~ /[BI]</ ? 'yes' : 'no' ;
1439 ### print STDERR "-->call emit_C($par) lev=$lev, par with BI=$x\n";
1441 $res = emit_C
( $text, $lev > 1 || ($par =~ /[BI]</) );
1443 } elsif( $func eq 'E' ){
1444 # E<x> - convert to character
1445 $$rstr =~ s/^([^>]*)>//;
1447 $escape =~ s/^(\d+|X[\dA-F]+)$/#$1/i;
1450 } elsif( $func eq 'F' ){
1451 # F<filename> - italizice
1452 $res = '<EM>' . process_text1
( $lev, $rstr ) . '</EM>';
1454 } elsif( $func eq 'I' ){
1455 # I<text> - italizice
1456 $res = '<EM>' . process_text1
( $lev, $rstr ) . '</EM>';
1458 } elsif( $func eq 'L' ){
1460 ## L<text|cross-ref> => produce text, use cross-ref for linking
1461 ## L<cross-ref> => make text from cross-ref
1462 ## need to extract text
1463 my $par = go_ahead
( $rstr, 'L', $closing );
1465 # some L<>'s that shouldn't be:
1466 # a) full-blown URL's are emitted as-is
1467 if( $par =~ m{^\w+://}s ){
1468 return make_URL_href
( $par );
1470 # b) C<...> is stripped and treated as C<>
1471 if( $par =~ /^C<(.*)>$/ ){
1472 my $text = depod
( $1 );
1473 return emit_C
( $text, $lev > 1 || ($par =~ /[BI]</) );
1476 # analyze the contents
1477 $par =~ s/\n/ /g; # undo word-wrapped tags
1480 if( $par =~ s{^([^|]+)\|}{} ){
1484 # make sure sections start with a /
1487 my( $page, $section, $ident );
1489 # check for link patterns
1490 if( $par =~ m{^([^/]+?)/(?!")(.*?)$} ){ # name/ident
1491 # we've got a name/ident (no quotes)
1492 ( $page, $ident ) = ( $1, $2 );
1493 ### print STDERR "--> L<$par> to page $page, ident $ident\n";
1495 } elsif( $par =~ m{^(.*?)/"?(.*?)"?$} ){ # [name]/"section"
1496 # even though this should be a "section", we go for ident first
1497 ( $page, $ident ) = ( $1, $2 );
1498 ### print STDERR "--> L<$par> to page $page, section $section\n";
1500 } elsif( $par =~ /\s/ ){ # this must be a section with missing quotes
1501 ( $page, $section ) = ( '', $par );
1502 ### print STDERR "--> L<$par> to void page, section $section\n";
1505 ( $page, $section ) = ( $par, '' );
1506 ### print STDERR "--> L<$par> to page $par, void section\n";
1509 # now, either $section or $ident is defined. the convoluted logic
1510 # below tries to resolve L<> according to what the user specified.
1511 # failing this, we try to find the next best thing...
1512 my( $url, $ltext, $fid );
1515 if( defined $ident ){
1516 ## try to resolve $ident as an item
1517 ( $url, $fid ) = coderef
( $page, $ident );
1519 if( ! defined( $linktext ) ){
1521 $linktext .= " in " if $ident && $page;
1522 $linktext .= "the $page manpage" if $page;
1524 ### print STDERR "got coderef url=$url\n";
1527 ## no luck: go for a section (auto-quoting!)
1530 ## now go for a section
1531 my $htmlsection = htmlify
( $section );
1532 $url = page_sect
( $page, $htmlsection );
1534 if( ! defined( $linktext ) ){
1535 $linktext = $section;
1536 $linktext .= " in " if $section && $page;
1537 $linktext .= "the $page manpage" if $page;
1539 ### print STDERR "got page/section url=$url\n";
1542 ## no luck: go for an ident
1549 ( $url, $fid ) = coderef
( $page, $ident );
1551 if( ! defined( $linktext ) ){
1553 $linktext .= " in " if $ident && $page;
1554 $linktext .= "the $page manpage" if $page;
1556 ### print STDERR "got section=>coderef url=$url\n";
1560 # warning; show some text.
1561 $linktext = $opar unless defined $linktext;
1562 warn "$0: $podfile: cannot resolve L<$opar> in paragraph $paragraph.";
1565 # now we have an URL or just plain code
1566 $$rstr = $linktext . '>' . $$rstr;
1567 if( defined( $url ) ){
1568 $res = "<A HREF=\"$url\">" . process_text1
( $lev, $rstr ) . '</A>';
1570 $res = '<EM>' . process_text1
( $lev, $rstr ) . '</EM>';
1573 } elsif( $func eq 'S' ){
1574 # S<text> - non-breaking spaces
1575 $res = process_text1
( $lev, $rstr );
1576 $res =~ s/ / /g;
1578 } elsif( $func eq 'X' ){
1580 $$rstr =~ s/^[^>]*>//;
1582 } elsif( $func eq 'Z' ){
1584 warn "$0: $podfile: invalid X<> in paragraph $paragraph."
1585 unless $$rstr =~ s/^>//;
1588 my $term = pattern
$closing;
1589 while( $$rstr =~ s/\A(.*?)(([BCEFILSXZ])<(<+[^\S\n]+)?|$term)//s ){
1590 # all others: either recurse into new function or
1591 # terminate at closing angle bracket(s)
1593 $pt .= $2 if !$3 && $lev == 1;
1594 $res .= $lev == 1 ? pure_text
( $pt ) : inIS_text
( $pt );
1595 return $res if !$3 && $lev > 1;
1597 $res .= process_text1
( $lev, $rstr, $3, closing
$4 );
1601 $res .= pure_text
( $$rstr );
1603 warn "$0: $podfile: undelimited $func<> in paragraph $paragraph.";
1610 # go_ahead: extract text of an IS (can be nested)
1613 my( $rstr, $func, $closing ) = @_;
1615 my @closing = ($closing);
1617 s/\A(.*?)(([BCEFILSXZ])<(<+[^\S\n]+)?|@{[pattern $closing[0]]})//s ){
1621 return $res unless @closing;
1623 unshift @closing, closing
$4;
1627 warn "$0: $podfile: undelimited $func<> in paragraph $paragraph.";
1632 # emit_C - output result of C<text>
1633 # $text is the depod-ed text
1636 my( $text, $nocode, $args ) = @_;
1637 $args = '' unless defined $args;
1639 my( $url, $fid ) = coderef
( undef(), $text );
1641 # need HTML-safe text
1642 my $linktext = html_escape
( "$text$args" );
1644 if( defined( $url ) &&
1645 (!defined( $EmittedItem ) || $EmittedItem ne $fid ) ){
1646 $res = "<A HREF=\"$url\"><CODE>$linktext</CODE></A>";
1647 } elsif( 0 && $nocode ){
1650 $res = "<CODE>$linktext</CODE>";
1656 # html_escape: make text safe for HTML
1660 $rest =~ s/&/&/g;
1661 $rest =~ s/</</g;
1662 $rest =~ s/>/>/g;
1663 $rest =~ s/"/"/g;
1669 # dosify - convert filenames to 8.3
1673 return lc($str) if $^O
eq 'VMS'; # VMS just needs casing
1676 $str =~ s/(\.\w+)/substr ($1,0,4)/ge;
1677 $str =~ s/(\w+)/substr ($1,0,8)/ge;
1683 # page_sect - make an URL from the text of a L<>
1686 my( $page, $section ) = @_;
1687 my( $linktext, $page83, $link); # work strings
1689 # check if we know that this is a section in this page
1690 if (!defined $pages{$page} && defined $sections{$page}) {
1693 ### print STDERR "reset page='', section=$section\n";
1696 $page83=dosify
($page);
1697 $page=$page83 if (defined $pages{$page83});
1699 $link = "#" . htmlify
( $section );
1700 } elsif ( $page =~ /::/ ) {
1702 # Search page cache for an entry keyed under the html page name,
1703 # then look to see what directory that page might be in. NOTE:
1704 # this will only find one page. A better solution might be to produce
1705 # an intermediate page that is an index to all such pages.
1706 my $page_name = $page ;
1707 $page_name =~ s
,^.*/,,s
;
1708 if ( defined( $pages{ $page_name } ) &&
1709 $pages{ $page_name } =~ /([^:]*$page)\.(?:pod|pm):/
1714 # NOTE: This branch assumes that all A::B pages are located in
1715 # $htmlroot/A/B.html . This is often incorrect, since they are
1716 # often in $htmlroot/lib/A/B.html or such like. Perhaps we could
1717 # analyze the contents of %pages and figure out where any
1718 # cousins of A::B are, then assume that. So, if A::B isn't found,
1719 # but A::C is found in lib/A/C.pm, then A::B is assumed to be in
1720 # lib/A/B.pm. This is also limited, but it's an improvement.
1721 # Maybe a hints file so that the links point to the correct places
1725 $link = "$htmlroot/$page.html";
1726 $link .= "#" . htmlify
( $section ) if ($section);
1727 } elsif (!defined $pages{$page}) {
1730 $section = htmlify
( $section ) if $section ne "";
1731 ### print STDERR "...section=$section\n";
1733 # if there is a directory by the name of the page, then assume that an
1734 # appropriate section will exist in the subdirectory
1735 # if ($section ne "" && $pages{$page} =~ /([^:]*[^(\.pod|\.pm)]):/) {
1736 if ($section ne "" && $pages{$page} =~ /([^:]*(?<!\.pod)(?<!\.pm)):/) {
1737 $link = "$htmlroot/$1/$section.html";
1738 ### print STDERR "...link=$link\n";
1740 # since there is no directory by the name of the page, the section will
1741 # have to exist within a .html of the same name. thus, make sure there
1742 # is a .pod or .pm that might become that .html
1744 $section = "#$section" if $section;
1745 ### print STDERR "...section=$section\n";
1747 # check if there is a .pod with the page name
1748 if ($pages{$page} =~ /([^:]*)\.pod:/) {
1749 $link = "$htmlroot/$1.html$section";
1750 } elsif ($pages{$page} =~ /([^:]*)\.pm:/) {
1751 $link = "$htmlroot/$1.html$section";
1759 # Here, we take advantage of the knowledge that $htmlfileurl ne ''
1760 # implies $htmlroot eq ''. This means that the link in question
1761 # needs a prefix of $htmldir if it begins with '/'. The test for
1762 # the initial '/' is done to avoid '#'-only links, and to allow
1763 # for other kinds of links, like file:, ftp:, etc.
1765 if ( $htmlfileurl ne '' ) {
1766 $link = "$htmldir$link" if $link =~ m{^/}s;
1767 $url = relativize_url
( $link, $htmlfileurl );
1768 # print( " b: [$link,$htmlfileurl,$url]\n" );
1781 # relativize_url - convert an absolute URL to one relative to a base URL.
1782 # Assumes both end in a filename.
1784 sub relativize_url
{
1785 my ($dest,$source) = @_ ;
1787 my ($dest_volume,$dest_directory,$dest_file) =
1788 File
::Spec
::Unix
->splitpath( $dest ) ;
1789 $dest = File
::Spec
::Unix
->catpath( $dest_volume, $dest_directory, '' ) ;
1791 my ($source_volume,$source_directory,$source_file) =
1792 File
::Spec
::Unix
->splitpath( $source ) ;
1793 $source = File
::Spec
::Unix
->catpath( $source_volume, $source_directory, '' ) ;
1796 if ( $dest ne '' ) {
1797 $rel_path = File
::Spec
::Unix
->abs2rel( $dest, $source ) ;
1800 if ( $rel_path ne '' &&
1801 substr( $rel_path, -1 ) ne '/' &&
1802 substr( $dest_file, 0, 1 ) ne '#'
1804 $rel_path .= "/$dest_file" ;
1807 $rel_path .= "$dest_file" ;
1815 # coderef - make URL from the text of a C<>
1818 my( $page, $item ) = @_;
1821 my $fid = fragment_id
( $item );
1822 if( defined( $page ) ){
1823 # we have been given a $page...
1826 # Do we take it? Item could be a section!
1827 my $base = $items{$fid} || "";
1828 $base =~ s{[^/]*/}{};
1829 if( $base ne "$page.html" ){
1830 ### print STDERR "coderef( $page, $item ): items{$fid} = $items{$fid} = $base => discard page!\n";
1835 # no page - local items precede cached items
1836 if( defined( $fid ) ){
1837 if( exists $local_items{$fid} ){
1838 $page = $local_items{$fid};
1840 $page = $items{$fid};
1845 # if there was a pod file that we found earlier with an appropriate
1846 # =item directive, then create a link to that page.
1847 if( defined $page ){
1849 if( exists $pages{$page} and $pages{$page} =~ /([^:.]*)\.[^:]*:/){
1850 $page = $1 . '.html';
1852 my $link = "$htmlroot/$page#item_$fid";
1854 # Here, we take advantage of the knowledge that $htmlfileurl
1855 # ne '' implies $htmlroot eq ''.
1856 if ( $htmlfileurl ne '' ) {
1857 $link = "$htmldir$link" ;
1858 $url = relativize_url
( $link, $htmlfileurl ) ;
1863 $url = "#item_" . $fid;
1866 confess
"url has space: $url" if $url =~ /"[^"]*\s[^"]*"/;
1868 return( $url, $fid );
1874 # Adapted from Nick Ing-Simmons' PodToHtml package.
1876 my $source_file = shift ;
1877 my $destination_file = shift;
1879 my $source = URI
::file
->new_abs($source_file);
1880 my $uo = URI
::file
->new($destination_file,$source)->abs;
1881 return $uo->rel->as_string;
1886 # finish_list - finish off any pending HTML lists. this should be called
1887 # after the entire pod file has been read and converted.
1890 while ($listlevel > 0) {
1891 print HTML
"</DL>\n";
1897 # htmlify - converts a pod section specification to a suitable section
1898 # specification for HTML. Note that we keep spaces and special characters
1899 # except ", ? (Netscape problem) and the hyphen (writer's problem...).
1903 $heading =~ s/(\s+)/ /g;
1904 $heading =~ s/\s+\Z//;
1905 $heading =~ s/\A\s+//;
1906 # The hyphen is a disgrace to the English language.
1907 $heading =~ s/[-"?]//g;
1908 $heading = lc( $heading );
1913 # depod - convert text by eliminating all interior sequences
1914 # Note: can be called with copy or modify semantics
1921 $E2c{amp
} = '&'; # in Tk's pods
1929 ${$_[0]} = depod1
( \
$string );
1937 my( $rstr, $func, $closing ) = @_;
1939 return $res unless defined $$rstr;
1940 if( ! defined( $func ) ){
1941 # skip to next begin of an interior sequence
1942 while( $$rstr =~ s/\A(.*?)([BCEFILSXZ])<(<+[^\S\n]+)?// ){
1943 # recurse into its text
1944 $res .= $1 . depod1
( $rstr, $2, closing
$3);
1947 } elsif( $func eq 'E' ){
1948 # E<x> - convert to character
1949 $$rstr =~ s/^([^>]*)>//;
1950 $res .= $E2c{$1} || "";
1951 } elsif( $func eq 'X' ){
1953 $$rstr =~ s/^[^>]*>//;
1954 } elsif( $func eq 'Z' ){
1958 # all others: either recurse into new function or
1959 # terminate at closing angle bracket
1960 my $term = pattern
$closing;
1961 while( $$rstr =~ s/\A(.*?)(([BCEFILSXZ])<(<+[^\S\n]+)?|$term)// ){
1964 $res .= depod1
( $rstr, $3, closing
$4 );
1966 ## If we're here and $2 ne '>': undelimited interior sequence.
1967 ## Ignored, as this is called without proper indication of where we are.
1968 ## Rely on process_text to produce diagnostics.
1974 # fragment_id - construct a fragment identifier from:
1976 # b) contents of C<...>
1981 $text =~ s/\s+\Z//s;
1983 # a method or function?
1984 return $1 if $text =~ /(\w+)\s*\(/;
1985 return $1 if $text =~ /->\s*(\w+)\s*\(?/;
1988 return $1 if $text =~ /^([$@%*]\S+)/;
1990 # some pattern matching operator?
1991 return $1 if $text =~ m
|^(\w
+/).*/\w
*$|;
1993 # fancy stuff... like "do { }"
1994 return $1 if $text =~ m
|^(\w
+)\s
*{.*}$|;
1996 # honour the perlfunc manpage: func [PAR[,[ ]PAR]...]
1997 # and some funnies with ... Module ...
1998 return $1 if $text =~ m{^([a-z\d]+)(\s+[A-Z\d,/& ]+)?$};
1999 return $1 if $text =~ m{^([a-z\d]+)\s+Module(\s+[A-Z\d,/& ]+)?$};
2002 $text =~ s/\s+/_/sg;
2004 defined( $hc[ord($1)] ) ?
$hc[ord($1)]
2005 : ( $hc[ord($1)] = sprintf( "%%%02X", ord($1) ) ) }gxe
;
2006 $text = substr( $text, 0, 50 );
2013 # make_URL_href - generate HTML href from URL
2014 # Special treatment for CGI queries.
2016 sub make_URL_href
($){
2019 s{^(http:[-\w/#~:.+=&%@!]+)(\?.*)$}{<A HREF="$1$2">$1</A>}i ){
2020 $url = "<A HREF=\"$url\">$url</A>";