Three bugs in pod2html
authorUnknown Contributor <hansm@euronet.nl>
Mon, 5 May 1997 22:28:06 +0000 (00:28 +0200)
committerChip Salzenberg <chip@atlantic.net>
Wed, 7 May 1997 12:00:00 +0000 (00:00 +1200)
I had three problems with the pod2html distributed with perl 5.00399:

1. The HTML code generated begins with a series of hyperlinks to all
   sections of the file.  Pod directives occurring in the section
   titles (=head directives) were not translated.

2. C<foo()> sets translates to <CODE>foo</CODE> -- the () disappear.

3. Perlpod promises that example code gets typeset with tab stops
   every 8 columns.  HTML makes no such promise, hence pod2html must
   expand tabs.

The first three hunks of the patch below solve #1, hunk 4 fixes a
call to &process_text with the wrong number of args, hunk 5 solves #3
and hunk 6 solves #2.x

p5p-msgid: 199705052228.AAA25351@mail.euronet.nl

lib/Pod/Html.pm

index a00d210..aaefc3c 100644 (file)
@@ -712,6 +712,10 @@ sub scan_headings {
     my($sections, @data) = @_;
     my($tag, $which_head, $title, $listdepth, $index);
 
+    # here we need     local $ignore = 0;
+    #  unfortunately, we can't have it, because $ignore is lexical
+    $ignore = 0;
+
     $listdepth = 0;
     $index = "";
 
@@ -732,7 +736,8 @@ sub scan_headings {
            $listdepth = $which_head;
 
            $index .= "\n" . ("\t" x $listdepth) . "<LI>" .
-                     "<A HREF=\"#" . htmlify(0,$title) . "\">$title</A>";
+                     "<A HREF=\"#" . htmlify(0,$title) . "\">" .
+                     process_text(\$title, 0) . "</A>";
        }
     }
 
@@ -744,6 +749,8 @@ sub scan_headings {
     # get rid of bogus lists
     $index =~ s,\t*<UL>\s*</UL>\n,,g;
 
+    $ignore = 1;       # retore old value;
+
     return $index;
 }
 
@@ -803,7 +810,7 @@ sub process_head {
     print HTML "<HR>\n" unless $listlevel || $top;
     print HTML "<H$level>"; # unless $listlevel;
     #print HTML "<H$level>" unless $listlevel;
-    my $convert = $heading; process_text(\$convert);
+    my $convert = $heading; process_text(\$convert, 0);
     print HTML '<A NAME="' . htmlify(0,$heading) . "\">$convert</A>";
     print HTML "</H$level>"; # unless $listlevel;
     print HTML "\n";
@@ -998,7 +1005,12 @@ sub process_text {
     $rest = $$text;
 
     if ($rest =~ /^\s+/) {     # preformatted text, no pod directives
-       $rest   =~ s/\n+\Z//;
+       $rest =~ s/\n+\Z//;
+       $rest =~ s#.*#
+           my $line = $&;
+           1 while $line =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e;
+           $line;
+       #eg;
 
        $rest   =~ s/&/&amp;/g;
        $rest   =~ s/</&lt;/g;
@@ -1364,7 +1376,7 @@ sub process_C {
 
     $s1 = $str;
     $s1 =~ s/\([^()]*\)//g;    # delete parentheses
-    $str = $s2 = $s1;
+    $s2 = $s1;
     $s1 =~ s/\W//g;            # delete bogus characters
 
     # if there was a pod file that we found earlier with an appropriate