home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 March / PCWorld_2003-03_cd.bin / Software / Topware / activeperl / ActivePerl / Perl / lib / Pod / Html.pm < prev    next >
Encoding:
Perl POD Document  |  2002-11-22  |  60.2 KB  |  2,091 lines

  1. package Pod::Html;
  2. use strict;
  3. require Exporter;
  4.  
  5. use vars qw($VERSION @ISA @EXPORT);
  6. $VERSION = 1.04;
  7. @ISA = qw(Exporter);
  8. @EXPORT = qw(pod2html htmlify);
  9.  
  10. use Carp;
  11. use Config;
  12. use Cwd;
  13. use File::Spec;
  14. use File::Spec::Unix;
  15. use Getopt::Long;
  16.  
  17. use locale;    # make \w work right in non-ASCII lands
  18.  
  19. =head1 NAME
  20.  
  21. Pod::Html - module to convert pod files to HTML
  22.  
  23. =head1 SYNOPSIS
  24.  
  25.     use Pod::Html;
  26.     pod2html([options]);
  27.  
  28. =head1 DESCRIPTION
  29.  
  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.
  33.  
  34. =head1 ARGUMENTS
  35.  
  36. Pod::Html takes the following arguments:
  37.  
  38. =over 4
  39.  
  40. =item backlink
  41.  
  42.     --backlink="Back to Top"
  43.  
  44. Adds "Back to Top" links in front of every C<head1> heading (except for
  45. the first).  By default, no backlinks are generated.
  46.  
  47. =item cachedir
  48.  
  49.     --cachedir=name
  50.  
  51. Creates the item and directory caches in the given directory.
  52.  
  53. =item css
  54.  
  55.     --css=stylesheet
  56.  
  57. Specify the URL of a cascading style sheet.  Also disables all HTML/CSS
  58. C<style> attributes that are output by default (to avoid conflicts).
  59.  
  60. =item flush
  61.  
  62.     --flush
  63.  
  64. Flushes the item and directory caches.
  65.  
  66. =item header
  67.  
  68.     --header
  69.     --noheader
  70.  
  71. Creates header and footer blocks containing the text of the C<NAME>
  72. section.  By default, no headers are generated.
  73.  
  74. =item help
  75.  
  76.     --help
  77.  
  78. Displays the usage message.
  79.  
  80. =item htmldir
  81.  
  82.     --htmldir=name
  83.  
  84. Sets the directory in which the resulting HTML file is placed.  This
  85. is used to generate relative links to other files. Not passing this
  86. causes all links to be absolute, since this is the value that tells
  87. Pod::Html the root of the documentation tree.
  88.  
  89. =item htmlroot
  90.  
  91.     --htmlroot=name
  92.  
  93. Sets the base URL for the HTML files.  When cross-references are made,
  94. the HTML root is prepended to the URL.
  95.  
  96. =item index
  97.  
  98.     --index
  99.     --noindex
  100.  
  101. Generate an index at the top of the HTML file.  This is the default
  102. behaviour.
  103.  
  104. =item infile
  105.  
  106.     --infile=name
  107.  
  108. Specify the pod file to convert.  Input is taken from STDIN if no
  109. infile is specified.
  110.  
  111. =item libpods
  112.  
  113.     --libpods=name:...:name
  114.  
  115. List of page names (eg, "perlfunc") which contain linkable C<=item>s.
  116.  
  117. =item netscape
  118.  
  119.     --netscape
  120.     --nonetscape
  121.  
  122. B<Deprecated>, has no effect. For backwards compatibility only.
  123.  
  124. =item outfile
  125.  
  126.     --outfile=name
  127.  
  128. Specify the HTML file to create.  Output goes to STDOUT if no outfile
  129. is specified.
  130.  
  131. =item podpath
  132.  
  133.     --podpath=name:...:name
  134.  
  135. Specify which subdirectories of the podroot contain pod files whose
  136. HTML converted forms can be linked to in cross references.
  137.  
  138. =item podroot
  139.  
  140.     --podroot=name
  141.  
  142. Specify the base directory for finding library pods.
  143.  
  144. =item quiet
  145.  
  146.     --quiet
  147.     --noquiet
  148.  
  149. Don't display warning messages.  These messages
  150. will be displayed by default.  But this is not the same as C<verbose>
  151. mode.
  152.  
  153. =item recurse
  154.  
  155.     --recurse
  156.     --norecurse
  157.  
  158. Recurse into subdirectories specified in podpath (default behaviour).
  159.  
  160. =item title
  161.  
  162.     --title=title
  163.  
  164. Specify the title of the resulting HTML file.
  165.  
  166. =item verbose
  167.  
  168.     --verbose
  169.     --noverbose
  170.  
  171. Display progress messages.  By default, they won't be displayed.
  172.  
  173. =back
  174.  
  175. =head1 EXAMPLE
  176.  
  177.     pod2html("pod2html",
  178.          "--podpath=lib:ext:pod:vms",
  179.          "--podroot=/usr/src/perl",
  180.          "--htmlroot=/perl/nmanual",
  181.          "--libpods=perlfunc:perlguts:perlvar:perlrun:perlop",
  182.          "--recurse",
  183.          "--infile=foo.pod",
  184.          "--outfile=/perl/nmanual/foo.html");
  185.  
  186. =head1 ENVIRONMENT
  187.  
  188. Uses C<$Config{pod2html}> to setup default options.
  189.  
  190. =head1 AUTHOR
  191.  
  192. Tom Christiansen, E<lt>tchrist@perl.comE<gt>.
  193.  
  194. =head1 SEE ALSO
  195.  
  196. L<perlpod>
  197.  
  198. =head1 COPYRIGHT
  199.  
  200. This program is distributed under the Artistic License.
  201.  
  202. =cut
  203.  
  204. my $cachedir = ".";        # The directory to which item and directory
  205.                 # caches will be written.
  206. my $cache_ext = $^O eq 'VMS' ? ".tmp" : ".x~~";
  207. my $dircache = "pod2htmd$cache_ext";
  208. my $itemcache = "pod2htmi$cache_ext";
  209.  
  210. my @begin_stack = ();        # begin/end stack
  211.  
  212. my @libpods = ();            # files to search for links from C<> directives
  213. my $htmlroot = "/";            # http-server base directory from which all
  214.                 #   relative paths in $podpath stem.
  215. my $htmldir = "";        # The directory to which the html pages
  216.                 # will (eventually) be written.
  217. my $htmlfile = "";        # write to stdout by default
  218. my $htmlfileurl = "" ;        # The url that other files would use to
  219.                 # refer to this file.  This is only used
  220.                 # to make relative urls that point to
  221.                 # other files.
  222. my $podfile = "";        # read from stdin by default
  223. my @podpath = ();        # list of directories containing library pods.
  224. my $podroot = File::Spec->curdir;        # filesystem base directory from which all
  225.                 #   relative paths in $podpath stem.
  226. my $css = '';                   # Cascading style sheet
  227. my $recurse = 1;        # recurse on subdirectories in $podpath.
  228. my $quiet = 0;            # not quiet by default
  229. my $verbose = 0;        # not verbose by default
  230. my $doindex = 1;               # non-zero if we should generate an index
  231. my $backlink = '';              # text for "back to top" links
  232. my $listlevel = 0;        # current list depth
  233. my @listend = ();        # the text to use to end the list.
  234. my $after_lpar = 0;             # set to true after a par in an =item
  235. my $ignore = 1;            # whether or not to format text.  we don't
  236.                 #   format text until we hit our first pod
  237.                 #   directive.
  238.  
  239. my %items_named = ();        # for the multiples of the same item in perlfunc
  240. my @items_seen = ();
  241. my $title;            # title to give the pod(s)
  242. my $header = 0;            # produce block header/footer
  243. my $top = 1;            # true if we are at the top of the doc.  used
  244.                 #   to prevent the first <hr /> directive.
  245. my $paragraph;            # which paragraph we're processing (used
  246.                 #   for error messages)
  247. my $ptQuote = 0;                # status of double-quote conversion
  248. my %pages = ();            # associative array used to find the location
  249.                 #   of pages referenced by L<> links.
  250. my %sections = ();        # sections within this page
  251. my %items = ();            # associative array used to find the location
  252.                 #   of =item directives referenced by C<> links
  253. my %local_items = ();           # local items - avoid destruction of %items
  254. my $Is83;                       # is dos with short filenames (8.3)
  255.  
  256. sub init_globals {
  257. $dircache = "pod2htmd$cache_ext";
  258. $itemcache = "pod2htmi$cache_ext";
  259.  
  260. @begin_stack = ();        # begin/end stack
  261.  
  262. @libpods = ();            # files to search for links from C<> directives
  263. $htmlroot = "/";            # http-server base directory from which all
  264.                 #   relative paths in $podpath stem.
  265. $htmldir = "";            # The directory to which the html pages
  266.                 # will (eventually) be written.
  267. $htmlfile = "";        # write to stdout by default
  268. $podfile = "";        # read from stdin by default
  269. @podpath = ();        # list of directories containing library pods.
  270. $podroot = File::Spec->curdir;        # filesystem base directory from which all
  271.                 #   relative paths in $podpath stem.
  272. $css = '';                   # Cascading style sheet
  273. $recurse = 1;        # recurse on subdirectories in $podpath.
  274. $quiet = 0;        # not quiet by default
  275. $verbose = 0;        # not verbose by default
  276. $doindex = 1;               # non-zero if we should generate an index
  277. $backlink = '';        # text for "back to top" links
  278. $listlevel = 0;        # current list depth
  279. @listend = ();        # the text to use to end the list.
  280. $after_lpar = 0;        # set to true after a par in an =item
  281. $ignore = 1;            # whether or not to format text.  we don't
  282.                 #   format text until we hit our first pod
  283.                 #   directive.
  284.  
  285. @items_seen = ();
  286. %items_named = ();
  287. $header = 0;            # produce block header/footer
  288. $title = '';            # title to give the pod(s)
  289. $top = 1;            # true if we are at the top of the doc.  used
  290.                 #   to prevent the first <hr /> directive.
  291. $paragraph = '';            # which paragraph we're processing (used
  292.                 #   for error messages)
  293. %sections = ();        # sections within this page
  294.  
  295. # These are not reinitialised here but are kept as a cache.
  296. # See get_cache and related cache management code.
  297. #%pages = ();            # associative array used to find the location
  298.                 #   of pages referenced by L<> links.
  299. #%items = ();            # associative array used to find the location
  300.                 #   of =item directives referenced by C<> links
  301. %local_items = ();
  302. $Is83=$^O eq 'dos';
  303. }
  304.  
  305. #
  306. # clean_data: global clean-up of pod data
  307. #
  308. sub clean_data($){
  309.     my( $dataref ) = @_;
  310.     for my $i ( 0..$#{$dataref} ) {
  311.     ${$dataref}[$i] =~ s/\s+\Z//;
  312.  
  313.         # have a look for all-space lines
  314.       if( ${$dataref}[$i] =~ /^\s+$/m and $dataref->[$i] !~ /^\s/ ){
  315.         my @chunks = split( /^\s+$/m, ${$dataref}[$i] );
  316.         splice( @$dataref, $i, 1, @chunks );
  317.     }
  318.     }
  319. }
  320.  
  321.  
  322. sub pod2html {
  323.     local(@ARGV) = @_;
  324.     local($/);
  325.     local $_;
  326.  
  327.     init_globals();
  328.  
  329.     $Is83 = 0 if (defined (&Dos::UseLFN) && Dos::UseLFN());
  330.  
  331.     # cache of %pages and %items from last time we ran pod2html
  332.  
  333.     #undef $opt_help if defined $opt_help;
  334.  
  335.     # parse the command-line parameters
  336.     parse_command_line();
  337.  
  338.     # escape the backlink argument (same goes for title but is done later...)
  339.     $backlink = html_escape($backlink) if defined $backlink;
  340.  
  341.     # set some variables to their default values if necessary
  342.     local *POD;
  343.     unless (@ARGV && $ARGV[0]) {
  344.     $podfile  = "-" unless $podfile;    # stdin
  345.     open(POD, "<$podfile")
  346.         || die "$0: cannot open $podfile file for input: $!\n";
  347.     } else {
  348.     $podfile = $ARGV[0];  # XXX: might be more filenames
  349.     *POD = *ARGV;
  350.     }
  351.     $htmlfile = "-" unless $htmlfile;    # stdout
  352.     $htmlroot = "" if $htmlroot eq "/";    # so we don't get a //
  353.     $htmldir =~ s#/\z## ;               # so we don't get a //
  354.     if (  $htmlroot eq ''
  355.        && defined( $htmldir )
  356.        && $htmldir ne ''
  357.        && substr( $htmlfile, 0, length( $htmldir ) ) eq $htmldir
  358.        )
  359.     {
  360.     # Set the 'base' url for this file, so that we can use it
  361.     # as the location from which to calculate relative links
  362.     # to other files. If this is '', then absolute links will
  363.     # be used throughout.
  364.         $htmlfileurl= "$htmldir/" . substr( $htmlfile, length( $htmldir ) + 1);
  365.     }
  366.  
  367.     # read the pod a paragraph at a time
  368.     warn "Scanning for sections in input file(s)\n" if $verbose;
  369.     $/ = "";
  370.     my @poddata  = <POD>;
  371.     close(POD);
  372.  
  373.     # be eol agnostic
  374.     for (@poddata) {
  375.     if (/\r/) {
  376.         if (/\r\n/) {
  377.         @poddata = map { s/\r\n/\n/g;
  378.                  /\n\n/ ?
  379.                      map { "$_\n\n" } split /\n\n/ :
  380.                      $_ } @poddata;
  381.         } else {
  382.         @poddata = map { s/\r/\n/g;
  383.                  /\n\n/ ?
  384.                      map { "$_\n\n" } split /\n\n/ :
  385.                      $_ } @poddata;
  386.         }
  387.         last;
  388.     }
  389.     }
  390.  
  391.     clean_data( \@poddata );
  392.  
  393.     # scan the pod for =head[1-6] directives and build an index
  394.     my $index = scan_headings(\%sections, @poddata);
  395.  
  396.     unless($index) {
  397.     warn "No headings in $podfile\n" if $verbose;
  398.     }
  399.  
  400.     # open the output file
  401.     open(HTML, ">$htmlfile")
  402.         || die "$0: cannot open $htmlfile file for output: $!\n";
  403.  
  404.     # put a title in the HTML file if one wasn't specified
  405.     if ($title eq '') {
  406.     TITLE_SEARCH: {
  407.          for (my $i = 0; $i < @poddata; $i++) {
  408.         if ($poddata[$i] =~ /^=head1\s*NAME\b/m) {
  409.              for my $para ( @poddata[$i, $i+1] ) {
  410.             last TITLE_SEARCH
  411.                 if ($title) = $para =~ /(\S+\s+-+.*\S)/s;
  412.             }
  413.         }
  414.  
  415.         }
  416.     }
  417.     }
  418.     if (!$title and $podfile =~ /\.pod\z/) {
  419.     # probably a split pod so take first =head[12] as title
  420.      for (my $i = 0; $i < @poddata; $i++) {
  421.         last if ($title) = $poddata[$i] =~ /^=head[12]\s*(.*)/;
  422.     }
  423.     warn "adopted '$title' as title for $podfile\n"
  424.         if $verbose and $title;
  425.     }
  426.     if ($title) {
  427.     $title =~ s/\s*\(.*\)//;
  428.     } else {
  429.     warn "$0: no title for $podfile.\n" unless $quiet;
  430.     $podfile =~ /^(.*)(\.[^.\/]+)?\z/s;
  431.     $title = ($podfile eq "-" ? 'No Title' : $1);
  432.     warn "using $title" if $verbose;
  433.     }
  434.     $title = html_escape($title);
  435.  
  436.     my $csslink = '';
  437.     my $bodystyle = ' style="background-color: white"';
  438.     my $tdstyle = ' style="background-color: #cccccc"';
  439.  
  440.     if ($css) {
  441.       $csslink = qq(\n<link rel="stylesheet" href="$css" type="text/css" />);
  442.       $csslink =~ s,\\,/,g;
  443.       $csslink =~ s,(/.):,$1|,;
  444.       $bodystyle = '';
  445.       $tdstyle = '';
  446.     }
  447.  
  448.       my $block = $header ? <<END_OF_BLOCK : '';
  449. <table border="0" width="100%" cellspacing="0" cellpadding="3">
  450. <tr><td class="block"$tdstyle valign="middle">
  451. <big><strong><span class="block"> $title</span></strong></big>
  452. </td></tr>
  453. </table>
  454. END_OF_BLOCK
  455.  
  456.     print HTML <<END_OF_HEAD;
  457. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  458. <html xmlns="http://www.w3.org/1999/xhtml">
  459. <head>
  460. <title>$title</title>$csslink
  461. <link rev="made" href="mailto:$Config{perladmin}" />
  462. </head>
  463.  
  464. <body$bodystyle>
  465. $block
  466. END_OF_HEAD
  467.  
  468.     # load/reload/validate/cache %pages and %items
  469.     get_cache($dircache, $itemcache, \@podpath, $podroot, $recurse);
  470.  
  471.     # scan the pod for =item directives
  472.     scan_items( \%local_items, "", @poddata);
  473.  
  474.     # put an index at the top of the file.  note, if $doindex is 0 we
  475.     # still generate an index, but surround it with an html comment.
  476.     # that way some other program can extract it if desired.
  477.     $index =~ s/--+/-/g;
  478.     print HTML "<p><a name=\"__index__\"></a></p>\n";
  479.     print HTML "<!-- INDEX BEGIN -->\n";
  480.     print HTML "<!--\n" unless $doindex;
  481.     print HTML $index;
  482.     print HTML "-->\n" unless $doindex;
  483.     print HTML "<!-- INDEX END -->\n\n";
  484.     print HTML "<hr />\n" if $doindex and $index;
  485.  
  486.     # now convert this file
  487.     my $after_item;             # set to true after an =item
  488.     my $need_dd = 0;
  489.     warn "Converting input file $podfile\n" if $verbose;
  490.     foreach my $i (0..$#poddata){
  491.         $ptQuote = 0; # status of quote conversion
  492.  
  493.     $_ = $poddata[$i];
  494.     $paragraph = $i+1;
  495.     if (/^(=.*)/s) {    # is it a pod directive?
  496.         $ignore = 0;
  497.         $after_item = 0;
  498.         $need_dd = 0;
  499.         $_ = $1;
  500.         if (/^=begin\s+(\S+)\s*(.*)/si) {# =begin
  501.         process_begin($1, $2);
  502.         } elsif (/^=end\s+(\S+)\s*(.*)/si) {# =end
  503.         process_end($1, $2);
  504.         } elsif (/^=cut/) {            # =cut
  505.         process_cut();
  506.         } elsif (/^=pod/) {            # =pod
  507.         process_pod();
  508.         } else {
  509.         next if @begin_stack && $begin_stack[-1] ne 'html';
  510.  
  511.         if (/^=(head[1-6])\s+(.*\S)/s) {    # =head[1-6] heading
  512.             process_head( $1, $2, $doindex && $index );
  513.         } elsif (/^=item\s*(.*\S)?/sm) {    # =item text
  514.             $need_dd = process_item( $1 );
  515.             $after_item = 1;
  516.         } elsif (/^=over\s*(.*)/) {        # =over N
  517.             process_over();
  518.         } elsif (/^=back/) {        # =back
  519.             process_back();
  520.         } elsif (/^=for\s+(\S+)\s*(.*)/si) {# =for
  521.             process_for($1,$2);
  522.         } else {
  523.             /^=(\S*)\s*/;
  524.             warn "$0: $podfile: unknown pod directive '$1' in "
  525.                . "paragraph $paragraph.  ignoring.\n" unless $quiet;
  526.         }
  527.         }
  528.         $top = 0;
  529.     }
  530.     else {
  531.         next if $ignore;
  532.         next if @begin_stack && $begin_stack[-1] ne 'html';
  533.         print HTML and next if @begin_stack && $begin_stack[-1] eq 'html';
  534.         print HTML "<dd>\n" if $need_dd;
  535.         my $text = $_;
  536.         if( $text =~ /\A\s+/ ){
  537.         process_pre( \$text );
  538.             print HTML "<pre>\n$text</pre>\n";
  539.  
  540.         } else {
  541.         process_text( \$text );
  542.  
  543.         # experimental: check for a paragraph where all lines
  544.         # have some ...\t...\t...\n pattern
  545.         if( $text =~ /\t/ ){
  546.             my @lines = split( "\n", $text );
  547.             if( @lines > 1 ){
  548.             my $all = 2;
  549.             foreach my $line ( @lines ){
  550.                 if( $line =~ /\S/ && $line !~ /\t/ ){
  551.                 $all--;
  552.                 last if $all == 0;
  553.                 }
  554.             }
  555.             if( $all > 0 ){
  556.                 $text =~ s/\t+/<td>/g;
  557.                 $text =~ s/^/<tr><td>/gm;
  558.                 $text = '<table cellspacing="0" cellpadding="0">' .
  559.                                     $text . '</table>';
  560.             }
  561.             }
  562.         }
  563.         ## end of experimental
  564.  
  565.         if( $after_item ){
  566.             print HTML "$text\n";
  567.             $after_lpar = 1;
  568.         } else {
  569.             print HTML "<p>$text</p>\n";
  570.         }
  571.         }
  572.         print HTML "</dd>\n" if $need_dd;
  573.         $after_item = 0;
  574.     }
  575.     }
  576.  
  577.     # finish off any pending directives
  578.     finish_list();
  579.  
  580.     # link to page index
  581.     print HTML "<p><a href=\"#__index__\"><small>$backlink</small></a></p>\n"
  582.     if $doindex and $index and $backlink;
  583.  
  584.     print HTML <<END_OF_TAIL;
  585. $block
  586. </body>
  587.  
  588. </html>
  589. END_OF_TAIL
  590.  
  591.     # close the html file
  592.     close(HTML);
  593.  
  594.     warn "Finished\n" if $verbose;
  595. }
  596.  
  597. ##############################################################################
  598.  
  599. my $usage;            # see below
  600. sub usage {
  601.     my $podfile = shift;
  602.     warn "$0: $podfile: @_\n" if @_;
  603.     die $usage;
  604. }
  605.  
  606. $usage =<<END_OF_USAGE;
  607. Usage:  $0 --help --htmlroot=<name> --infile=<name> --outfile=<name>
  608.            --podpath=<name>:...:<name> --podroot=<name>
  609.            --libpods=<name>:...:<name> --recurse --verbose --index
  610.            --netscape --norecurse --noindex --cachedir=<name>
  611.  
  612.   --backlink     - set text for "back to top" links (default: none).
  613.   --cachedir     - directory for the item and directory cache files.
  614.   --css          - stylesheet URL
  615.   --flush        - flushes the item and directory caches.
  616.   --[no]header   - produce block header/footer (default is no headers).
  617.   --help         - prints this message.
  618.   --htmldir      - directory for resulting HTML files.
  619.   --htmlroot     - http-server base directory from which all relative paths
  620.                    in podpath stem (default is /).
  621.   --[no]index    - generate an index at the top of the resulting html
  622.                    (default behaviour).
  623.   --infile       - filename for the pod to convert (input taken from stdin
  624.                    by default).
  625.   --libpods      - colon-separated list of pages to search for =item pod
  626.                    directives in as targets of C<> and implicit links (empty
  627.                    by default).  note, these are not filenames, but rather
  628.                    page names like those that appear in L<> links.
  629.   --outfile      - filename for the resulting html file (output sent to
  630.                    stdout by default).
  631.   --podpath      - colon-separated list of directories containing library
  632.                    pods (empty by default).
  633.   --podroot      - filesystem base directory from which all relative paths
  634.                    in podpath stem (default is .).
  635.   --[no]quiet    - supress some benign warning messages (default is off).
  636.   --[no]recurse  - recurse on those subdirectories listed in podpath
  637.                    (default behaviour).
  638.   --title        - title that will appear in resulting html file.
  639.   --[no]verbose  - self-explanatory (off by default).
  640.   --[no]netscape - deprecated, has no effect. for backwards compatibility only.
  641.  
  642. END_OF_USAGE
  643.  
  644. sub parse_command_line {
  645.     my ($opt_backlink,$opt_cachedir,$opt_css,$opt_flush,$opt_header,$opt_help,
  646.     $opt_htmldir,$opt_htmlroot,$opt_index,$opt_infile,$opt_libpods,
  647.     $opt_netscape,$opt_outfile,$opt_podpath,$opt_podroot,$opt_quiet,
  648.     $opt_recurse,$opt_title,$opt_verbose);
  649.  
  650.     unshift @ARGV, split ' ', $Config{pod2html} if $Config{pod2html};
  651.     my $result = GetOptions(
  652.                 'backlink=s' => \$opt_backlink,
  653.                 'cachedir=s' => \$opt_cachedir,
  654.                 'css=s'      => \$opt_css,
  655.                 'flush'      => \$opt_flush,
  656.                 'header!'    => \$opt_header,
  657.                 'help'       => \$opt_help,
  658.                 'htmldir=s'  => \$opt_htmldir,
  659.                 'htmlroot=s' => \$opt_htmlroot,
  660.                 'index!'     => \$opt_index,
  661.                 'infile=s'   => \$opt_infile,
  662.                 'libpods=s'  => \$opt_libpods,
  663.                 'netscape!'  => \$opt_netscape,
  664.                 'outfile=s'  => \$opt_outfile,
  665.                 'podpath=s'  => \$opt_podpath,
  666.                 'podroot=s'  => \$opt_podroot,
  667.                 'quiet!'     => \$opt_quiet,
  668.                 'recurse!'   => \$opt_recurse,
  669.                 'title=s'    => \$opt_title,
  670.                 'verbose!'   => \$opt_verbose,
  671.                );
  672.     usage("-", "invalid parameters") if not $result;
  673.  
  674.     usage("-") if defined $opt_help;    # see if the user asked for help
  675.     $opt_help = "";            # just to make -w shut-up.
  676.  
  677.     @podpath  = split(":", $opt_podpath) if defined $opt_podpath;
  678.     @libpods  = split(":", $opt_libpods) if defined $opt_libpods;
  679.  
  680.     $backlink = $opt_backlink if defined $opt_backlink;
  681.     $cachedir = $opt_cachedir if defined $opt_cachedir;
  682.     $css      = $opt_css      if defined $opt_css;
  683.     $header   = $opt_header   if defined $opt_header;
  684.     $htmldir  = $opt_htmldir  if defined $opt_htmldir;
  685.     $htmlroot = $opt_htmlroot if defined $opt_htmlroot;
  686.     $doindex  = $opt_index    if defined $opt_index;
  687.     $podfile  = $opt_infile   if defined $opt_infile;
  688.     $htmlfile = $opt_outfile  if defined $opt_outfile;
  689.     $podroot  = $opt_podroot  if defined $opt_podroot;
  690.     $quiet    = $opt_quiet    if defined $opt_quiet;
  691.     $recurse  = $opt_recurse  if defined $opt_recurse;
  692.     $title    = $opt_title    if defined $opt_title;
  693.     $verbose  = $opt_verbose  if defined $opt_verbose;
  694.  
  695.     warn "Flushing item and directory caches\n"
  696.     if $opt_verbose && defined $opt_flush;
  697.     $dircache = "$cachedir/pod2htmd$cache_ext";
  698.     $itemcache = "$cachedir/pod2htmi$cache_ext";
  699.     unlink($dircache, $itemcache) if defined $opt_flush;
  700. }
  701.  
  702.  
  703. my $saved_cache_key;
  704.  
  705. sub get_cache {
  706.     my($dircache, $itemcache, $podpath, $podroot, $recurse) = @_;
  707.     my @cache_key_args = @_;
  708.  
  709.     # A first-level cache:
  710.     # Don't bother reading the cache files if they still apply
  711.     # and haven't changed since we last read them.
  712.  
  713.     my $this_cache_key = cache_key(@cache_key_args);
  714.  
  715.     return if $saved_cache_key and $this_cache_key eq $saved_cache_key;
  716.  
  717.     # load the cache of %pages and %items if possible.  $tests will be
  718.     # non-zero if successful.
  719.     my $tests = 0;
  720.     if (-f $dircache && -f $itemcache) {
  721.     warn "scanning for item cache\n" if $verbose;
  722.     $tests = load_cache($dircache, $itemcache, $podpath, $podroot);
  723.     }
  724.  
  725.     # if we didn't succeed in loading the cache then we must (re)build
  726.     #  %pages and %items.
  727.     if (!$tests) {
  728.     warn "scanning directories in pod-path\n" if $verbose;
  729.     scan_podpath($podroot, $recurse, 0);
  730.     }
  731.     $saved_cache_key = cache_key(@cache_key_args);
  732. }
  733.  
  734. sub cache_key {
  735.     my($dircache, $itemcache, $podpath, $podroot, $recurse) = @_;
  736.     return join('!', $dircache, $itemcache, $recurse,
  737.     @$podpath, $podroot, stat($dircache), stat($itemcache));
  738. }
  739.  
  740. #
  741. # load_cache - tries to find if the caches stored in $dircache and $itemcache
  742. #  are valid caches of %pages and %items.  if they are valid then it loads
  743. #  them and returns a non-zero value.
  744. #
  745. sub load_cache {
  746.     my($dircache, $itemcache, $podpath, $podroot) = @_;
  747.     my($tests);
  748.     local $_;
  749.  
  750.     $tests = 0;
  751.  
  752.     open(CACHE, "<$itemcache") ||
  753.     die "$0: error opening $itemcache for reading: $!\n";
  754.     $/ = "\n";
  755.  
  756.     # is it the same podpath?
  757.     $_ = <CACHE>;
  758.     chomp($_);
  759.     $tests++ if (join(":", @$podpath) eq $_);
  760.  
  761.     # is it the same podroot?
  762.     $_ = <CACHE>;
  763.     chomp($_);
  764.     $tests++ if ($podroot eq $_);
  765.  
  766.     # load the cache if its good
  767.     if ($tests != 2) {
  768.     close(CACHE);
  769.     return 0;
  770.     }
  771.  
  772.     warn "loading item cache\n" if $verbose;
  773.     while (<CACHE>) {
  774.     /(.*?) (.*)$/;
  775.     $items{$1} = $2;
  776.     }
  777.     close(CACHE);
  778.  
  779.     warn "scanning for directory cache\n" if $verbose;
  780.     open(CACHE, "<$dircache") ||
  781.     die "$0: error opening $dircache for reading: $!\n";
  782.     $/ = "\n";
  783.     $tests = 0;
  784.  
  785.     # is it the same podpath?
  786.     $_ = <CACHE>;
  787.     chomp($_);
  788.     $tests++ if (join(":", @$podpath) eq $_);
  789.  
  790.     # is it the same podroot?
  791.     $_ = <CACHE>;
  792.     chomp($_);
  793.     $tests++ if ($podroot eq $_);
  794.  
  795.     # load the cache if its good
  796.     if ($tests != 2) {
  797.     close(CACHE);
  798.     return 0;
  799.     }
  800.  
  801.     warn "loading directory cache\n" if $verbose;
  802.     while (<CACHE>) {
  803.     /(.*?) (.*)$/;
  804.     $pages{$1} = $2;
  805.     }
  806.  
  807.     close(CACHE);
  808.  
  809.     return 1;
  810. }
  811.  
  812. #
  813. # scan_podpath - scans the directories specified in @podpath for directories,
  814. #  .pod files, and .pm files.  it also scans the pod files specified in
  815. #  @libpods for =item directives.
  816. #
  817. sub scan_podpath {
  818.     my($podroot, $recurse, $append) = @_;
  819.     my($pwd, $dir);
  820.     my($libpod, $dirname, $pod, @files, @poddata);
  821.  
  822.     unless($append) {
  823.     %items = ();
  824.     %pages = ();
  825.     }
  826.  
  827.     # scan each directory listed in @podpath
  828.     $pwd = getcwd();
  829.     chdir($podroot)
  830.     || die "$0: error changing to directory $podroot: $!\n";
  831.     foreach $dir (@podpath) {
  832.     scan_dir($dir, $recurse);
  833.     }
  834.  
  835.     # scan the pods listed in @libpods for =item directives
  836.     foreach $libpod (@libpods) {
  837.     # if the page isn't defined then we won't know where to find it
  838.     # on the system.
  839.     next unless defined $pages{$libpod} && $pages{$libpod};
  840.  
  841.     # if there is a directory then use the .pod and .pm files within it.
  842.     # NOTE: Only finds the first so-named directory in the tree.
  843. #    if ($pages{$libpod} =~ /([^:]*[^(\.pod|\.pm)]):/) {
  844.     if ($pages{$libpod} =~ /([^:]*(?<!\.pod)(?<!\.pm)):/) {
  845.         #  find all the .pod and .pm files within the directory
  846.         $dirname = $1;
  847.         opendir(DIR, $dirname) ||
  848.         die "$0: error opening directory $dirname: $!\n";
  849.         @files = grep(/(\.pod|\.pm)\z/ && ! -d $_, readdir(DIR));
  850.         closedir(DIR);
  851.  
  852.         # scan each .pod and .pm file for =item directives
  853.         foreach $pod (@files) {
  854.         open(POD, "<$dirname/$pod") ||
  855.             die "$0: error opening $dirname/$pod for input: $!\n";
  856.         @poddata = <POD>;
  857.         close(POD);
  858.         clean_data( \@poddata );
  859.  
  860.         scan_items( \%items, "$dirname/$pod", @poddata);
  861.         }
  862.  
  863.         # use the names of files as =item directives too.
  864. ### Don't think this should be done this way - confuses issues.(WL)
  865. ###        foreach $pod (@files) {
  866. ###        $pod =~ /^(.*)(\.pod|\.pm)$/;
  867. ###        $items{$1} = "$dirname/$1.html" if $1;
  868. ###        }
  869.     } elsif ($pages{$libpod} =~ /([^:]*\.pod):/ ||
  870.          $pages{$libpod} =~ /([^:]*\.pm):/) {
  871.         # scan the .pod or .pm file for =item directives
  872.         $pod = $1;
  873.         open(POD, "<$pod") ||
  874.         die "$0: error opening $pod for input: $!\n";
  875.         @poddata = <POD>;
  876.         close(POD);
  877.         clean_data( \@poddata );
  878.  
  879.         scan_items( \%items, "$pod", @poddata);
  880.     } else {
  881.         warn "$0: shouldn't be here (line ".__LINE__."\n" unless $quiet;
  882.     }
  883.     }
  884.     @poddata = ();    # clean-up a bit
  885.  
  886.     chdir($pwd)
  887.     || die "$0: error changing to directory $pwd: $!\n";
  888.  
  889.     # cache the item list for later use
  890.     warn "caching items for later use\n" if $verbose;
  891.     open(CACHE, ">$itemcache") ||
  892.     die "$0: error open $itemcache for writing: $!\n";
  893.  
  894.     print CACHE join(":", @podpath) . "\n$podroot\n";
  895.     foreach my $key (keys %items) {
  896.     print CACHE "$key $items{$key}\n";
  897.     }
  898.  
  899.     close(CACHE);
  900.  
  901.     # cache the directory list for later use
  902.     warn "caching directories for later use\n" if $verbose;
  903.     open(CACHE, ">$dircache") ||
  904.     die "$0: error open $dircache for writing: $!\n";
  905.  
  906.     print CACHE join(":", @podpath) . "\n$podroot\n";
  907.     foreach my $key (keys %pages) {
  908.     print CACHE "$key $pages{$key}\n";
  909.     }
  910.  
  911.     close(CACHE);
  912. }
  913.  
  914. #
  915. # scan_dir - scans the directory specified in $dir for subdirectories, .pod
  916. #  files, and .pm files.  notes those that it finds.  this information will
  917. #  be used later in order to figure out where the pages specified in L<>
  918. #  links are on the filesystem.
  919. #
  920. sub scan_dir {
  921.     my($dir, $recurse) = @_;
  922.     my($t, @subdirs, @pods, $pod, $dirname, @dirs);
  923.     local $_;
  924.  
  925.     @subdirs = ();
  926.     @pods = ();
  927.  
  928.     opendir(DIR, $dir) ||
  929.     die "$0: error opening directory $dir: $!\n";
  930.     while (defined($_ = readdir(DIR))) {
  931.     if (-d "$dir/$_" && $_ ne "." && $_ ne "..") {        # directory
  932.         $pages{$_}  = "" unless defined $pages{$_};
  933.         $pages{$_} .= "$dir/$_:";
  934.         push(@subdirs, $_);
  935.     } elsif (/\.pod\z/) {                                # .pod
  936.         s/\.pod\z//;
  937.         $pages{$_}  = "" unless defined $pages{$_};
  938.         $pages{$_} .= "$dir/$_.pod:";
  939.         push(@pods, "$dir/$_.pod");
  940.     } elsif (/\.html\z/) {                                 # .html
  941.         s/\.html\z//;
  942.         $pages{$_}  = "" unless defined $pages{$_};
  943.         $pages{$_} .= "$dir/$_.pod:";
  944.     } elsif (/\.pm\z/) {                                 # .pm
  945.         s/\.pm\z//;
  946.         $pages{$_}  = "" unless defined $pages{$_};
  947.         $pages{$_} .= "$dir/$_.pm:";
  948.         push(@pods, "$dir/$_.pm");
  949.     }
  950.     }
  951.     closedir(DIR);
  952.  
  953.     # recurse on the subdirectories if necessary
  954.     if ($recurse) {
  955.     foreach my $subdir (@subdirs) {
  956.         scan_dir("$dir/$subdir", $recurse);
  957.     }
  958.     }
  959. }
  960.  
  961. #
  962. # scan_headings - scan a pod file for head[1-6] tags, note the tags, and
  963. #  build an index.
  964. #
  965. sub scan_headings {
  966.     my($sections, @data) = @_;
  967.     my($tag, $which_head, $otitle, $listdepth, $index);
  968.  
  969.     # here we need    local $ignore = 0;
  970.     #  unfortunately, we can't have it, because $ignore is lexical
  971.     $ignore = 0;
  972.  
  973.     $listdepth = 0;
  974.     $index = "";
  975.  
  976.     # scan for =head directives, note their name, and build an index
  977.     #  pointing to each of them.
  978.     foreach my $line (@data) {
  979.       if ($line =~ /^=(head)([1-6])\s+(.*)/) {
  980.         ($tag, $which_head, $otitle) = ($1,$2,$3);
  981.  
  982.         my $title = depod( $otitle );
  983.         my $name = anchorify( $title );
  984.         $$sections{$name} = 1;
  985.         $title = process_text( \$otitle );
  986.  
  987.         while ($which_head != $listdepth) {
  988.         if ($which_head > $listdepth) {
  989.             $index .= "\n" . ("\t" x $listdepth) . "<ul>\n";
  990.             $listdepth++;
  991.         } elsif ($which_head < $listdepth) {
  992.             $listdepth--;
  993.             $index .= "\n" . ("\t" x $listdepth) . "</ul>\n";
  994.         }
  995.         }
  996.  
  997.         $index .= "\n" . ("\t" x $listdepth) . "<li>" .
  998.                   "<a href=\"#" . $name . "\">" .
  999.               $title . "</a></li>";
  1000.     }
  1001.     }
  1002.  
  1003.     # finish off the lists
  1004.     while ($listdepth--) {
  1005.     $index .= "\n" . ("\t" x $listdepth) . "</ul>\n";
  1006.     }
  1007.  
  1008.     # get rid of bogus lists
  1009.     $index =~ s,\t*<ul>\s*</ul>\n,,g;
  1010.  
  1011.     $ignore = 1;    # restore old value;
  1012.  
  1013.     return $index;
  1014. }
  1015.  
  1016. #
  1017. # scan_items - scans the pod specified by $pod for =item directives.  we
  1018. #  will use this information later on in resolving C<> links.
  1019. #
  1020. sub scan_items {
  1021.     my( $itemref, $pod, @poddata ) = @_;
  1022.     my($i, $item);
  1023.     local $_;
  1024.  
  1025.     $pod =~ s/\.pod\z//;
  1026.     $pod .= ".html" if $pod;
  1027.  
  1028.     foreach $i (0..$#poddata) {
  1029.     my $txt = depod( $poddata[$i] );
  1030.  
  1031.     # figure out what kind of item it is.
  1032.     # Build string for referencing this item.
  1033.     if ( $txt =~ /\A=item\s+\*\s*(.*)\Z/s ) { # bullet
  1034.         next unless $1;
  1035.         $item = $1;
  1036.         } elsif( $txt =~ /\A=item\s+(?>\d+\.?)\s*(.*)\Z/s ) { # numbered list
  1037.         $item = $1;
  1038.     } elsif( $txt =~ /\A=item\s+(.*)\Z/s ) { # plain item
  1039.         $item = $1;
  1040.     } else {
  1041.         next;
  1042.     }
  1043.     my $fid = fragment_id( $item );
  1044.     $$itemref{$fid} = "$pod" if $fid;
  1045.     }
  1046. }
  1047.  
  1048. #
  1049. # process_head - convert a pod head[1-6] tag and convert it to HTML format.
  1050. #
  1051. sub process_head {
  1052.     my($tag, $heading, $hasindex) = @_;
  1053.  
  1054.     # figure out the level of the =head
  1055.     $tag =~ /head([1-6])/;
  1056.     my $level = $1;
  1057.  
  1058.     if( $listlevel ){
  1059.     warn "$0: $podfile: unterminated list at =head in paragraph $paragraph.  ignoring.\n" unless $quiet;
  1060.         while( $listlevel ){
  1061.             process_back();
  1062.         }
  1063.     }
  1064.  
  1065.     print HTML "<p>\n";
  1066.     if( $level == 1 && ! $top ){
  1067.       print HTML "<a href=\"#__index__\"><small>$backlink</small></a>\n"
  1068.         if $hasindex and $backlink;
  1069.       print HTML "</p>\n<hr />\n"
  1070.     } else {
  1071.       print HTML "</p>\n";
  1072.     }
  1073.  
  1074.     my $name = anchorify( depod( $heading ) );
  1075.     my $convert = process_text( \$heading );
  1076.     print HTML "<h$level><a name=\"$name\">$convert</a></h$level>\n";
  1077. }
  1078.  
  1079.  
  1080. #
  1081. # emit_item_tag - print an =item's text
  1082. # Note: The global $EmittedItem is used for inhibiting self-references.
  1083. #
  1084. my $EmittedItem;
  1085.  
  1086. sub emit_item_tag($$$){
  1087.     my( $otext, $text, $compact ) = @_;
  1088.     my $item = fragment_id( $text );
  1089.  
  1090.     $EmittedItem = $item;
  1091.     ### print STDERR "emit_item_tag=$item ($text)\n";
  1092.  
  1093.     print HTML '<strong>';
  1094.     if ($items_named{$item}++) {
  1095.     print HTML process_text( \$otext );
  1096.     } else {
  1097.         my $name = 'item_' . $item;
  1098.         $name = anchorify($name);
  1099.     print HTML qq{<a name="$name">}, process_text( \$otext ), '</a>';
  1100.     }
  1101.     print HTML "</strong><br />\n";
  1102.     undef( $EmittedItem );
  1103. }
  1104.  
  1105. sub emit_li {
  1106.     my( $tag ) = @_;
  1107.     if( $items_seen[$listlevel]++ == 0 ){
  1108.     push( @listend, "</$tag>" );
  1109.     print HTML "<$tag>\n";
  1110.     }
  1111.     my $emitted = $tag eq 'dl' ? 'dt' : 'li';
  1112.     print HTML "<$emitted>";
  1113.     return $emitted;
  1114. }
  1115.  
  1116. #
  1117. # process_item - convert a pod item tag and convert it to HTML format.
  1118. #
  1119. sub process_item {
  1120.     my( $otext ) = @_;
  1121.     my $need_dd = 0; # set to 1 if we need a <dd></dd> after an item
  1122.  
  1123.     # lots of documents start a list without doing an =over.  this is
  1124.     # bad!  but, the proper thing to do seems to be to just assume
  1125.     # they did do an =over.  so warn them once and then continue.
  1126.     if( $listlevel == 0 ){
  1127.     warn "$0: $podfile: unexpected =item directive in paragraph $paragraph.  ignoring.\n" unless $quiet;
  1128.     process_over();
  1129.     }
  1130.  
  1131.     # formatting: insert a paragraph if preceding item has >1 paragraph
  1132.     if( $after_lpar ){
  1133.     print HTML "<p></p>\n";
  1134.     $after_lpar = 0;
  1135.     }
  1136.  
  1137.     # remove formatting instructions from the text
  1138.     my $text = depod( $otext );
  1139.  
  1140.     my $emitted; # the tag actually emitted, used for closing
  1141.  
  1142.     # all the list variants:
  1143.     if( $text =~ /\A\*/ ){ # bullet
  1144.         $emitted = emit_li( 'ul' );
  1145.         if ($text =~ /\A\*\s+(.+)\Z/s ) { # with additional text
  1146.             my $tag = $1;
  1147.             $otext =~ s/\A\*\s+//;
  1148.             emit_item_tag( $otext, $tag, 1 );
  1149.         }
  1150.  
  1151.     } elsif( $text =~ /\A\d+/ ){ # numbered list
  1152.         $emitted = emit_li( 'ol' );
  1153.         if ($text =~ /\A(?>\d+\.?)\s*(.+)\Z/s ) { # with additional text
  1154.             my $tag = $1;
  1155.             $otext =~ s/\A\d+\.?\s*//;
  1156.             emit_item_tag( $otext, $tag, 1 );
  1157.         }
  1158.  
  1159.     } else {            # definition list
  1160.         $emitted = emit_li( 'dl' );
  1161.         if ($text =~ /\A(.+)\Z/s ){ # should have text
  1162.             emit_item_tag( $otext, $text, 1 );
  1163.         }
  1164.         $need_dd = 1;
  1165.     }
  1166.     print HTML "</$emitted>" if $emitted;
  1167.     print HTML "\n";
  1168.     return $need_dd;
  1169. }
  1170.  
  1171. #
  1172. # process_over - process a pod over tag and start a corresponding HTML list.
  1173. #
  1174. sub process_over {
  1175.     # start a new list
  1176.     $listlevel++;
  1177.     push( @items_seen, 0 );
  1178.     $after_lpar = 0;
  1179. }
  1180.  
  1181. #
  1182. # process_back - process a pod back tag and convert it to HTML format.
  1183. #
  1184. sub process_back {
  1185.     if( $listlevel == 0 ){
  1186.     warn "$0: $podfile: unexpected =back directive in paragraph $paragraph.  ignoring.\n" unless $quiet;
  1187.     return;
  1188.     }
  1189.  
  1190.     # close off the list.  note, I check to see if $listend[$listlevel] is
  1191.     # defined because an =item directive may have never appeared and thus
  1192.     # $listend[$listlevel] may have never been initialized.
  1193.     $listlevel--;
  1194.     if( defined $listend[$listlevel] ){
  1195.     print HTML '<p></p>' if $after_lpar;
  1196.     print HTML $listend[$listlevel];
  1197.         print HTML "\n";
  1198.         pop( @listend );
  1199.     }
  1200.     $after_lpar = 0;
  1201.  
  1202.     # clean up item count
  1203.     pop( @items_seen );
  1204. }
  1205.  
  1206. #
  1207. # process_cut - process a pod cut tag, thus start ignoring pod directives.
  1208. #
  1209. sub process_cut {
  1210.     $ignore = 1;
  1211. }
  1212.  
  1213. #
  1214. # process_pod - process a pod tag, thus stop ignoring pod directives
  1215. # until we see a corresponding cut.
  1216. #
  1217. sub process_pod {
  1218.     # no need to set $ignore to 0 cause the main loop did it
  1219. }
  1220.  
  1221. #
  1222. # process_for - process a =for pod tag.  if it's for html, spit
  1223. # it out verbatim, if illustration, center it, otherwise ignore it.
  1224. #
  1225. sub process_for {
  1226.     my($whom, $text) = @_;
  1227.     if ( $whom =~ /^(pod2)?html$/i) {
  1228.     print HTML $text;
  1229.     } elsif ($whom =~ /^illustration$/i) {
  1230.         1 while chomp $text;
  1231.     for my $ext (qw[.png .gif .jpeg .jpg .tga .pcl .bmp]) {
  1232.       $text .= $ext, last if -r "$text$ext";
  1233.     }
  1234.         print HTML qq{<p align="center"><img src="$text" alt="$text illustration" /></p>};
  1235.     }
  1236. }
  1237.  
  1238. #
  1239. # process_begin - process a =begin pod tag.  this pushes
  1240. # whom we're beginning on the begin stack.  if there's a
  1241. # begin stack, we only print if it us.
  1242. #
  1243. sub process_begin {
  1244.     my($whom, $text) = @_;
  1245.     $whom = lc($whom);
  1246.     push (@begin_stack, $whom);
  1247.     if ( $whom =~ /^(pod2)?html$/) {
  1248.     print HTML $text if $text;
  1249.     }
  1250. }
  1251.  
  1252. #
  1253. # process_end - process a =end pod tag.  pop the
  1254. # begin stack.  die if we're mismatched.
  1255. #
  1256. sub process_end {
  1257.     my($whom, $text) = @_;
  1258.     $whom = lc($whom);
  1259.     if ($begin_stack[-1] ne $whom ) {
  1260.     die "Unmatched begin/end at chunk $paragraph\n"
  1261.     }
  1262.     pop( @begin_stack );
  1263. }
  1264.  
  1265. #
  1266. # process_pre - indented paragraph, made into <pre></pre>
  1267. #
  1268. sub process_pre {
  1269.     my( $text ) = @_;
  1270.     my( $rest );
  1271.     return if $ignore;
  1272.  
  1273.     $rest = $$text;
  1274.  
  1275.     # insert spaces in place of tabs
  1276.     $rest =~ s#(.+)#
  1277.         my $line = $1;
  1278.             1 while $line =~ s/(\t+)/' ' x ((length($1) * 8) - $-[0] % 8)/e;
  1279.         $line;
  1280.     #eg;
  1281.  
  1282.     # convert some special chars to HTML escapes
  1283.     $rest = html_escape($rest);
  1284.  
  1285.     # try and create links for all occurrences of perl.* within
  1286.     # the preformatted text.
  1287.     $rest =~ s{
  1288.              (\s*)(perl\w+)
  1289.           }{
  1290.          if ( defined $pages{$2} ){    # is a link
  1291.              qq($1<a href="$htmlroot/$pages{$2}">$2</a>);
  1292.          } elsif (defined $pages{dosify($2)}) {    # is a link
  1293.              qq($1<a href="$htmlroot/$pages{dosify($2)}">$2</a>);
  1294.          } else {
  1295.              "$1$2";
  1296.          }
  1297.           }xeg;
  1298.      $rest =~ s{
  1299.          (<a\ href="?) ([^>:]*:)? ([^>:]*) \.pod: ([^>:]*:)?
  1300.                }{
  1301.                   my $url ;
  1302.                   if ( $htmlfileurl ne '' ){
  1303.              # Here, we take advantage of the knowledge
  1304.              # that $htmlfileurl ne '' implies $htmlroot eq ''.
  1305.              # Since $htmlroot eq '', we need to prepend $htmldir
  1306.              # on the fron of the link to get the absolute path
  1307.              # of the link's target. We check for a leading '/'
  1308.              # to avoid corrupting links that are #, file:, etc.
  1309.              my $old_url = $3 ;
  1310.              $old_url = "$htmldir$old_url" if $old_url =~ m{^\/};
  1311.               $url = relativize_url( "$old_url.html", $htmlfileurl );
  1312.               } else {
  1313.              $url = "$3.html" ;
  1314.           }
  1315.           "$1$url" ;
  1316.            }xeg;
  1317.  
  1318.     # Look for embedded URLs and make them into links.  We don't
  1319.     # relativize them since they are best left as the author intended.
  1320.  
  1321.     my $urls = '(' . join ('|', qw{
  1322.                 http
  1323.                 telnet
  1324.         mailto
  1325.         news
  1326.                 gopher
  1327.                 file
  1328.                 wais
  1329.                 ftp
  1330.             } )
  1331.         . ')';
  1332.  
  1333.     my $ltrs = '\w';
  1334.     my $gunk = '/#~:.?+=&%@!\-';
  1335.     my $punc = '.:!?\-;';
  1336.     my $any  = "${ltrs}${gunk}${punc}";
  1337.  
  1338.     $rest =~ s{
  1339.     \b            # start at word boundary
  1340.     (            # begin $1  {
  1341.         $urls :        # need resource and a colon
  1342.         (?!:)        # Ignore File::, among others.
  1343.         [$any] +?        # followed by one or more of any valid
  1344.                 #   character, but be conservative and
  1345.                 #   take only what you need to....
  1346.     )            # end   $1  }
  1347.     (?=
  1348.         " >        # maybe pre-quoted '<a href="...">'
  1349.     |            # or:
  1350.         [$punc]*        # 0 or more punctuation
  1351.         (?:            #   followed
  1352.         [^$any]        #   by a non-url char
  1353.         |            #   or
  1354.         $        #   end of the string
  1355.         )            #
  1356.     |            # or else
  1357.         $            #   then end of the string
  1358.         )
  1359.       }{<a href="$1">$1</a>}igox;
  1360.  
  1361.     # text should be as it is (verbatim)
  1362.     $$text = $rest;
  1363. }
  1364.  
  1365.  
  1366. #
  1367. # pure text processing
  1368. #
  1369. # pure_text/inIS_text: differ with respect to automatic C<> recognition.
  1370. # we don't want this to happen within IS
  1371. #
  1372. sub pure_text($){
  1373.     my $text = shift();
  1374.     process_puretext( $text, \$ptQuote, 1 );
  1375. }
  1376.  
  1377. sub inIS_text($){
  1378.     my $text = shift();
  1379.     process_puretext( $text, \$ptQuote, 0 );
  1380. }
  1381.  
  1382. #
  1383. # process_puretext - process pure text (without pod-escapes) converting
  1384. #  double-quotes and handling implicit C<> links.
  1385. #
  1386. sub process_puretext {
  1387.     my($text, $quote, $notinIS) = @_;
  1388.  
  1389.     ## Guessing at func() or [$@%&]*var references in plain text is destined
  1390.     ## to produce some strange looking ref's. uncomment to disable:
  1391.     ## $notinIS = 0;
  1392.  
  1393.     my(@words, $lead, $trail);
  1394.  
  1395.     # convert double-quotes to single-quotes
  1396.     if( $$quote && $text =~ s/"/''/s ){
  1397.         $$quote = 0;
  1398.     }
  1399.     while ($text =~ s/"([^"]*)"/``$1''/sg) {};
  1400.     $$quote = 1 if $text =~ s/"/``/s;
  1401.  
  1402.     # keep track of leading and trailing white-space
  1403.     $lead  = ($text =~ s/\A(\s+)//s ? $1 : "");
  1404.     $trail = ($text =~ s/(\s+)\Z//s ? $1 : "");
  1405.  
  1406.     # split at space/non-space boundaries
  1407.     @words = split( /(?<=\s)(?=\S)|(?<=\S)(?=\s)/, $text );
  1408.  
  1409.     # process each word individually
  1410.     foreach my $word (@words) {
  1411.     # skip space runs
  1412.      next if $word =~ /^\s*$/;
  1413.     # see if we can infer a link
  1414.     if( $notinIS && $word =~ /^(\w+)\((.*)\)$/ ) {
  1415.         # has parenthesis so should have been a C<> ref
  1416.             ## try for a pagename (perlXXX(1))?
  1417.             my( $func, $args ) = ( $1, $2 );
  1418.             if( $args =~ /^\d+$/ ){
  1419.                 my $url = page_sect( $word, '' );
  1420.                 if( defined $url ){
  1421.                     $word = "<a href=\"$url\">the $word manpage</a>";
  1422.                     next;
  1423.                 }
  1424.             }
  1425.             ## try function name for a link, append tt'ed argument list
  1426.             $word = emit_C( $func, '', "($args)");
  1427.  
  1428. #### disabled. either all (including $\W, $\w+{.*} etc.) or nothing.
  1429. ##      } elsif( $notinIS && $word =~ /^[\$\@%&*]+\w+$/) {
  1430. ##        # perl variables, should be a C<> ref
  1431. ##        $word = emit_C( $word );
  1432.  
  1433.     } elsif ($word =~ m,^\w+://\w,) {
  1434.         # looks like a URL
  1435.             # Don't relativize it: leave it as the author intended
  1436.         $word = qq(<a href="$word">$word</a>);
  1437.     } elsif ($word =~ /[\w.-]+\@[\w-]+\.\w/) {
  1438.         # looks like an e-mail address
  1439.         my ($w1, $w2, $w3) = ("", $word, "");
  1440.         ($w1, $w2, $w3) = ("(", $1, ")$2") if $word =~ /^\((.*?)\)(,?)/;
  1441.         ($w1, $w2, $w3) = ("<", $1, ">$2") if $word =~ /^<(.*?)>(,?)/;
  1442.         $word = qq($w1<a href="mailto:$w2">$w2</a>$w3);
  1443.     } else {
  1444.         $word = html_escape($word) if $word =~ /["&<>]/;
  1445.     }
  1446.     }
  1447.  
  1448.     # put everything back together
  1449.     return $lead . join( '', @words ) . $trail;
  1450. }
  1451.  
  1452.  
  1453. #
  1454. # process_text - handles plaintext that appears in the input pod file.
  1455. # there may be pod commands embedded within the text so those must be
  1456. # converted to html commands.
  1457. #
  1458.  
  1459. sub process_text1($$;$$);
  1460. sub pattern ($) { $_[0] ? '[^\S\n]+'.('>' x ($_[0] + 1)) : '>' }
  1461. sub closing ($) { local($_) = shift; (defined && s/\s+$//) ? length : 0 }
  1462.  
  1463. sub process_text {
  1464.     return if $ignore;
  1465.     my( $tref ) = @_;
  1466.     my $res = process_text1( 0, $tref );
  1467.     $$tref = $res;
  1468. }
  1469.  
  1470. sub process_text1($$;$$){
  1471.     my( $lev, $rstr, $func, $closing ) = @_;
  1472.     my $res = '';
  1473.  
  1474.     unless (defined $func) {
  1475.     $func = '';
  1476.     $lev++;
  1477.     }
  1478.  
  1479.     if( $func eq 'B' ){
  1480.     # B<text> - boldface
  1481.     $res = '<strong>' . process_text1( $lev, $rstr ) . '</strong>';
  1482.  
  1483.     } elsif( $func eq 'C' ){
  1484.     # C<code> - can be a ref or <code></code>
  1485.     # need to extract text
  1486.     my $par = go_ahead( $rstr, 'C', $closing );
  1487.  
  1488.     ## clean-up of the link target
  1489.         my $text = depod( $par );
  1490.  
  1491.     ### my $x = $par =~ /[BI]</ ? 'yes' : 'no' ;
  1492.         ### print STDERR "-->call emit_C($par) lev=$lev, par with BI=$x\n";
  1493.  
  1494.     $res = emit_C( $text, $lev > 1 || ($par =~ /[BI]</) );
  1495.  
  1496.     } elsif( $func eq 'E' ){
  1497.     # E<x> - convert to character
  1498.     $$rstr =~ s/^([^>]*)>//;
  1499.     my $escape = $1;
  1500.     $escape =~ s/^(\d+|X[\dA-F]+)$/#$1/i;
  1501.     $res = "&$escape;";
  1502.  
  1503.     } elsif( $func eq 'F' ){
  1504.     # F<filename> - italizice
  1505.     $res = '<em>' . process_text1( $lev, $rstr ) . '</em>';
  1506.  
  1507.     } elsif( $func eq 'I' ){
  1508.     # I<text> - italizice
  1509.     $res = '<em>' . process_text1( $lev, $rstr ) . '</em>';
  1510.  
  1511.     } elsif( $func eq 'L' ){
  1512.     # L<link> - link
  1513.     ## L<text|cross-ref> => produce text, use cross-ref for linking
  1514.     ## L<cross-ref> => make text from cross-ref
  1515.     ## need to extract text
  1516.     my $par = go_ahead( $rstr, 'L', $closing );
  1517.  
  1518.         # some L<>'s that shouldn't be:
  1519.     # a) full-blown URL's are emitted as-is
  1520.         if( $par =~ m{^\w+://}s ){
  1521.         return make_URL_href( $par );
  1522.     }
  1523.         # b) C<...> is stripped and treated as C<>
  1524.         if( $par =~ /^C<(.*)>$/ ){
  1525.         my $text = depod( $1 );
  1526.          return emit_C( $text, $lev > 1 || ($par =~ /[BI]</) );
  1527.     }
  1528.  
  1529.     # analyze the contents
  1530.     $par =~ s/\n/ /g;   # undo word-wrapped tags
  1531.         my $opar = $par;
  1532.     my $linktext;
  1533.     if( $par =~ s{^([^|]+)\|}{} ){
  1534.         $linktext = $1;
  1535.     }
  1536.  
  1537.     # make sure sections start with a /
  1538.     $par =~ s{^"}{/"};
  1539.  
  1540.     my( $page, $section, $ident );
  1541.  
  1542.     # check for link patterns
  1543.     if( $par =~ m{^([^/]+?)/(?!")(.*?)$} ){     # name/ident
  1544.             # we've got a name/ident (no quotes)
  1545.             ( $page, $ident ) = ( $1, $2 );
  1546.             ### print STDERR "--> L<$par> to page $page, ident $ident\n";
  1547.  
  1548.     } elsif( $par =~ m{^(.*?)/"?(.*?)"?$} ){ # [name]/"section"
  1549.             # even though this should be a "section", we go for ident first
  1550.         ( $page, $ident ) = ( $1, $2 );
  1551.             ### print STDERR "--> L<$par> to page $page, section $section\n";
  1552.  
  1553.     } elsif( $par =~ /\s/ ){  # this must be a section with missing quotes
  1554.         ( $page, $section ) = ( '', $par );
  1555.             ### print STDERR "--> L<$par> to void page, section $section\n";
  1556.  
  1557.         } else {
  1558.         ( $page, $section ) = ( $par, '' );
  1559.             ### print STDERR "--> L<$par> to page $par, void section\n";
  1560.     }
  1561.  
  1562.         # now, either $section or $ident is defined. the convoluted logic
  1563.         # below tries to resolve L<> according to what the user specified.
  1564.         # failing this, we try to find the next best thing...
  1565.         my( $url, $ltext, $fid );
  1566.  
  1567.         RESOLVE: {
  1568.             if( defined $ident ){
  1569.                 ## try to resolve $ident as an item
  1570.             ( $url, $fid ) = coderef( $page, $ident );
  1571.                 if( $url ){
  1572.                     if( ! defined( $linktext ) ){
  1573.                         $linktext = $ident;
  1574.                         $linktext .= " in " if $ident && $page;
  1575.                         $linktext .= "the $page manpage" if $page;
  1576.                     }
  1577.                     ###  print STDERR "got coderef url=$url\n";
  1578.                     last RESOLVE;
  1579.                 }
  1580.                 ## no luck: go for a section (auto-quoting!)
  1581.                 $section = $ident;
  1582.             }
  1583.             ## now go for a section
  1584.             my $htmlsection = htmlify( $section );
  1585.          $url = page_sect( $page, $htmlsection );
  1586.             if( $url ){
  1587.                 if( ! defined( $linktext ) ){
  1588.                     $linktext = $section;
  1589.                     $linktext .= " in " if $section && $page;
  1590.                     $linktext .= "the $page manpage" if $page;
  1591.                 }
  1592.                 ### print STDERR "got page/section url=$url\n";
  1593.                 last RESOLVE;
  1594.             }
  1595.             ## no luck: go for an ident
  1596.             if( $section ){
  1597.                 $ident = $section;
  1598.             } else {
  1599.                 $ident = $page;
  1600.                 $page  = undef();
  1601.             }
  1602.             ( $url, $fid ) = coderef( $page, $ident );
  1603.             if( $url ){
  1604.                 if( ! defined( $linktext ) ){
  1605.                     $linktext = $ident;
  1606.                     $linktext .= " in " if $ident && $page;
  1607.                     $linktext .= "the $page manpage" if $page;
  1608.                 }
  1609.                 ### print STDERR "got section=>coderef url=$url\n";
  1610.                 last RESOLVE;
  1611.             }
  1612.  
  1613.             # warning; show some text.
  1614.             $linktext = $opar unless defined $linktext;
  1615.             warn "$0: $podfile: cannot resolve L<$opar> in paragraph $paragraph.\n" unless $quiet;
  1616.         }
  1617.  
  1618.         # now we have a URL or just plain code
  1619.         $$rstr = $linktext . '>' . $$rstr;
  1620.         if( defined( $url ) ){
  1621.             $res = "<a href=\"$url\">" . process_text1( $lev, $rstr ) . '</a>';
  1622.         } else {
  1623.         $res = '<em>' . process_text1( $lev, $rstr ) . '</em>';
  1624.         }
  1625.  
  1626.     } elsif( $func eq 'S' ){
  1627.     # S<text> - non-breaking spaces
  1628.     $res = process_text1( $lev, $rstr );
  1629.     $res =~ s/ / /g;
  1630.  
  1631.     } elsif( $func eq 'X' ){
  1632.     # X<> - ignore
  1633.     $$rstr =~ s/^[^>]*>//;
  1634.  
  1635.     } elsif( $func eq 'Z' ){
  1636.     # Z<> - empty
  1637.     warn "$0: $podfile: invalid X<> in paragraph $paragraph.\n"
  1638.         unless $$rstr =~ s/^>// or $quiet;
  1639.  
  1640.     } else {
  1641.         my $term = pattern $closing;
  1642.     while( $$rstr =~ s/\A(.*?)(([BCEFILSXZ])<(<+[^\S\n]+)?|$term)//s ){
  1643.         # all others: either recurse into new function or
  1644.         # terminate at closing angle bracket(s)
  1645.         my $pt = $1;
  1646.             $pt .= $2 if !$3 &&  $lev == 1;
  1647.         $res .= $lev == 1 ? pure_text( $pt ) : inIS_text( $pt );
  1648.         return $res if !$3 && $lev > 1;
  1649.             if( $3 ){
  1650.         $res .= process_text1( $lev, $rstr, $3, closing $4 );
  1651.          }
  1652.     }
  1653.     if( $lev == 1 ){
  1654.         $res .= pure_text( $$rstr );
  1655.     } else {
  1656.         warn "$0: $podfile: undelimited $func<> in paragraph $paragraph.\n" unless $quiet;
  1657.     }
  1658.     }
  1659.     return $res;
  1660. }
  1661.  
  1662. #
  1663. # go_ahead: extract text of an IS (can be nested)
  1664. #
  1665. sub go_ahead($$$){
  1666.     my( $rstr, $func, $closing ) = @_;
  1667.     my $res = '';
  1668.     my @closing = ($closing);
  1669.     while( $$rstr =~
  1670.       s/\A(.*?)(([BCEFILSXZ])<(<+[^\S\n]+)?|@{[pattern $closing[0]]})//s ){
  1671.     $res .= $1;
  1672.     unless( $3 ){
  1673.         shift @closing;
  1674.         return $res unless @closing;
  1675.     } else {
  1676.         unshift @closing, closing $4;
  1677.     }
  1678.     $res .= $2;
  1679.     }
  1680.     warn "$0: $podfile: undelimited $func<> in paragraph $paragraph.\n" unless $quiet;
  1681.     return $res;
  1682. }
  1683.  
  1684. #
  1685. # emit_C - output result of C<text>
  1686. #    $text is the depod-ed text
  1687. #
  1688. sub emit_C($;$$){
  1689.     my( $text, $nocode, $args ) = @_;
  1690.     $args = '' unless defined $args;
  1691.     my $res;
  1692.     my( $url, $fid ) = coderef( undef(), $text );
  1693.  
  1694.     # need HTML-safe text
  1695.     my $linktext = html_escape( "$text$args" );
  1696.  
  1697.     if( defined( $url ) &&
  1698.         (!defined( $EmittedItem ) || $EmittedItem ne $fid ) ){
  1699.     $res = "<a href=\"$url\"><code>$linktext</code></a>";
  1700.     } elsif( 0 && $nocode ){
  1701.     $res = $linktext;
  1702.     } else {
  1703.     $res = "<code>$linktext</code>";
  1704.     }
  1705.     return $res;
  1706. }
  1707.  
  1708. #
  1709. # html_escape: make text safe for HTML
  1710. #
  1711. sub html_escape {
  1712.     my $rest = $_[0];
  1713.     $rest   =~ s/&/&/g;
  1714.     $rest   =~ s/</</g;
  1715.     $rest   =~ s/>/>/g;
  1716.     $rest   =~ s/"/"/g;
  1717.     # ' is only in XHTML, not HTML4.  Be conservative
  1718.     #$rest   =~ s/'/'/g;
  1719.     return $rest;
  1720. }
  1721.  
  1722.  
  1723. #
  1724. # dosify - convert filenames to 8.3
  1725. #
  1726. sub dosify {
  1727.     my($str) = @_;
  1728.     return lc($str) if $^O eq 'VMS';     # VMS just needs casing
  1729.     if ($Is83) {
  1730.         $str = lc $str;
  1731.         $str =~ s/(\.\w+)/substr ($1,0,4)/ge;
  1732.         $str =~ s/(\w+)/substr ($1,0,8)/ge;
  1733.     }
  1734.     return $str;
  1735. }
  1736.  
  1737. #
  1738. # page_sect - make a URL from the text of a L<>
  1739. #
  1740. sub page_sect($$) {
  1741.     my( $page, $section ) = @_;
  1742.     my( $linktext, $page83, $link);    # work strings
  1743.  
  1744.     # check if we know that this is a section in this page
  1745.     if (!defined $pages{$page} && defined $sections{$page}) {
  1746.     $section = $page;
  1747.     $page = "";
  1748.         ### print STDERR "reset page='', section=$section\n";
  1749.     }
  1750.  
  1751.     $page83=dosify($page);
  1752.     $page=$page83 if (defined $pages{$page83});
  1753.     if ($page eq "") {
  1754.         $link = "#" . anchorify( $section );
  1755.     } elsif ( $page =~ /::/ ) {
  1756.     $page =~ s,::,/,g;
  1757.     # Search page cache for an entry keyed under the html page name,
  1758.     # then look to see what directory that page might be in.  NOTE:
  1759.     # this will only find one page. A better solution might be to produce
  1760.     # an intermediate page that is an index to all such pages.
  1761.     my $page_name = $page ;
  1762.     $page_name =~ s,^.*/,,s ;
  1763.     if ( defined( $pages{ $page_name } ) &&
  1764.          $pages{ $page_name } =~ /([^:]*$page)\.(?:pod|pm):/
  1765.        ) {
  1766.         $page = $1 ;
  1767.     }
  1768.     else {
  1769.         # NOTE: This branch assumes that all A::B pages are located in
  1770.         # $htmlroot/A/B.html . This is often incorrect, since they are
  1771.         # often in $htmlroot/lib/A/B.html or such like. Perhaps we could
  1772.         # analyze the contents of %pages and figure out where any
  1773.         # cousins of A::B are, then assume that.  So, if A::B isn't found,
  1774.         # but A::C is found in lib/A/C.pm, then A::B is assumed to be in
  1775.         # lib/A/B.pm. This is also limited, but it's an improvement.
  1776.         # Maybe a hints file so that the links point to the correct places
  1777.         # nonetheless?
  1778.  
  1779.     }
  1780.     $link = "$htmlroot/$page.html";
  1781.     $link .= "#" . anchorify( $section ) if ($section);
  1782.     } elsif (!defined $pages{$page}) {
  1783.     $link = "";
  1784.     } else {
  1785.     $section = anchorify( $section ) if $section ne "";
  1786.         ### print STDERR "...section=$section\n";
  1787.  
  1788.     # if there is a directory by the name of the page, then assume that an
  1789.     # appropriate section will exist in the subdirectory
  1790. #    if ($section ne "" && $pages{$page} =~ /([^:]*[^(\.pod|\.pm)]):/) {
  1791.     if ($section ne "" && $pages{$page} =~ /([^:]*(?<!\.pod)(?<!\.pm)):/) {
  1792.         $link = "$htmlroot/$1/$section.html";
  1793.             ### print STDERR "...link=$link\n";
  1794.  
  1795.     # since there is no directory by the name of the page, the section will
  1796.     # have to exist within a .html of the same name.  thus, make sure there
  1797.     # is a .pod or .pm that might become that .html
  1798.     } else {
  1799.         $section = "#$section" if $section;
  1800.             ### print STDERR "...section=$section\n";
  1801.  
  1802.         # check if there is a .pod with the page name
  1803.         if ($pages{$page} =~ /([^:]*)\.pod:/) {
  1804.         $link = "$htmlroot/$1.html$section";
  1805.         } elsif ($pages{$page} =~ /([^:]*)\.pm:/) {
  1806.         $link = "$htmlroot/$1.html$section";
  1807.         } else {
  1808.         $link = "";
  1809.         }
  1810.     }
  1811.     }
  1812.  
  1813.     if ($link) {
  1814.     # Here, we take advantage of the knowledge that $htmlfileurl ne ''
  1815.     # implies $htmlroot eq ''. This means that the link in question
  1816.     # needs a prefix of $htmldir if it begins with '/'. The test for
  1817.     # the initial '/' is done to avoid '#'-only links, and to allow
  1818.     # for other kinds of links, like file:, ftp:, etc.
  1819.         my $url ;
  1820.         if (  $htmlfileurl ne '' ) {
  1821.             $link = "$htmldir$link" if $link =~ m{^/}s;
  1822.             $url = relativize_url( $link, $htmlfileurl );
  1823. # print( "  b: [$link,$htmlfileurl,$url]\n" );
  1824.     }
  1825.     else {
  1826.             $url = $link ;
  1827.     }
  1828.     return $url;
  1829.  
  1830.     } else {
  1831.     return undef();
  1832.     }
  1833. }
  1834.  
  1835. #
  1836. # relativize_url - convert an absolute URL to one relative to a base URL.
  1837. # Assumes both end in a filename.
  1838. #
  1839. sub relativize_url {
  1840.     my ($dest,$source) = @_ ;
  1841.  
  1842.     my ($dest_volume,$dest_directory,$dest_file) =
  1843.         File::Spec::Unix->splitpath( $dest ) ;
  1844.     $dest = File::Spec::Unix->catpath( $dest_volume, $dest_directory, '' ) ;
  1845.  
  1846.     my ($source_volume,$source_directory,$source_file) =
  1847.         File::Spec::Unix->splitpath( $source ) ;
  1848.     $source = File::Spec::Unix->catpath( $source_volume, $source_directory, '' ) ;
  1849.  
  1850.     my $rel_path = '' ;
  1851.     if ( $dest ne '' ) {
  1852.        $rel_path = File::Spec::Unix->abs2rel( $dest, $source ) ;
  1853.     }
  1854.  
  1855.     if ( $rel_path ne ''                &&
  1856.          substr( $rel_path, -1 ) ne '/' &&
  1857.          substr( $dest_file, 0, 1 ) ne '#'
  1858.         ) {
  1859.         $rel_path .= "/$dest_file" ;
  1860.     }
  1861.     else {
  1862.         $rel_path .= "$dest_file" ;
  1863.     }
  1864.  
  1865.     return $rel_path ;
  1866. }
  1867.  
  1868.  
  1869. #
  1870. # coderef - make URL from the text of a C<>
  1871. #
  1872. sub coderef($$){
  1873.     my( $page, $item ) = @_;
  1874.     my( $url );
  1875.  
  1876.     my $fid = fragment_id( $item );
  1877.     if( defined( $page ) ){
  1878.     # we have been given a $page...
  1879.     $page =~ s{::}{/}g;
  1880.  
  1881.     # Do we take it? Item could be a section!
  1882.     my $base = $items{$fid} || "";
  1883.     $base =~ s{[^/]*/}{};
  1884.     if( $base ne "$page.html" ){
  1885.             ###   print STDERR "coderef( $page, $item ): items{$fid} = $items{$fid} = $base => discard page!\n";
  1886.         $page = undef();
  1887.     }
  1888.  
  1889.     } else {
  1890.         # no page - local items precede cached items
  1891.     if( defined( $fid ) ){
  1892.         if(  exists $local_items{$fid} ){
  1893.         $page = $local_items{$fid};
  1894.         } else {
  1895.         $page = $items{$fid};
  1896.         }
  1897.     }
  1898.     }
  1899.  
  1900.     # if there was a pod file that we found earlier with an appropriate
  1901.     # =item directive, then create a link to that page.
  1902.     if( defined $page ){
  1903.     if( $page ){
  1904.             if( exists $pages{$page} and $pages{$page} =~ /([^:.]*)\.[^:]*:/){
  1905.         $page = $1 . '.html';
  1906.         }
  1907.         my $link = "$htmlroot/$page#item_" . anchorify($fid);
  1908.  
  1909.         # Here, we take advantage of the knowledge that $htmlfileurl
  1910.         # ne '' implies $htmlroot eq ''.
  1911.         if (  $htmlfileurl ne '' ) {
  1912.         $link = "$htmldir$link" ;
  1913.         $url = relativize_url( $link, $htmlfileurl ) ;
  1914.         } else {
  1915.         $url = $link ;
  1916.         }
  1917.     } else {
  1918.         $url = "#item_" . anchorify($fid);
  1919.     }
  1920.  
  1921.     confess "url has space: $url" if $url =~ /"[^"]*\s[^"]*"/;
  1922.     }
  1923.     return( $url, $fid );
  1924. }
  1925.  
  1926.  
  1927.  
  1928. #
  1929. # Adapted from Nick Ing-Simmons' PodToHtml package.
  1930. sub relative_url {
  1931.     my $source_file = shift ;
  1932.     my $destination_file = shift;
  1933.  
  1934.     my $source = URI::file->new_abs($source_file);
  1935.     my $uo = URI::file->new($destination_file,$source)->abs;
  1936.     return $uo->rel->as_string;
  1937. }
  1938.  
  1939.  
  1940. #
  1941. # finish_list - finish off any pending HTML lists.  this should be called
  1942. # after the entire pod file has been read and converted.
  1943. #
  1944. sub finish_list {
  1945.     while ($listlevel > 0) {
  1946.     print HTML "</dl>\n";
  1947.     $listlevel--;
  1948.     }
  1949. }
  1950.  
  1951. #
  1952. # htmlify - converts a pod section specification to a suitable section
  1953. # specification for HTML. Note that we keep spaces and special characters
  1954. # except ", ? (Netscape problem) and the hyphen (writer's problem...).
  1955. #
  1956. sub htmlify {
  1957.     my( $heading) = @_;
  1958.     $heading =~ s/(\s+)/ /g;
  1959.     $heading =~ s/\s+\Z//;
  1960.     $heading =~ s/\A\s+//;
  1961.     # The hyphen is a disgrace to the English language.
  1962.     $heading =~ s/[-"?]//g;
  1963.     $heading = lc( $heading );
  1964.     return $heading;
  1965. }
  1966.  
  1967. #
  1968. # similar to htmlify, but turns spaces into underscores
  1969. #
  1970. sub anchorify {
  1971.     my ($anchor) = @_;
  1972.     $anchor = htmlify($anchor);
  1973.     $anchor =~ s/\s/_/g; # fixup spaces left by htmlify
  1974.     return $anchor;
  1975. }
  1976.  
  1977. #
  1978. # depod - convert text by eliminating all interior sequences
  1979. # Note: can be called with copy or modify semantics
  1980. #
  1981. my %E2c;
  1982. $E2c{lt}     = '<';
  1983. $E2c{gt}     = '>';
  1984. $E2c{sol}    = '/';
  1985. $E2c{verbar} = '|';
  1986. $E2c{amp}    = '&'; # in Tk's pods
  1987.  
  1988. sub depod1($;$$);
  1989.  
  1990. sub depod($){
  1991.     my $string;
  1992.     if( ref( $_[0] ) ){
  1993.     $string =  ${$_[0]};
  1994.         ${$_[0]} = depod1( \$string );
  1995.     } else {
  1996.     $string =  $_[0];
  1997.         depod1( \$string );
  1998.     }
  1999. }
  2000.  
  2001. sub depod1($;$$){
  2002.   my( $rstr, $func, $closing ) = @_;
  2003.   my $res = '';
  2004.   return $res unless defined $$rstr;
  2005.   if( ! defined( $func ) ){
  2006.       # skip to next begin of an interior sequence
  2007.       while( $$rstr =~ s/\A(.*?)([BCEFILSXZ])<(<+[^\S\n]+)?// ){
  2008.          # recurse into its text
  2009.       $res .= $1 . depod1( $rstr, $2, closing $3);
  2010.       }
  2011.       $res .= $$rstr;
  2012.   } elsif( $func eq 'E' ){
  2013.       # E<x> - convert to character
  2014.       $$rstr =~ s/^([^>]*)>//;
  2015.       $res .= $E2c{$1} || "";
  2016.   } elsif( $func eq 'X' ){
  2017.       # X<> - ignore
  2018.       $$rstr =~ s/^[^>]*>//;
  2019.   } elsif( $func eq 'Z' ){
  2020.       # Z<> - empty
  2021.       $$rstr =~ s/^>//;
  2022.   } else {
  2023.       # all others: either recurse into new function or
  2024.       # terminate at closing angle bracket
  2025.       my $term = pattern $closing;
  2026.       while( $$rstr =~ s/\A(.*?)(([BCEFILSXZ])<(<+[^\S\n]+)?|$term)// ){
  2027.       $res .= $1;
  2028.       last unless $3;
  2029.           $res .= depod1( $rstr, $3, closing $4 );
  2030.       }
  2031.       ## If we're here and $2 ne '>': undelimited interior sequence.
  2032.       ## Ignored, as this is called without proper indication of where we are.
  2033.       ## Rely on process_text to produce diagnostics.
  2034.   }
  2035.   return $res;
  2036. }
  2037.  
  2038. #
  2039. # fragment_id - construct a fragment identifier from:
  2040. #   a) =item text
  2041. #   b) contents of C<...>
  2042. #
  2043. my @hc;
  2044. sub fragment_id {
  2045.     my $text = shift();
  2046.     $text =~ s/\s+\Z//s;
  2047.     if( $text ){
  2048.     # a method or function?
  2049.     return $1 if $text =~ /(\w+)\s*\(/;
  2050.     return $1 if $text =~ /->\s*(\w+)\s*\(?/;
  2051.  
  2052.     # a variable name?
  2053.     return $1 if $text =~ /^([$@%*]\S+)/;
  2054.  
  2055.     # some pattern matching operator?
  2056.     return $1 if $text =~ m|^(\w+/).*/\w*$|;
  2057.  
  2058.     # fancy stuff... like "do { }"
  2059.     return $1 if $text =~ m|^(\w+)\s*{.*}$|;
  2060.  
  2061.     # honour the perlfunc manpage: func [PAR[,[ ]PAR]...]
  2062.     # and some funnies with ... Module ...
  2063.     return $1 if $text =~ m{^([a-z\d]+)(\s+[A-Z\d,/& ]+)?$};
  2064.     return $1 if $text =~ m{^([a-z\d]+)\s+Module(\s+[A-Z\d,/& ]+)?$};
  2065.  
  2066.     # text? normalize!
  2067.     $text =~ s/\s+/_/sg;
  2068.     $text =~ s{(\W)}{
  2069.          defined( $hc[ord($1)] ) ? $hc[ord($1)]
  2070.                  : ( $hc[ord($1)] = sprintf( "%%%02X", ord($1) ) ) }gxe;
  2071.         $text = substr( $text, 0, 50 );
  2072.     } else {
  2073.     return undef();
  2074.     }
  2075. }
  2076.  
  2077. #
  2078. # make_URL_href - generate HTML href from URL
  2079. # Special treatment for CGI queries.
  2080. #
  2081. sub make_URL_href($){
  2082.     my( $url ) = @_;
  2083.     if( $url !~
  2084.         s{^(http:[-\w/#~:.+=&%@!]+)(\?.*)$}{<a href="$1$2">$1</a>}i ){
  2085.         $url = "<a href=\"$url\">$url</a>";
  2086.     }
  2087.     return $url;
  2088. }
  2089.  
  2090. 1;
  2091.