tgupdate: merge pcreposix-compat base into pcreposix-compat
[pcreposix-compat.git] / 132html
blobe00024970a525be1f07b69348b876593c0be3ee7
1 #! /usr/bin/perl -w
3 # Script to turn PCRE man pages into HTML
6 # Subroutine to handle font changes and other escapes
8 sub do_line {
9 my($s) = $_[0];
11 $s =~ s/</&#60;/g; # Deal with < and >
12 $s =~ s/>/&#62;/g;
13 $s =~ s"\\fI(.*?)\\f[RP]"<i>$1</i>"g;
14 $s =~ s"\\fB(.*?)\\f[RP]"<b>$1</b>"g;
15 $s =~ s"\\e"\\"g;
16 $s =~ s/(?<=Copyright )\(c\)/&copy;/g;
17 $s;
20 # Subroutine to ensure not in a paragraph
22 sub end_para {
23 if ($inpara)
25 print TEMP "</PRE>\n" if ($inpre);
26 print TEMP "</P>\n";
28 $inpara = $inpre = 0;
29 $wrotetext = 0;
32 # Subroutine to start a new paragraph
34 sub new_para {
35 &end_para();
36 print TEMP "<P>\n";
37 $inpara = 1;
41 # Main program
43 $innf = 0;
44 $inpara = 0;
45 $inpre = 0;
46 $wrotetext = 0;
47 $toc = 0;
48 $ref = 1;
50 while ($#ARGV >= 0 && $ARGV[0] =~ /^-/)
52 $toc = 1 if $ARGV[0] eq "-toc";
53 shift;
56 # Initial output to STDOUT
58 print <<End ;
59 <html>
60 <head>
61 <title>$ARGV[0] specification</title>
62 </head>
63 <body bgcolor="#FFFFFF" text="#00005A" link="#0066FF" alink="#3399FF" vlink="#2222BB">
64 <h1>$ARGV[0] man page</h1>
65 <p>
66 Return to the <a href="index.html">PCRE index page</a>.
67 </p>
68 <p>
69 This page is part of the PCRE HTML documentation. It was generated automatically
70 from the original man page. If there is any nonsense in it, please consult the
71 man page, in case the conversion went wrong.
72 <br>
73 End
75 print "<ul>\n" if ($toc);
77 open(TEMP, ">/tmp/$$") || die "Can't open /tmp/$$ for output\n";
79 while (<STDIN>)
81 # Handle lines beginning with a dot
83 if (/^\./)
85 # Some of the PCRE man pages used to contain instances of .br. However,
86 # they should have all been removed because they cause trouble in some
87 # (other) automated systems that translate man pages to HTML. Complain if
88 # we find .br or .in (another macro that is deprecated).
90 if (/^\.br/ || /^\.in/)
92 print STDERR "\n*** Deprecated macro encountered - rewrite needed\n";
93 print STDERR "*** $_\n";
94 die "*** Processing abandoned\n";
97 # Instead of .br, relevent "literal" sections are enclosed in .nf/.fi.
99 elsif (/^\.nf/)
101 $innf = 1;
104 elsif (/^\.fi/)
106 $innf = 0;
109 # Handling .sp is subtle. If it is inside a literal section, do nothing if
110 # the next line is a non literal text line; similarly, if not inside a
111 # literal section, do nothing if a literal follows, unless we are inside
112 # a .nf/.ne section. The point being that the <pre> and </pre> that delimit
113 # literal sections will do the spacing. Always skip if no previous output.
115 elsif (/^\.sp/)
117 if ($wrotetext)
119 $_ = <STDIN>;
120 if ($inpre)
122 print TEMP "\n" if (/^[\s.]/);
124 else
126 print TEMP "<br>\n<br>\n" if ($innf || !/^[\s.]/);
128 redo; # Now process the lookahead line we just read
131 elsif (/^\.TP/ || /^\.PP/ || /^\.P/)
133 &new_para();
135 elsif (/^\.SH\s*("?)(.*)\1/)
137 # Ignore the NAME section
138 if ($2 =~ /^NAME\b/)
140 <STDIN>;
141 next;
144 &end_para();
145 my($title) = &do_line($2);
146 if ($toc)
148 printf("<li><a name=\"TOC%d\" href=\"#SEC%d\">$title</a>\n",
149 $ref, $ref);
150 printf TEMP ("<br><a name=\"SEC%d\" href=\"#TOC1\">$title</a><br>\n",
151 $ref);
152 $ref++;
154 else
156 print TEMP "<br><b>\n$title\n</b><br>\n";
159 elsif (/^\.SS\s*("?)(.*)\1/)
161 &end_para();
162 my($title) = &do_line($2);
163 print TEMP "<br><b>\n$title\n</b><br>\n";
165 elsif (/^\.B\s*(.*)/)
167 &new_para() if (!$inpara);
168 $_ = &do_line($1);
169 s/"(.*?)"/$1/g;
170 print TEMP "<b>$_</b>\n";
171 $wrotetext = 1;
173 elsif (/^\.I\s*(.*)/)
175 &new_para() if (!$inpara);
176 $_ = &do_line($1);
177 s/"(.*?)"/$1/g;
178 print TEMP "<i>$_</i>\n";
179 $wrotetext = 1;
182 # A comment that starts "HREF" takes the next line as a name that
183 # is turned into a hyperlink, using the text given, which might be
184 # in a special font. If it ends in () or (digits) or punctuation, they
185 # aren't part of the link.
187 elsif (/^\.\\"\s*HREF/)
189 $_=<STDIN>;
190 chomp;
191 $_ = &do_line($_);
192 $_ =~ s/\s+$//;
193 $_ =~ /^(?:<.>)?([^<(]+)(?:\(\))?(?:<\/.>)?(?:\(\d+\))?[.,;:]?$/;
194 print TEMP "<a href=\"$1.html\">$_</a>\n";
197 # A comment that starts "HTML" inserts literal HTML
199 elsif (/^\.\\"\s*HTML\s*(.*)/)
201 print TEMP $1;
204 # A comment that starts < inserts that HTML at the end of the
205 # *next* input line - so as not to get a newline between them.
207 elsif (/^\.\\"\s*(<.*>)/)
209 my($markup) = $1;
210 $_=<STDIN>;
211 chomp;
212 $_ = &do_line($_);
213 $_ =~ s/\s+$//;
214 print TEMP "$_$markup\n";
217 # A comment that starts JOIN joins the next two lines together, with one
218 # space between them. Then that line is processed. This is used in some
219 # displays where two lines are needed for the "man" version. JOINSH works
220 # the same, except that it assumes this is a shell command, so removes
221 # continuation backslashes.
223 elsif (/^\.\\"\s*JOIN(SH)?/)
225 my($one,$two);
226 $one = <STDIN>;
227 $two = <STDIN>;
228 $one =~ s/\s*\\e\s*$// if (defined($1));
229 chomp($one);
230 $two =~ s/^\s+//;
231 $_ = "$one $two";
232 redo; # Process the joined lines
235 # .EX/.EE are used in the pcredemo page to bracket the entire program,
236 # which is unmodified except for turning backslash into "\e".
238 elsif (/^\.EX\s*$/)
240 print TEMP "<PRE>\n";
241 while (<STDIN>)
243 last if /^\.EE\s*$/;
244 s/\\e/\\/g;
245 s/&/&amp;/g;
246 s/</&lt;/g;
247 s/>/&gt;/g;
248 print TEMP;
252 # Ignore anything not recognized
254 next;
257 # Line does not begin with a dot. Replace blank lines with new paragraphs
259 if (/^\s*$/)
261 &end_para() if ($wrotetext);
262 next;
265 # Convert fonts changes and output an ordinary line. Ensure that indented
266 # lines are marked as literal.
268 $_ = &do_line($_);
269 &new_para() if (!$inpara);
271 if (/^\s/)
273 if (!$inpre)
275 print TEMP "<pre>\n";
276 $inpre = 1;
279 elsif ($inpre)
281 print TEMP "</pre>\n";
282 $inpre = 0;
285 # Add <br> to the end of a non-literal line if we are within .nf/.fi
287 $_ .= "<br>\n" if (!$inpre && $innf);
289 print TEMP;
290 $wrotetext = 1;
293 # The TOC, if present, will have been written - terminate it
295 print "</ul>\n" if ($toc);
297 # Copy the remainder to the standard output
299 close(TEMP);
300 open(TEMP, "/tmp/$$") || die "Can't open /tmp/$$ for input\n";
302 print while (<TEMP>);
304 print <<End ;
306 Return to the <a href="index.html">PCRE index page</a>.
307 </p>
310 close(TEMP);
311 unlink("/tmp/$$");
313 # End