home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / Pod / Html.pm < prev    next >
Text File  |  1997-05-18  |  40KB  |  1,485 lines

  1. package Pod::Html;
  2.  
  3. use Pod::Functions;
  4. use Getopt::Long;    # package for handling command-line parameters
  5. require Exporter;
  6. @ISA = Exporter;
  7. @EXPORT = qw(pod2html htmlify);
  8. use Cwd;
  9.  
  10. use Carp;
  11.  
  12. use strict;
  13.  
  14. =head1 NAME
  15.  
  16. Pod::HTML - module to convert pod files to HTML
  17.  
  18. =head1 SYNOPSIS
  19.  
  20.     use Pod::HTML;
  21.     pod2html([options]);
  22.  
  23. =head1 DESCRIPTION
  24.  
  25. Converts files from pod format (see L<perlpod>) to HTML format.  It
  26. can automatically generate indexes and cross-references, and it keeps
  27. a cache of things it knows how to cross-reference.
  28.  
  29. =head1 ARGUMENTS
  30.  
  31. Pod::Html takes the following arguments:
  32.  
  33. =over 4
  34.  
  35. =item help
  36.  
  37.     --help
  38.  
  39. Displays the usage message.
  40.  
  41. =item htmlroot
  42.  
  43.     --htmlroot=name
  44.  
  45. Sets the base URL for the HTML files.  When cross-references are made,
  46. the HTML root is prepended to the URL.
  47.  
  48. =item infile
  49.  
  50.     --infile=name
  51.  
  52. Specify the pod file to convert.  Input is taken from STDIN if no
  53. infile is specified.
  54.  
  55. =item outfile
  56.  
  57.     --outfile=name
  58.  
  59. Specify the HTML file to create.  Output goes to STDOUT if no outfile
  60. is specified.
  61.  
  62. =item podroot
  63.  
  64.     --podroot=name
  65.  
  66. Specify the base directory for finding library pods.
  67.  
  68. =item podpath
  69.  
  70.     --podpath=name:...:name
  71.  
  72. Specify which subdirectories of the podroot contain pod files whose
  73. HTML converted forms can be linked-to in cross-references.
  74.  
  75. =item libpods
  76.  
  77.     --libpods=name:...:name
  78.  
  79. List of page names (eg, "perlfunc") which contain linkable C<=item>s.
  80.  
  81. =item netscape
  82.  
  83.     --netscape
  84.  
  85. Use Netscape HTML directives when applicable.
  86.  
  87. =item nonetscape
  88.  
  89.     --nonetscape
  90.  
  91. Do not use Netscape HTML directives (default).
  92.  
  93. =item index
  94.  
  95.     --index
  96.  
  97. Generate an index at the top of the HTML file (default behaviour).
  98.  
  99. =item noindex
  100.  
  101.     --noindex
  102.  
  103. Do not generate an index at the top of the HTML file.
  104.  
  105.  
  106. =item recurse
  107.  
  108.     --recurse
  109.  
  110. Recurse into subdirectories specified in podpath (default behaviour).
  111.  
  112. =item norecurse
  113.  
  114.     --norecurse
  115.  
  116. Do not recurse into subdirectories specified in podpath.
  117.  
  118. =item title
  119.  
  120.     --title=title
  121.  
  122. Specify the title of the resulting HTML file.
  123.  
  124. =item verbose
  125.  
  126.     --verbose
  127.  
  128. Display progress messages.
  129.  
  130. =back
  131.  
  132. =head1 EXAMPLE
  133.  
  134.     pod2html("pod2html",
  135.          "--podpath=lib:ext:pod:vms", 
  136.          "--podroot=/usr/src/perl",
  137.          "--htmlroot=/perl/nmanual",
  138.          "--libpods=perlfunc:perlguts:perlvar:perlrun:perlop",
  139.          "--recurse",
  140.          "--infile=foo.pod",
  141.          "--outfile=/perl/nmanual/foo.html");
  142.  
  143. =head1 AUTHOR
  144.  
  145. Tom Christiansen, E<lt>tchrist@perl.comE<gt>.
  146.  
  147. =head1 BUGS
  148.  
  149. Has trouble with C<> etc in = commands.
  150.  
  151. =head1 SEE ALSO
  152.  
  153. L<perlpod>
  154.  
  155. =head1 COPYRIGHT
  156.  
  157. This program is distributed under the Artistic License.
  158.  
  159. =cut
  160.  
  161. my $dircache = "pod2html-dircache";
  162. my $itemcache = "pod2html-itemcache";
  163.  
  164. my @begin_stack = ();        # begin/end stack
  165.  
  166. my @libpods = ();            # files to search for links from C<> directives
  167. my $htmlroot = "/";            # http-server base directory from which all
  168.                 #   relative paths in $podpath stem.
  169. my $htmlfile = "";        # write to stdout by default
  170. my $podfile = "";        # read from stdin by default
  171. my @podpath = ();        # list of directories containing library pods.
  172. my $podroot = ".";        # filesystem base directory from which all
  173.                 #   relative paths in $podpath stem.
  174. my $recurse = 1;        # recurse on subdirectories in $podpath.
  175. my $verbose = 0;        # not verbose by default
  176. my $doindex = 1;               # non-zero if we should generate an index
  177. my $listlevel = 0;        # current list depth
  178. my @listitem = ();        # stack of HTML commands to use when a =item is
  179.                 #   encountered.  the top of the stack is the
  180.                 #   current list.
  181. my @listdata = ();        # similar to @listitem, but for the text after
  182.                 #   an =item
  183. my @listend = ();        # similar to @listitem, but the text to use to
  184.                 #   end the list.
  185. my $ignore = 1;            # whether or not to format text.  we don't
  186.                 #   format text until we hit our first pod
  187.                 #   directive.
  188.  
  189. my %items_named = ();        # for the multiples of the same item in perlfunc
  190. my @items_seen = ();
  191. my $netscape = 0;        # whether or not to use netscape directives.
  192. my $title;            # title to give the pod(s)
  193. my $top = 1;            # true if we are at the top of the doc.  used
  194.                 #   to prevent the first <HR> directive.
  195. my $paragraph;            # which paragraph we're processing (used
  196.                 #   for error messages)
  197. my %pages = ();            # associative array used to find the location
  198.                 #   of pages referenced by L<> links.
  199. my %sections = ();        # sections within this page
  200. my %items = ();            # associative array used to find the location
  201.                 #   of =item directives referenced by C<> links
  202. sub init_globals {
  203. $dircache = "pod2html-dircache";
  204. $itemcache = "pod2html-itemcache";
  205.  
  206. @begin_stack = ();        # begin/end stack
  207.  
  208. @libpods = ();            # files to search for links from C<> directives
  209. $htmlroot = "/";            # http-server base directory from which all
  210.                 #   relative paths in $podpath stem.
  211. $htmlfile = "";        # write to stdout by default
  212. $podfile = "";        # read from stdin by default
  213. @podpath = ();        # list of directories containing library pods.
  214. $podroot = ".";        # filesystem base directory from which all
  215.                 #   relative paths in $podpath stem.
  216. $recurse = 1;        # recurse on subdirectories in $podpath.
  217. $verbose = 0;        # not verbose by default
  218. $doindex = 1;               # non-zero if we should generate an index
  219. $listlevel = 0;        # current list depth
  220. @listitem = ();        # stack of HTML commands to use when a =item is
  221.                 #   encountered.  the top of the stack is the
  222.                 #   current list.
  223. @listdata = ();        # similar to @listitem, but for the text after
  224.                 #   an =item
  225. @listend = ();        # similar to @listitem, but the text to use to
  226.                 #   end the list.
  227. $ignore = 1;            # whether or not to format text.  we don't
  228.                 #   format text until we hit our first pod
  229.                 #   directive.
  230.  
  231. @items_seen = ();
  232. %items_named = ();
  233. $netscape = 0;        # whether or not to use netscape directives.
  234. $title = '';            # title to give the pod(s)
  235. $top = 1;            # true if we are at the top of the doc.  used
  236.                 #   to prevent the first <HR> directive.
  237. $paragraph = '';            # which paragraph we're processing (used
  238.                 #   for error messages)
  239. %pages = ();            # associative array used to find the location
  240.                 #   of pages referenced by L<> links.
  241. %sections = ();        # sections within this page
  242. %items = ();            # associative array used to find the location
  243.                 #   of =item directives referenced by C<> links
  244.  
  245. }
  246.  
  247. sub pod2html {
  248.     local(@ARGV) = @_;
  249.     local($/);
  250.     local $_;
  251.  
  252.     init_globals();
  253.  
  254.     # cache of %pages and %items from last time we ran pod2html
  255.     my $podpath = '';        
  256.  
  257.     #undef $opt_help if defined $opt_help;
  258.  
  259.     # parse the command-line parameters
  260.     parse_command_line();
  261.  
  262.     # set some variables to their default values if necessary
  263.     local *POD;
  264.     unless (@ARGV && $ARGV[0]) { 
  265.     $podfile  = "-" unless $podfile;    # stdin
  266.     open(POD, "<$podfile")
  267.         || die "$0: cannot open $podfile file for input: $!\n";
  268.     } else {
  269.     $podfile = $ARGV[0];  # XXX: might be more filenames
  270.     *POD = *ARGV;
  271.     } 
  272.     $htmlfile = "-" unless $htmlfile;    # stdout
  273.     $htmlroot = "" if $htmlroot eq "/";    # so we don't get a //
  274.  
  275.     # read the pod a paragraph at a time
  276.     warn "Scanning for sections in input file(s)\n" if $verbose;
  277.     $/ = "";
  278.     my @poddata  = <POD>;
  279.     close(POD);
  280.  
  281.     # scan the pod for =head[1-6] directives and build an index
  282.     my $index = scan_headings(\%sections, @poddata);
  283.  
  284.     # open the output file
  285.     open(HTML, ">$htmlfile")
  286.         || die "$0: cannot open $htmlfile file for output: $!\n";
  287.  
  288.     # put a title in the HTML file
  289.     $title = '';
  290.     TITLE_SEARCH: {
  291.     for (my $i = 0; $i < @poddata; $i++) { 
  292.         if ($poddata[$i] =~ /^=head1\s*NAME\b/m) {
  293.         for my $para ( @poddata[$i, $i+1] ) { 
  294.             last TITLE_SEARCH if ($title) = $para =~ /(\S+\s+-+\s*.*)/s;
  295.         }
  296.         } 
  297.  
  298.     } 
  299.     } 
  300.     unless ($title) { 
  301.     $podfile =~ /^(.*)(\.[^.\/]+)?$/;
  302.     $title = ($podfile eq "-" ? 'No Title' : $1);
  303.         warn "found $title" if $verbose;
  304.     }
  305.     if ($title =~ /\.pm/) {
  306.     warn "$0: no title for $podfile";
  307.     $title = $podfile;
  308.     }
  309.     print HTML <<END_OF_HEAD;
  310.     <HTML> 
  311.     <HEAD> 
  312.         <TITLE>$title</TITLE> 
  313.     </HEAD>
  314.  
  315.     <BODY>
  316.  
  317. END_OF_HEAD
  318.  
  319.     # load a cache of %pages and %items if possible.  $tests will be
  320.     #  non-zero if successful.
  321.     my $tests = 0;
  322.     if (-f $dircache && -f $itemcache) {
  323.     warn "scanning for item cache\n" if $verbose;
  324.     $tests = find_cache($dircache, $itemcache, $podpath, $podroot);
  325.     }
  326.  
  327.     # if we didn't succeed in loading the cache then we must (re)build
  328.     #  %pages and %items.
  329.     if (!$tests) {
  330.     warn "scanning directories in pod-path\n" if $verbose;
  331.     scan_podpath($podroot, $recurse);
  332.     }
  333.  
  334.     # scan the pod for =item directives
  335.     scan_items("", \%items, @poddata);
  336.  
  337.     # put an index at the top of the file.  note, if $doindex is 0 we
  338.     # still generate an index, but surround it with an html comment.
  339.     # that way some other program can extract it if desired.
  340.     $index =~ s/--+/-/g;
  341.     print HTML "<!-- INDEX BEGIN -->\n";
  342.     print HTML "<!--\n" unless $doindex;
  343.     print HTML $index;
  344.     print HTML "-->\n" unless $doindex;
  345.     print HTML "<!-- INDEX END -->\n\n";
  346.     print HTML "<HR>\n" if $doindex;
  347.  
  348.     # now convert this file
  349.     warn "Converting input file\n" if $verbose;
  350.     foreach my $i (0..$#poddata) {
  351.     $_ = $poddata[$i];
  352.     $paragraph = $i+1;
  353.     if (/^(=.*)/s) {    # is it a pod directive?
  354.         $ignore = 0;
  355.         $_ = $1;
  356.         if (/^=begin\s+(\S+)\s*(.*)/si) {# =begin
  357.         process_begin($1, $2);
  358.         } elsif (/^=end\s+(\S+)\s*(.*)/si) {# =end
  359.         process_end($1, $2);
  360.         } elsif (/^=cut/) {            # =cut
  361.         process_cut();
  362.         } elsif (/^=pod/) {            # =pod
  363.         process_pod();
  364.         } else {
  365.         next if @begin_stack && $begin_stack[-1] ne 'html';
  366.  
  367.         if (/^=(head[1-6])\s+(.*)/s) {    # =head[1-6] heading
  368.             process_head($1, $2);
  369.         } elsif (/^=item\s*(.*)/sm) {    # =item text
  370.             process_item($1);
  371.         } elsif (/^=over\s*(.*)/) {        # =over N
  372.             process_over();
  373.         } elsif (/^=back/) {        # =back
  374.             process_back();
  375.         } elsif (/^=for\s+(\S+)\s+(.*)/si) {# =for
  376.             process_for($1,$2);
  377.         } else {
  378.             /^=(\S*)\s*/;
  379.             warn "$0: $podfile: unknown pod directive '$1' in "
  380.                . "paragraph $paragraph.  ignoring.\n";
  381.         }
  382.         }
  383.         $top = 0;
  384.     }
  385.     else {
  386.         next if $ignore;
  387.         next if @begin_stack && $begin_stack[-1] ne 'html';
  388.         my $text = $_;
  389.         process_text(\$text, 1);
  390.         print HTML "$text\n<P>\n\n";
  391.     }
  392.     }
  393.  
  394.     # finish off any pending directives
  395.     finish_list();
  396.     print HTML <<END_OF_TAIL;
  397.     </BODY>
  398.  
  399.     </HTML>
  400. END_OF_TAIL
  401.  
  402.     # close the html file
  403.     close(HTML);
  404.  
  405.     warn "Finished\n" if $verbose;
  406. }
  407.  
  408. ##############################################################################
  409.  
  410. my $usage;            # see below
  411. sub usage {
  412.     my $podfile = shift;
  413.     warn "$0: $podfile: @_\n" if @_;
  414.     die $usage;
  415. }
  416.  
  417. $usage =<<END_OF_USAGE;
  418. Usage:  $0 --help --htmlroot=<name> --infile=<name> --outfile=<name>
  419.            --podpath=<name>:...:<name> --podroot=<name>
  420.            --libpods=<name>:...:<name> --recurse --verbose --index
  421.            --netscape --norecurse --noindex
  422.  
  423.   --flush      - flushes the item and directory caches.
  424.   --help       - prints this message.
  425.   --htmlroot   - http-server base directory from which all relative paths
  426.                  in podpath stem (default is /).
  427.   --index      - generate an index at the top of the resulting html
  428.                  (default).
  429.   --infile     - filename for the pod to convert (input taken from stdin
  430.                  by default).
  431.   --libpods    - colon-separated list of pages to search for =item pod
  432.                  directives in as targets of C<> and implicit links (empty
  433.                  by default).  note, these are not filenames, but rather
  434.                  page names like those that appear in L<> links.
  435.   --netscape   - will use netscape html directives when applicable.
  436.   --nonetscape - will not use netscape directives (default).
  437.   --outfile    - filename for the resulting html file (output sent to
  438.                  stdout by default).
  439.   --podpath    - colon-separated list of directories containing library
  440.                  pods.  empty by default.
  441.   --podroot    - filesystem base directory from which all relative paths
  442.                  in podpath stem (default is .).
  443.   --noindex    - don't generate an index at the top of the resulting html.
  444.   --norecurse  - don't recurse on those subdirectories listed in podpath.
  445.   --recurse    - recurse on those subdirectories listed in podpath
  446.                  (default behavior).
  447.   --title      - title that will appear in resulting html file.
  448.   --verbose    - self-explanatory
  449.  
  450. END_OF_USAGE
  451.  
  452. sub parse_command_line {
  453.     my ($opt_flush,$opt_help,$opt_htmlroot,$opt_index,$opt_infile,$opt_libpods,$opt_netscape,$opt_outfile,$opt_podpath,$opt_podroot,$opt_norecurse,$opt_recurse,$opt_title,$opt_verbose);
  454.     my $result = GetOptions(
  455.                 'flush'      => \$opt_flush,
  456.                 'help'       => \$opt_help,
  457.                 'htmlroot=s' => \$opt_htmlroot,
  458.                 'index!'     => \$opt_index,
  459.                 'infile=s'   => \$opt_infile,
  460.                 'libpods=s'  => \$opt_libpods,
  461.                 'netscape!'  => \$opt_netscape,
  462.                 'outfile=s'  => \$opt_outfile,
  463.                 'podpath=s'  => \$opt_podpath,
  464.                 'podroot=s'  => \$opt_podroot,
  465.                 'norecurse'  => \$opt_norecurse,
  466.                 'recurse!'   => \$opt_recurse,
  467.                 'title=s'    => \$opt_title,
  468.                 'verbose'    => \$opt_verbose,
  469.                );
  470.     usage("-", "invalid parameters") if not $result;
  471.  
  472.     usage("-") if defined $opt_help;    # see if the user asked for help
  473.     $opt_help = "";            # just to make -w shut-up.
  474.  
  475.     $podfile  = $opt_infile if defined $opt_infile;
  476.     $htmlfile = $opt_outfile if defined $opt_outfile;
  477.  
  478.     @podpath  = split(":", $opt_podpath) if defined $opt_podpath;
  479.     @libpods  = split(":", $opt_libpods) if defined $opt_libpods;
  480.  
  481.     warn "Flushing item and directory caches\n"
  482.     if $opt_verbose && defined $opt_flush;
  483.     unlink($dircache, $itemcache) if defined $opt_flush;
  484.  
  485.     $htmlroot = $opt_htmlroot if defined $opt_htmlroot;
  486.     $podroot  = $opt_podroot if defined $opt_podroot;
  487.  
  488.     $doindex  = $opt_index if defined $opt_index;
  489.     $recurse  = $opt_recurse if defined $opt_recurse;
  490.     $title    = $opt_title if defined $opt_title;
  491.     $verbose  = defined $opt_verbose ? 1 : 0;
  492.     $netscape = $opt_netscape if defined $opt_netscape;
  493. }
  494.  
  495. #
  496. # find_cache - tries to find if the caches stored in $dircache and $itemcache
  497. #  are valid caches of %pages and %items.  if they are valid then it loads
  498. #  them and returns a non-zero value.
  499. #
  500. sub find_cache {
  501.     my($dircache, $itemcache, $podpath, $podroot) = @_;
  502.     my($tests);
  503.     local $_;
  504.  
  505.     $tests = 0;
  506.  
  507.     open(CACHE, "<$itemcache") ||
  508.     die "$0: error opening $itemcache for reading: $!\n";
  509.     $/ = "\n";
  510.  
  511.     # is it the same podpath?
  512.     $_ = <CACHE>;
  513.     chomp($_);
  514.     $tests++ if (join(":", @podpath) eq $_);
  515.  
  516.     # is it the same podroot?
  517.     $_ = <CACHE>;
  518.     chomp($_);
  519.     $tests++ if ($podroot eq $_);
  520.  
  521.     # load the cache if its good
  522.     if ($tests != 2) {
  523.     close(CACHE);
  524.  
  525.     %items = ();
  526.     return 0;
  527.     }
  528.  
  529.     warn "loading item cache\n" if $verbose;
  530.     while (<CACHE>) {
  531.     /(.*?) (.*)$/;
  532.     $items{$1} = $2;
  533.     }
  534.     close(CACHE);
  535.  
  536.     warn "scanning for directory cache\n" if $verbose;
  537.     open(CACHE, "<$dircache") ||
  538.     die "$0: error opening $dircache for reading: $!\n";
  539.     $/ = "\n";
  540.     $tests = 0;
  541.  
  542.     # is it the same podpath?
  543.     $_ = <CACHE>;
  544.     chomp($_);
  545.     $tests++ if (join(":", @podpath) eq $_);
  546.  
  547.     # is it the same podroot?
  548.     $_ = <CACHE>;
  549.     chomp($_);
  550.     $tests++ if ($podroot eq $_);
  551.  
  552.     # load the cache if its good
  553.     if ($tests != 2) {
  554.     close(CACHE);
  555.  
  556.     %pages = ();
  557.     %items = ();
  558.     return 0;
  559.     }
  560.  
  561.     warn "loading directory cache\n" if $verbose;
  562.     while (<CACHE>) {
  563.     /(.*?) (.*)$/;
  564.     $pages{$1} = $2;
  565.     }
  566.  
  567.     close(CACHE);
  568.  
  569.     return 1;
  570. }
  571.  
  572. #
  573. # scan_podpath - scans the directories specified in @podpath for directories,
  574. #  .pod files, and .pm files.  it also scans the pod files specified in
  575. #  @libpods for =item directives.
  576. #
  577. sub scan_podpath {
  578.     my($podroot, $recurse) = @_;
  579.     my($pwd, $dir);
  580.     my($libpod, $dirname, $pod, @files, @poddata);
  581.  
  582.     # scan each directory listed in @podpath
  583.     $pwd = getcwd();
  584.     chdir($podroot)
  585.     || die "$0: error changing to directory $podroot: $!\n";
  586.     foreach $dir (@podpath) {
  587.     scan_dir($dir, $recurse);
  588.     }
  589.  
  590.     # scan the pods listed in @libpods for =item directives
  591.     foreach $libpod (@libpods) {
  592.     # if the page isn't defined then we won't know where to find it
  593.     # on the system.
  594.     next unless defined $pages{$libpod} && $pages{$libpod};
  595.  
  596.     # if there is a directory then use the .pod and .pm files within it.
  597.     if ($pages{$libpod} =~ /([^:]*[^(\.pod|\.pm)]):/) {
  598.         #  find all the .pod and .pm files within the directory
  599.         $dirname = $1;
  600.         opendir(DIR, $dirname) ||
  601.         die "$0: error opening directory $dirname: $!\n";
  602.         @files = grep(/(\.pod|\.pm)$/ && ! -d $_, readdir(DIR));
  603.         closedir(DIR);
  604.  
  605.         # scan each .pod and .pm file for =item directives
  606.         foreach $pod (@files) {
  607.         open(POD, "<$dirname/$pod") ||
  608.             die "$0: error opening $dirname/$pod for input: $!\n";
  609.         @poddata = <POD>;
  610.         close(POD);
  611.  
  612.         scan_items("$dirname/$pod", @poddata);
  613.         }
  614.  
  615.         # use the names of files as =item directives too.
  616.         foreach $pod (@files) {
  617.         $pod =~ /^(.*)(\.pod|\.pm)$/;
  618.         $items{$1} = "$dirname/$1.html" if $1;
  619.         }
  620.     } elsif ($pages{$libpod} =~ /([^:]*\.pod):/ ||
  621.          $pages{$libpod} =~ /([^:]*\.pm):/) {
  622.         # scan the .pod or .pm file for =item directives
  623.         $pod = $1;
  624.         open(POD, "<$pod") ||
  625.         die "$0: error opening $pod for input: $!\n";
  626.         @poddata = <POD>;
  627.         close(POD);
  628.  
  629.         scan_items("$pod", @poddata);
  630.     } else {
  631.         warn "$0: shouldn't be here (line ".__LINE__."\n";
  632.     }
  633.     }
  634.     @poddata = ();    # clean-up a bit
  635.  
  636.     chdir($pwd)
  637.     || die "$0: error changing to directory $pwd: $!\n";
  638.  
  639.     # cache the item list for later use
  640.     warn "caching items for later use\n" if $verbose;
  641.     open(CACHE, ">$itemcache") ||
  642.     die "$0: error open $itemcache for writing: $!\n";
  643.  
  644.     print CACHE join(":", @podpath) . "\n$podroot\n";
  645.     foreach my $key (keys %items) {
  646.     print CACHE "$key $items{$key}\n";
  647.     }
  648.  
  649.     close(CACHE);
  650.  
  651.     # cache the directory list for later use
  652.     warn "caching directories for later use\n" if $verbose;
  653.     open(CACHE, ">$dircache") ||
  654.     die "$0: error open $dircache for writing: $!\n";
  655.  
  656.     print CACHE join(":", @podpath) . "\n$podroot\n";
  657.     foreach my $key (keys %pages) {
  658.     print CACHE "$key $pages{$key}\n";
  659.     }
  660.  
  661.     close(CACHE);
  662. }
  663.  
  664. #
  665. # scan_dir - scans the directory specified in $dir for subdirectories, .pod
  666. #  files, and .pm files.  notes those that it finds.  this information will
  667. #  be used later in order to figure out where the pages specified in L<>
  668. #  links are on the filesystem.
  669. #
  670. sub scan_dir {
  671.     my($dir, $recurse) = @_;
  672.     my($t, @subdirs, @pods, $pod, $dirname, @dirs);
  673.     local $_;
  674.  
  675.     @subdirs = ();
  676.     @pods = ();
  677.  
  678.     opendir(DIR, $dir) ||
  679.     die "$0: error opening directory $dir: $!\n";
  680.     while (defined($_ = readdir(DIR))) {
  681.     if (-d "$dir/$_" && $_ ne "." && $_ ne "..") {        # directory
  682.         $pages{$_}  = "" unless defined $pages{$_};
  683.         $pages{$_} .= "$dir/$_:";
  684.         push(@subdirs, $_);
  685.     } elsif (/\.pod$/) {                                # .pod
  686.         s/\.pod$//;
  687.         $pages{$_}  = "" unless defined $pages{$_};
  688.         $pages{$_} .= "$dir/$_.pod:";
  689.         push(@pods, "$dir/$_.pod");
  690.     } elsif (/\.pm$/) {                                 # .pm
  691.         s/\.pm$//;
  692.         $pages{$_}  = "" unless defined $pages{$_};
  693.         $pages{$_} .= "$dir/$_.pm:";
  694.         push(@pods, "$dir/$_.pm");
  695.     }
  696.     }
  697.     closedir(DIR);
  698.  
  699.     # recurse on the subdirectories if necessary
  700.     if ($recurse) {
  701.     foreach my $subdir (@subdirs) {
  702.         scan_dir("$dir/$subdir", $recurse);
  703.     }
  704.     }
  705. }
  706.  
  707. #
  708. # scan_headings - scan a pod file for head[1-6] tags, note the tags, and
  709. #  build an index.
  710. #
  711. sub scan_headings {
  712.     my($sections, @data) = @_;
  713.     my($tag, $which_head, $title, $listdepth, $index);
  714.  
  715.     # here we need    local $ignore = 0;
  716.     #  unfortunately, we can't have it, because $ignore is lexical
  717.     $ignore = 0;
  718.  
  719.     $listdepth = 0;
  720.     $index = "";
  721.  
  722.     # scan for =head directives, note their name, and build an index
  723.     #  pointing to each of them.
  724.     foreach my $line (@data) {
  725.     if ($line =~ /^\s*=(head)([1-6])\s+(.*)/) {
  726.         ($tag,$which_head, $title) = ($1,$2,$3);
  727.         chomp($title);
  728.         $$sections{htmlify(0,$title)} = 1;
  729.  
  730.         if ($which_head > $listdepth) {
  731.         $index .= "\n" . ("\t" x $listdepth) . "<UL>\n";
  732.         } elsif ($which_head < $listdepth) {
  733.         $listdepth--;
  734.         $index .= "\n" . ("\t" x $listdepth) . "</UL>\n";
  735.         }
  736.         $listdepth = $which_head;
  737.  
  738.         $index .= "\n" . ("\t" x $listdepth) . "<LI>" .
  739.                   "<A HREF=\"#" . htmlify(0,$title) . "\">" .
  740.               process_text(\$title, 0) . "</A>";
  741.     }
  742.     }
  743.  
  744.     # finish off the lists
  745.     while ($listdepth--) {
  746.     $index .= "\n" . ("\t" x $listdepth) . "</UL>\n";
  747.     }
  748.  
  749.     # get rid of bogus lists
  750.     $index =~ s,\t*<UL>\s*</UL>\n,,g;
  751.  
  752.     $ignore = 1;    # retore old value;
  753.  
  754.     return $index;
  755. }
  756.  
  757. #
  758. # scan_items - scans the pod specified by $pod for =item directives.  we
  759. #  will use this information later on in resolving C<> links.
  760. #
  761. sub scan_items {
  762.     my($pod, @poddata) = @_;
  763.     my($i, $item);
  764.     local $_;
  765.  
  766.     $pod =~ s/\.pod$//;
  767.     $pod .= ".html" if $pod;
  768.  
  769.     foreach $i (0..$#poddata) {
  770.     $_ = $poddata[$i];
  771.  
  772.     # remove any formatting instructions
  773.     s,[A-Z]<([^<>]*)>,$1,g;
  774.  
  775.     # figure out what kind of item it is and get the first word of
  776.     #  it's name.
  777.     if (/^=item\s+(\w*)\s*.*$/s) {
  778.         if ($1 eq "*") {        # bullet list
  779.         /\A=item\s+\*\s*(.*?)\s*\Z/s;
  780.         $item = $1;
  781.         } elsif ($1 =~ /^[0-9]+/) {    # numbered list
  782.         /\A=item\s+[0-9]+\.?(.*?)\s*\Z/s;
  783.         $item = $1;
  784.         } else {
  785. #        /\A=item\s+(.*?)\s*\Z/s;
  786.         /\A=item\s+(\w*)/s;
  787.         $item = $1;
  788.         }
  789.  
  790.         $items{$item} = "$pod" if $item;
  791.     }
  792.     }
  793. }
  794.  
  795. #
  796. # process_head - convert a pod head[1-6] tag and convert it to HTML format.
  797. #
  798. sub process_head {
  799.     my($tag, $heading) = @_;
  800.     my $firstword;
  801.  
  802.     # figure out the level of the =head
  803.     $tag =~ /head([1-6])/;
  804.     my $level = $1;
  805.  
  806.     # can't have a heading full of spaces and speechmarks and so on
  807.     $firstword = $heading; $firstword =~ s/\s*(\w+)\s.*/$1/;
  808.  
  809.     print HTML "<P>\n" unless $listlevel;
  810.     print HTML "<HR>\n" unless $listlevel || $top;
  811.     print HTML "<H$level>"; # unless $listlevel;
  812.     #print HTML "<H$level>" unless $listlevel;
  813.     my $convert = $heading; process_text(\$convert, 0);
  814.     print HTML '<A NAME="' . htmlify(0,$heading) . "\">$convert</A>";
  815.     print HTML "</H$level>"; # unless $listlevel;
  816.     print HTML "\n";
  817. }
  818.  
  819. #
  820. # process_item - convert a pod item tag and convert it to HTML format.
  821. #
  822. sub process_item {
  823.     my $text = $_[0];
  824.     my($i, $quote, $name);
  825.  
  826.     my $need_preamble = 0;
  827.     my $this_entry;
  828.  
  829.  
  830.     # lots of documents start a list without doing an =over.  this is
  831.     # bad!  but, the proper thing to do seems to be to just assume
  832.     # they did do an =over.  so warn them once and then continue.
  833.     warn "$0: $podfile: unexpected =item directive in paragraph $paragraph.  ignoring.\n"
  834.     unless $listlevel;
  835.     process_over() unless $listlevel;
  836.  
  837.     return unless $listlevel;
  838.  
  839.     # remove formatting instructions from the text
  840.     1 while $text =~ s/[A-Z]<([^<>]*)>/$1/g;
  841.     pre_escape(\$text);
  842.  
  843.     $need_preamble = $items_seen[$listlevel]++ == 0;
  844.  
  845.     # check if this is the first =item after an =over
  846.     $i = $listlevel - 1;
  847.     my $need_new = $listlevel >= @listitem;
  848.  
  849.     if ($text =~ /\A\*/) {        # bullet
  850.  
  851.     if ($need_preamble) {
  852.         push(@listend,  "</UL>");
  853.         print HTML "<UL>\n";
  854.     }
  855.  
  856.        print HTML "<LI><STRONG>";
  857.        $text =~ /\A\*\s*(.*)\Z/s;
  858.        print HTML "<A NAME=\"item_" . htmlify(1,$1) . "\">" if $1 && !$items_named{$1}++;
  859.        $quote = 1;
  860.        #print HTML process_puretext($1, \$quote);
  861.        print HTML $1;
  862.        print HTML "</A>" if $1;
  863.        print HTML "</STRONG>";
  864.  
  865.     } elsif ($text =~ /\A[0-9#]+/) {    # numbered list
  866.  
  867.     if ($need_preamble) {
  868.         push(@listend,  "</OL>");
  869.         print HTML "<OL>\n";
  870.     }
  871.  
  872.        print HTML "<LI><STRONG>";
  873.        $text =~ /\A[0-9]+\.?(.*)\Z/s;
  874.        print HTML "<A NAME=\"item_" . htmlify(0,$1) . "\">" if $1;
  875.        $quote = 1;
  876.        #print HTML process_puretext($1, \$quote);
  877.        print HTML $1 if $1;
  878.        print HTML "</A>" if $1;
  879.        print HTML "</STRONG>";
  880.  
  881.     } else {            # all others
  882.  
  883.     if ($need_preamble) {
  884.         push(@listend,  '</DL>');
  885.         print HTML "<DL>\n";
  886.     }
  887.  
  888.        print HTML "<DT><STRONG>";
  889.        print HTML "<A NAME=\"item_" . htmlify(1,$text) . "\">" 
  890.         if $text && !$items_named{($text =~ /(\S+)/)[0]}++;
  891.         # preceding craziness so that the duplicate leading bits in 
  892.         # perlfunc work to find just the first one.  otherwise
  893.         # open etc would have many names
  894.        $quote = 1;
  895.        #print HTML process_puretext($text, \$quote);
  896.        print HTML $text;
  897.        print HTML "</A>" if $text;
  898.        print HTML "</STRONG>";
  899.  
  900.        print HTML '<DD>';
  901.     }
  902.  
  903.     print HTML "\n";
  904. }
  905.  
  906. #
  907. # process_over - process a pod over tag and start a corresponding HTML
  908. # list.
  909. #
  910. sub process_over {
  911.     # start a new list
  912.     $listlevel++;
  913. }
  914.  
  915. #
  916. # process_back - process a pod back tag and convert it to HTML format.
  917. #
  918. sub process_back {
  919.     warn "$0: $podfile: unexpected =back directive in paragraph $paragraph.  ignorning.\n"
  920.     unless $listlevel;
  921.     return unless $listlevel;
  922.  
  923.     # close off the list.  note, I check to see if $listend[$listlevel] is
  924.     # defined because an =item directive may have never appeared and thus
  925.     # $listend[$listlevel] may have never been initialized.
  926.     $listlevel--;
  927.     print HTML $listend[$listlevel] if defined $listend[$listlevel];
  928.     print HTML "\n";
  929.  
  930.     # don't need the corresponding perl code anymore
  931.     pop(@listitem);
  932.     pop(@listdata);
  933.     pop(@listend);
  934.  
  935.     pop(@items_seen);
  936. }
  937.  
  938. #
  939. # process_cut - process a pod cut tag, thus stop ignoring pod directives.
  940. #
  941. sub process_cut {
  942.     $ignore = 1;
  943. }
  944.  
  945. #
  946. # process_pod - process a pod pod tag, thus ignore pod directives until we see a
  947. # corresponding cut.
  948. #
  949. sub process_pod {
  950.     # no need to set $ignore to 0 cause the main loop did it
  951. }
  952.  
  953. #
  954. # process_for - process a =for pod tag.  if it's for html, split
  955. # it out verbatim, otherwise ignore it.
  956. #
  957. sub process_for {
  958.     my($whom, $text) = @_;
  959.     if ( $whom =~ /^(pod2)?html$/i) {
  960.     print HTML $text;
  961.     } 
  962. }
  963.  
  964. #
  965. # process_begin - process a =begin pod tag.  this pushes
  966. # whom we're beginning on the begin stack.  if there's a
  967. # begin stack, we only print if it us.
  968. #
  969. sub process_begin {
  970.     my($whom, $text) = @_;
  971.     $whom = lc($whom);
  972.     push (@begin_stack, $whom);
  973.     if ( $whom =~ /^(pod2)?html$/) {
  974.     print HTML $text if $text;
  975.     }
  976. }
  977.  
  978. #
  979. # process_end - process a =end pod tag.  pop the
  980. # begin stack.  die if we're mismatched.
  981. #
  982. sub process_end {
  983.     my($whom, $text) = @_;
  984.     $whom = lc($whom);
  985.     if ($begin_stack[-1] ne $whom ) {
  986.     die "Unmatched begin/end at chunk $paragraph\n"
  987.     } 
  988.     pop @begin_stack;
  989. }
  990.  
  991. #
  992. # process_text - handles plaintext that appears in the input pod file.
  993. # there may be pod commands embedded within the text so those must be
  994. # converted to html commands.
  995. #
  996. sub process_text {
  997.     my($text, $escapeQuotes) = @_;
  998.     my($result, $rest, $s1, $s2, $s3, $s4, $match, $bf);
  999.     my($podcommand, $params, $tag, $quote);
  1000.  
  1001.     return if $ignore;
  1002.  
  1003.     $quote  = 0;                # status of double-quote conversion
  1004.     $result = "";
  1005.     $rest = $$text;
  1006.  
  1007.     if ($rest =~ /^\s+/) {    # preformatted text, no pod directives
  1008.     $rest =~ s/\n+\Z//;
  1009.     $rest =~ s#.*#
  1010.         my $line = $&;
  1011.         1 while $line =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e;
  1012.         $line;
  1013.     #eg;
  1014.  
  1015.     $rest   =~ s/&/&/g;
  1016.     $rest   =~ s/</</g;
  1017.     $rest   =~ s/>/>/g;
  1018.     $rest   =~ s/"/"/g;
  1019.  
  1020.     # try and create links for all occurrences of perl.* within
  1021.     # the preformatted text.
  1022.     $rest =~ s{
  1023.             (\s*)(perl\w+)
  1024.           }{
  1025.             if (defined $pages{$2}) {    # is a link
  1026.             qq($1<A HREF="$htmlroot/$pages{$2}">$2</A>);
  1027.             } else {
  1028.             "$1$2";
  1029.             }
  1030.           }xeg;
  1031.     $rest =~ s/(<A HREF=)([^>:]*:)?([^>:]*)\.pod:([^>:]*:)?/$1$3.html/g;
  1032.  
  1033.   my $urls = '(' . join ('|', qw{
  1034.                 http
  1035.                 telnet
  1036.         mailto
  1037.         news
  1038.                 gopher
  1039.                 file
  1040.                 wais
  1041.                 ftp
  1042.             } ) 
  1043.         . ')';
  1044.   
  1045.   my $ltrs = '\w';
  1046.   my $gunk = '/#~:.?+=&%@!\-';
  1047.   my $punc = '.:?\-';
  1048.   my $any  = "${ltrs}${gunk}${punc}";
  1049.  
  1050.   $rest =~ s{
  1051.         \b                          # start at word boundary
  1052.         (                           # begin $1  {
  1053.           $urls     :               # need resource and a colon
  1054.           [$any] +?                 # followed by on or more
  1055.                                     #  of any valid character, but
  1056.                                     #  be conservative and take only
  1057.                                     #  what you need to....
  1058.         )                           # end   $1  }
  1059.         (?=                         # look-ahead non-consumptive assertion
  1060.                 [$punc]*            # either 0 or more puntuation
  1061.                 [^$any]             #   followed by a non-url char
  1062.             |                       # or else
  1063.                 $                   #   then end of the string
  1064.         )
  1065.       }{<A HREF="$1">$1</A>}igox;
  1066.  
  1067.     $result =   "<PRE>"    # text should be as it is (verbatim)
  1068.           . "$rest\n"
  1069.           . "</PRE>\n";
  1070.     } else {            # formatted text
  1071.     # parse through the string, stopping each time we find a
  1072.     # pod-escape.  once the string has been throughly processed
  1073.     # we can output it.
  1074.     while ($rest) {
  1075.         # check to see if there are any possible pod directives in
  1076.         # the remaining part of the text.
  1077.         if ($rest =~ m/[BCEIFLSZ]</) {
  1078.         warn "\$rest\t= $rest\n" unless
  1079.             $rest =~ /\A
  1080.                ([^<]*?)
  1081.                ([BCEIFLSZ]?)
  1082.                <
  1083.                (.*)\Z/xs;
  1084.  
  1085.         $s1 = $1;    # pure text
  1086.         $s2 = $2;    # the type of pod-escape that follows
  1087.         $s3 = '<';    # '<'
  1088.         $s4 = $3;    # the rest of the string
  1089.         } else {
  1090.         $s1 = $rest;
  1091.         $s2 = "";
  1092.         $s3 = "";
  1093.         $s4 = "";
  1094.         }
  1095.  
  1096.         if ($s3 eq '<' && $s2) {    # a pod-escape
  1097.         $result    .= ($escapeQuotes ? process_puretext($s1, \$quote) : $s1);
  1098.         $podcommand = "$s2<";
  1099.         $rest       = $s4;
  1100.  
  1101.         # find the matching '>'
  1102.         $match = 1;
  1103.         $bf = 0;
  1104.         while ($match && !$bf) {
  1105.             $bf = 1;
  1106.             if ($rest =~ /\A([^<>]*[BCEIFLSZ]<)(.*)\Z/s) {
  1107.             $bf = 0;
  1108.             $match++;
  1109.             $podcommand .= $1;
  1110.             $rest        = $2;
  1111.             } elsif ($rest =~ /\A([^>]*>)(.*)\Z/s) {
  1112.             $bf = 0;
  1113.             $match--;
  1114.             $podcommand .= $1;
  1115.             $rest        = $2;
  1116.             }
  1117.         }
  1118.  
  1119.         if ($match != 0) {
  1120.             warn <<WARN;
  1121. $0: $podfile: cannot find matching > for $s2 in paragraph $paragraph.
  1122. WARN
  1123.             $result .= substr $podcommand, 0, 2;
  1124.             $rest = substr($podcommand, 2) . $rest;
  1125.             next;
  1126.         }
  1127.  
  1128.         # pull out the parameters to the pod-escape
  1129.         $podcommand =~ /^([BCFEILSZ]?)<(.*)>$/s;
  1130.         $tag    = $1;
  1131.         $params = $2;
  1132.  
  1133.         # process the text within the pod-escape so that any escapes
  1134.         # which must occur do.
  1135.         process_text(\$params, 0) unless $tag eq 'L';
  1136.  
  1137.         $s1 = $params;
  1138.         if (!$tag || $tag eq " ") {    #  <> : no tag
  1139.             $s1 = "<$params>";
  1140.         } elsif ($tag eq "L") {        # L<> : link 
  1141.             $s1 = process_L($params);
  1142.         } elsif ($tag eq "I" ||        # I<> : italicize text
  1143.              $tag eq "B" ||        # B<> : bold text
  1144.              $tag eq "F") {        # F<> : file specification
  1145.             $s1 = process_BFI($tag, $params);
  1146.         } elsif ($tag eq "C") {        # C<> : literal code
  1147.             $s1 = process_C($params, 1);
  1148.         } elsif ($tag eq "E") {        # E<> : escape
  1149.             $s1 = process_E($params);
  1150.         } elsif ($tag eq "Z") {        # Z<> : zero-width character
  1151.             $s1 = process_Z($params);
  1152.         } elsif ($tag eq "S") {        # S<> : non-breaking space
  1153.             $s1 = process_S($params);
  1154.         } elsif ($tag eq "X") {        # S<> : non-breaking space
  1155.             $s1 = process_X($params);
  1156.         } else {
  1157.             warn "$0: $podfile: unhandled tag '$tag' in paragraph $paragraph\n";
  1158.         }
  1159.  
  1160.         $result .= "$s1";
  1161.         } else {
  1162.         # for pure text we must deal with implicit links and
  1163.         # double-quotes among other things.
  1164.         $result .= ($escapeQuotes ? process_puretext("$s1$s2$s3", \$quote) : "$s1$s2$s3");
  1165.         $rest    = $s4;
  1166.         }
  1167.     }
  1168.     }
  1169.     $$text = $result;
  1170. }
  1171.  
  1172. sub html_escape {
  1173.     my $rest = $_[0];
  1174.     $rest   =~ s/&/&/g;
  1175.     $rest   =~ s/</</g;
  1176.     $rest   =~ s/>/>/g;
  1177.     $rest   =~ s/"/"/g;
  1178.     return $rest;
  1179.  
  1180. #
  1181. # process_puretext - process pure text (without pod-escapes) converting
  1182. #  double-quotes and handling implicit C<> links.
  1183. #
  1184. sub process_puretext {
  1185.     my($text, $quote) = @_;
  1186.     my(@words, $result, $rest, $lead, $trail);
  1187.  
  1188.     # convert double-quotes to single-quotes
  1189.     $text =~ s/\A([^"]*)"/$1''/s if $$quote;
  1190.     while ($text =~ s/\A([^"]*)["]([^"]*)["]/$1``$2''/sg) {}
  1191.  
  1192.     $$quote = ($text =~ m/"/ ? 1 : 0);
  1193.     $text =~ s/\A([^"]*)"/$1``/s if $$quote;
  1194.  
  1195.     # keep track of leading and trailing white-space
  1196.     $lead  = ($text =~ /\A(\s*)/s ? $1 : "");
  1197.     $trail = ($text =~ /(\s*)\Z/s ? $1 : "");
  1198.  
  1199.     # collapse all white space into a single space
  1200.     $text =~ s/\s+/ /g;
  1201.     @words = split(" ", $text);
  1202.  
  1203.     # process each word individually
  1204.     foreach my $word (@words) {
  1205.     # see if we can infer a link
  1206.     if ($word =~ /^\w+\(/) {
  1207.         # has parenthesis so should have been a C<> ref
  1208.         $word = process_C($word);
  1209. #        $word =~ /^[^()]*]\(/;
  1210. #        if (defined $items{$1} && $items{$1}) {
  1211. #        $word =   "\n<CODE><A HREF=\"$htmlroot/$items{$1}#item_"
  1212. #            . htmlify(0,$word)
  1213. #            . "\">$word</A></CODE>";
  1214. #        } elsif (defined $items{$word} && $items{$word}) {
  1215. #        $word =   "\n<CODE><A HREF=\"$htmlroot/$items{$word}#item_"
  1216. #            . htmlify(0,$word)
  1217. #            . "\">$word</A></CODE>";
  1218. #        } else {
  1219. #        $word =   "\n<CODE><A HREF=\"#item_"
  1220. #            . htmlify(0,$word)
  1221. #            . "\">$word</A></CODE>";
  1222. #        }
  1223.     } elsif ($word =~ /^[\$\@%&*]+\w+$/) {
  1224.         # perl variables, should be a C<> ref
  1225.         $word = process_C($word, 1);
  1226.     } elsif ($word =~ m,^\w+://\w,) {
  1227.         # looks like a URL
  1228.         $word = qq(<A HREF="$word">$word</A>);
  1229.     } elsif ($word =~ /[\w.-]+\@\w+\.\w/) {
  1230.         # looks like an e-mail address
  1231.         $word = qq(<A HREF="MAILTO:$word">$word</A>);
  1232.     } elsif ($word !~ /[a-z]/ && $word =~ /[A-Z]/) {  # all uppercase?
  1233.         $word = html_escape($word) if $word =~ /[&<>]/;
  1234.         $word = "\n<FONT SIZE=-1>$word</FONT>" if $netscape;
  1235.     } else { 
  1236.         $word = html_escape($word) if $word =~ /[&<>]/;
  1237.     }
  1238.     }
  1239.  
  1240.     # build a new string based upon our conversion
  1241.     $result = "";
  1242.     $rest   = join(" ", @words);
  1243.     while (length($rest) > 75) {
  1244.     if ( $rest =~ m/^(.{0,75})\s(.*?)$/o ||
  1245.          $rest =~ m/^(\S*)\s(.*?)$/o) {
  1246.  
  1247.         $result .= "$1\n";
  1248.         $rest    = $2;
  1249.     } else {
  1250.         $result .= "$rest\n";
  1251.         $rest    = "";
  1252.     }
  1253.     }
  1254.     $result .= $rest if $rest;
  1255.  
  1256.     # restore the leading and trailing white-space
  1257.     $result = "$lead$result$trail";
  1258.  
  1259.     return $result;
  1260. }
  1261.  
  1262. #
  1263. # pre_escape - convert & in text to $amp;
  1264. #
  1265. sub pre_escape {
  1266.     my($str) = @_;
  1267.  
  1268.     $$str =~ s,&,&,g;
  1269. }
  1270.  
  1271. #
  1272. # process_L - convert a pod L<> directive to a corresponding HTML link.
  1273. #  most of the links made are inferred rather than known about directly
  1274. #  (i.e it's not known whether the =head\d section exists in the target file,
  1275. #   or whether a .pod file exists in the case of split files).  however, the
  1276. #  guessing usually works.
  1277. #
  1278. # Unlike the other directives, this should be called with an unprocessed
  1279. # string, else tags in the link won't be matched.
  1280. #
  1281. sub process_L {
  1282.     my($str) = @_;
  1283.     my($s1, $s2, $linktext, $page, $section, $link);    # work strings
  1284.  
  1285.     $str =~ s/\n/ /g;            # undo word-wrapped tags
  1286.     $s1 = $str;
  1287.     for ($s1) {
  1288.     # a :: acts like a /
  1289.     s,::,/,;
  1290.  
  1291.     # make sure sections start with a /
  1292.     s,^",/",g;
  1293.     s,^,/,g if (!m,/, && / /);
  1294.  
  1295.     # check if there's a section specified
  1296.     if (m,^(.*?)/"?(.*?)"?$,) {    # yes
  1297.         ($page, $section) = ($1, $2);
  1298.     } else {            # no
  1299.         ($page, $section) = ($str, "");
  1300.     }
  1301.  
  1302.     # check if we know that this is a section in this page
  1303.     if (!defined $pages{$page} && defined $sections{$page}) {
  1304.         $section = $page;
  1305.         $page = "";
  1306.     }
  1307.     }
  1308.  
  1309.     if ($page eq "") {
  1310.     $link = "#" . htmlify(0,$section);
  1311.     $linktext = $section;
  1312.     } elsif (!defined $pages{$page}) {
  1313.     warn "$0: $podfile: cannot resolve L<$str> in paragraph $paragraph: no such page '$page'\n";
  1314.     $link = "";
  1315.     $linktext = $page;
  1316.     } else {
  1317.     $linktext  = ($section ? "$section" : "the $page manpage");
  1318.     $section = htmlify(0,$section) if $section ne "";
  1319.  
  1320.     # if there is a directory by the name of the page, then assume that an
  1321.     # appropriate section will exist in the subdirectory
  1322.     if ($section ne "" && $pages{$page} =~ /([^:]*[^(\.pod|\.pm)]):/) {
  1323.         $link = "$htmlroot/$1/$section.html";
  1324.  
  1325.     # since there is no directory by the name of the page, the section will
  1326.     # have to exist within a .html of the same name.  thus, make sure there
  1327.     # is a .pod or .pm that might become that .html
  1328.     } else {
  1329.         $section = "#$section";
  1330.         # check if there is a .pod with the page name
  1331.         if ($pages{$page} =~ /([^:]*)\.pod:/) {
  1332.         $link = "$htmlroot/$1.html$section";
  1333.         } elsif ($pages{$page} =~ /([^:]*)\.pm:/) {
  1334.         $link = "$htmlroot/$1.html$section";
  1335.         } else {
  1336.         warn "$0: $podfile: cannot resolve L$str in paragraph $paragraph: ".
  1337.                  "no .pod or .pm found\n";
  1338.         $link = "";
  1339.         $linktext = $section;
  1340.         }
  1341.     }
  1342.     }
  1343.  
  1344.     process_text(\$linktext, 0);
  1345.     if ($link) {
  1346.     $s1 = "<A HREF=\"$link\">$linktext</A>";
  1347.     } else {
  1348.     $s1 = "<EM>$linktext</EM>";
  1349.     }
  1350.     return $s1;
  1351. }
  1352.  
  1353. #
  1354. # process_BFI - process any of the B<>, F<>, or I<> pod-escapes and
  1355. # convert them to corresponding HTML directives.
  1356. #
  1357. sub process_BFI {
  1358.     my($tag, $str) = @_;
  1359.     my($s1);            # work string
  1360.     my(%repltext) = (    'B' => 'STRONG',
  1361.             'F' => 'EM',
  1362.             'I' => 'EM');
  1363.  
  1364.     # extract the modified text and convert to HTML
  1365.     $s1 = "<$repltext{$tag}>$str</$repltext{$tag}>";
  1366.     return $s1;
  1367. }
  1368.  
  1369. #
  1370. # process_C - process the C<> pod-escape.
  1371. #
  1372. sub process_C {
  1373.     my($str, $doref) = @_;
  1374.     my($s1, $s2);
  1375.  
  1376.     $s1 = $str;
  1377.     $s1 =~ s/\([^()]*\)//g;    # delete parentheses
  1378.     $s2 = $s1;
  1379.     $s1 =~ s/\W//g;        # delete bogus characters
  1380.  
  1381.     # if there was a pod file that we found earlier with an appropriate
  1382.     # =item directive, then create a link to that page.
  1383.     if ($doref && defined $items{$s1}) {
  1384.     $s1 = ($items{$s1} ?
  1385.            "<A HREF=\"$htmlroot/$items{$s1}#item_" . htmlify(0,$s2) .  "\">$str</A>" :
  1386.            "<A HREF=\"#item_" . htmlify(0,$s2) .  "\">$str</A>");
  1387.     $s1 =~ s,(perl\w+/(\S+)\.html)#item_\2\b,$1,; 
  1388.     confess "s1 has space: $s1" if $s1 =~ /HREF="[^"]*\s[^"]*"/;
  1389.     } else {
  1390.     $s1 = "<CODE>$str</CODE>";
  1391.     # warn "$0: $podfile: cannot resolve C<$str> in paragraph $paragraph\n" if $verbose
  1392.     }
  1393.  
  1394.  
  1395.     return $s1;
  1396. }
  1397.  
  1398. #
  1399. # process_E - process the E<> pod directive which seems to escape a character.
  1400. #
  1401. sub process_E {
  1402.     my($str) = @_;
  1403.  
  1404.     for ($str) {
  1405.     s,([^/].*),\&$1\;,g;
  1406.     }
  1407.  
  1408.     return $str;
  1409. }
  1410.  
  1411. #
  1412. # process_Z - process the Z<> pod directive which really just amounts to
  1413. # ignoring it.  this allows someone to start a paragraph with an =
  1414. #
  1415. sub process_Z {
  1416.     my($str) = @_;
  1417.  
  1418.     # there is no equivalent in HTML for this so just ignore it.
  1419.     $str = "";
  1420.     return $str;
  1421. }
  1422.  
  1423. #
  1424. # process_S - process the S<> pod directive which means to convert all
  1425. # spaces in the string to non-breaking spaces (in HTML-eze).
  1426. #
  1427. sub process_S {
  1428.     my($str) = @_;
  1429.  
  1430.     # convert all spaces in the text to non-breaking spaces in HTML.
  1431.     $str =~ s/ / /g;
  1432.     return $str;
  1433. }
  1434.  
  1435. #
  1436. # process_X - this is supposed to make an index entry.  we'll just 
  1437. # ignore it.
  1438. #
  1439. sub process_X {
  1440.     return '';
  1441. }
  1442.  
  1443.  
  1444. #
  1445. # finish_list - finish off any pending HTML lists.  this should be called
  1446. # after the entire pod file has been read and converted.
  1447. #
  1448. sub finish_list {
  1449.     while ($listlevel >= 0) {
  1450.     print HTML "</DL>\n";
  1451.     $listlevel--;
  1452.     }
  1453. }
  1454.  
  1455. #
  1456. # htmlify - converts a pod section specification to a suitable section
  1457. # specification for HTML.  if first arg is 1, only takes 1st word.
  1458. #
  1459. sub htmlify {
  1460.     my($compact, $heading) = @_;
  1461.  
  1462.     if ($compact) {
  1463.       $heading =~ /^(\w+)/;
  1464.       $heading = $1;
  1465.     } 
  1466.  
  1467.   # $heading = lc($heading);
  1468.   $heading =~ s/[^\w\s]/_/g;
  1469.   $heading =~ s/(\s+)/ /g;
  1470.   $heading =~ s/^\s*(.*?)\s*$/$1/s;
  1471.   $heading =~ s/ /_/g;
  1472.   $heading =~ s/\A(.{32}).*\Z/$1/s;
  1473.   $heading =~ s/\s+\Z//;
  1474.   $heading =~ s/_{2,}/_/g;
  1475.  
  1476.   return $heading;
  1477. }
  1478.  
  1479. BEGIN {
  1480. }
  1481.  
  1482. 1;
  1483.  
  1484.