3 # Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
5 # This file is part of GNU CC.
7 # GNU CC is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
12 # GNU CC is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU CC; see the file COPYING. If not, write to
19 # the Free Software Foundation, 59 Temple Place - Suite 330,
20 # Boston MA 02111-1307, USA.
22 # This does trivial (and I mean _trivial_) conversion of Texinfo
23 # markup to Perl POD format. It's intended to be used to extract
24 # something suitable for a manpage from a Texinfo document.
44 die "no flag specified for -D\n"
46 die "flags may only contain letters, digits, hyphens, and underscores\n"
47 unless $flag =~ /^[a-zA-Z0-9_-]+$/;
52 $in = $_, next unless defined $in;
53 $out = $_, next unless defined $out;
59 open(STDIN
, $in) or die "opening \"$in\": $!\n";
62 open(STDOUT
, ">$out") or die "opening \"$out\": $!\n";
67 # Certain commands are discarded without further processing.
69 [a
-z
]+index # @*index: useful only in complete manual
70 |need
# @need: useful only in printed manual
71 |(?
:end\s
+)?group
# @group .. @end group: ditto
73 |node
# @node: useful only in .info file
78 # Look for filename and title markers.
79 /^\@setfilename\s+([^.]+)/ and $fn = $1, next;
80 /^\@settitle\s+([^.]+)/ and $tl = $1, next;
82 # Look for blocks surrounded by @c man begin SECTION ... @c man end.
83 # This really oughta be @ifman ... @end ifman and the like, but such
84 # would require rev'ing all other Texinfo translators.
85 /^\@c man begin ([A-Z]+)/ and $sect = $1, $output = 1, next;
86 /^\@c man end/ and do {
87 $sects{$sect} = "" unless exists $sects{$sect};
88 $sects{$sect} .= postprocess
($section);
95 # Discard comments. (Can't do it above, because then we'd never see
99 # End-block handler goes up here because it needs to operate even
100 # if we are skipping.
101 /^\@end\s+([a-z]+)/ and do {
102 # Ignore @end foo, where foo is not an operation which may
103 # cause us to skip, if we are presently skipping.
105 next if $skipping && $ended !~ /^(?:ifset|ifclear|ignore|menu)$/;
107 die "\@end $ended without \@$ended at line $.\n" unless defined $endw;
108 die "\@$endw ended by \@end $ended at line $.\n" unless $ended eq $endw;
110 $endw = pop @endwstack;
112 if ($ended =~ /^(?:ifset|ifclear|ignore|menu)$/) {
113 $skipping = pop @skstack;
115 } elsif ($ended =~ /^(?:example|smallexample)$/) {
117 $_ = ""; # need a paragraph break
118 } elsif ($ended =~ /^(?:itemize|enumerate|table)$/) {
122 die "unknown command \@end $ended at line $.\n";
126 # We must handle commands which can cause skipping even while we
127 # are skipping, otherwise we will not process nested conditionals
129 /^\@ifset\s+([a-zA-Z0-9_-]+)/ and do {
130 push @endwstack, $endw;
131 push @skstack, $skipping;
133 $skipping = 1 unless exists $defs{$1};
137 /^\@ifclear\s+([a-zA-Z0-9_-]+)/ and do {
138 push @endwstack, $endw;
139 push @skstack, $skipping;
141 $skipping = 1 if exists $defs{$1};
145 /^\@(ignore|menu)\b/ and do {
146 push @endwstack, $endw;
147 push @skstack, $skipping;
155 # Character entities. First the ones that can be replaced by raw text
156 # or discarded outright:
157 s/\@copyright\{\}/(c)/g;
159 s/\@enddots\{\}/..../g;
162 s/\@bullet(?:\{\})?/*/g;
165 s/\@minus(?:\{\})?/-/g;
168 # Now the ones that have to be replaced by special escapes
169 # (which will be turned back into text by unmunge())
174 # POD doesn't interpret E<> inside a verbatim block.
183 # Single line command handlers.
184 /^\@set\s+([a-zA-Z0-9_-]+)\s*(.*)$/ and $defs{$1} = $2, next;
185 /^\@clear\s+([a-zA-Z0-9_-]+)/ and delete $defs{$1}, next;
187 /^\@section\s+(.+)$/ and $_ = "\n=head2 $1\n";
188 /^\@subsection\s+(.+)$/ and $_ = "\n=head3 $1\n";
190 # Block command handlers:
191 /^\@itemize\s+(\@[a-z]+|\*|-)/ and do {
192 push @endwstack, $endw;
199 /^\@enumerate(?:\s+([A-Z0-9]+))?/ and do {
200 push @endwstack, $endw;
211 /^\@table\s+(\@[a-z]+)/ and do {
212 push @endwstack, $endw;
215 $ic =~ s/\@(?:samp|strong|key|gcctabopt|env)/B/;
216 $ic =~ s/\@(?:code|kbd)/C/;
217 $ic =~ s/\@(?:dfn|var|emph|cite|i)/I/;
218 $ic =~ s/\@(?:file)/F/;
223 /^\@((?:small)?example)/ and do {
224 push @endwstack, $endw;
227 $_ = ""; # need a paragraph break
230 /^\@itemx?\s*(.+)?$/ and do {
232 # Entity escapes prevent munging by the <> processing below.
233 $_ = "\n=item $ic\<$1\>\n";
235 $_ = "\n=item $ic\n";
236 $ic =~ y/A-Ya-y1-8/B-Zb-z2-9/;
240 $section .= $shift.$_."\n";
243 die "No filename or title\n" unless defined $fn && defined $tl;
245 $sects{NAME
} = "$fn \- $tl\n";
246 $sects{FOOTNOTES
} .= "=back\n" if exists $sects{FOOTNOTES
};
248 for $sect (qw(NAME SYNOPSIS DESCRIPTION OPTIONS ENVIRONMENT FILES
249 BUGS NOTES FOOTNOTES SEEALSO AUTHOR COPYRIGHT)) {
250 if(exists $sects{$sect}) {
252 $head =~ s/SEEALSO/SEE ALSO/;
253 print "=head1 $head\n\n";
254 print scalar unmunge
($sects{$sect});
261 die "usage: $0 [-D toggle...] [infile [outfile]]\n";
268 # @value{foo} is replaced by whatever 'foo' is defined as.
269 s/\@value\{([a-zA-Z0-9_-]+)\}/$defs{$1}/g;
271 # Formatting commands.
272 # Temporary escape for @r.
273 s/\@r\{([^\}]*)\}/R<$1>/g;
274 s/\@(?:dfn|var|emph|cite|i)\{([^\}]*)\}/I<$1>/g;
275 s/\@(?:code|kbd)\{([^\}]*)\}/C<$1>/g;
276 s/\@(?:gccoptlist|samp|strong|key|option|env|command|b)\{([^\}]*)\}/B<$1>/g;
277 s/\@sc\{([^\}]*)\}/\U$1/g;
278 s/\@file\{([^\}]*)\}/F<$1>/g;
279 s/\@w\{([^\}]*)\}/S<$1>/g;
280 s/\@(?:dmn|math)\{([^\}]*)\}/$1/g;
282 # Handle @r inside bold.
283 1 while s/B<((?:[^<>]|I<[^<>]*>)*)R<([^>]*)>/B<$1>${2}B</g;
285 # Cross references are thrown away, as are @noindent and @refill.
286 # (@noindent is impossible in .pod, and @refill is unnecessary.)
287 # @* is also impossible in .pod; we discard it and any newline that
288 # follows it. Similarly, our macro @gol must be discarded.
290 s/\(?\@xref\{(?:[^\}]*)\}(?:[^.<]|(?:<[^<>]*>))*\.\)?//g;
291 s/\s+\(\@pxref\{(?:[^\}]*)\}\)//g;
292 s/;\s+\@pxref\{(?:[^\}]*)\}//g;
298 # @uref can take one, two, or three arguments, with different
299 # semantics each time. @url and @email are just like @uref with
300 # one argument, for our purposes.
301 s/\@(?:uref|url|email)\{([^\},]*)\}/<B<$1>>/g;
302 s/\@uref\{([^\},]*),([^\},]*)\}/$2 (C<$1>)/g;
303 s/\@uref\{([^\},]*),([^\},]*),([^\},]*)\}/$3/g;
305 # Turn B<blah I<blah> blah> into B<blah> I<blah> B<blah> to
306 # match Texinfo semantics of @emph inside @samp.
309 1 while (s/B<([^<>]*)I<([^>]+)>/B<$1>I<$2>B</g);
310 1 while (s/I<([^<>]*)B<([^>]+)>/I<$1>B<$2>I</g);
312 s/([BI])<(\s+)([^>]+)>/$2$1<$3>/g;
313 s/([BI])<([^>]+?)(\s+)>/$1<$2>$3/g;
315 # Extract footnotes. This has to be done after all other
316 # processing because otherwise the regexp will choke on formatting
318 while (/\@footnote/g) {
319 s/\@footnote\{([^\}]+)\}/[$fnno]/;
320 add_footnote
($1, $fnno);
329 # Replace escaped symbols with their equivalents.
343 unless (exists $sects{FOOTNOTES
}) {
344 $sects{FOOTNOTES
} = "\n=over 4\n\n";
347 $sects{FOOTNOTES
} .= "=item $fnno.\n\n"; $fnno++;
348 $sects{FOOTNOTES
} .= $_[0];
349 $sects{FOOTNOTES
} .= "\n\n";