Don't reuse temp files in tests
[p5sagit/p5-mst-13.2.git] / pod / pod2text.PL
CommitLineData
cb1a09d0 1#!/usr/local/bin/perl
2
c07a80fd 3use Config;
4use File::Basename qw(&basename &dirname);
3b5ca523 5use Cwd;
cb1a09d0 6
c07a80fd 7# List explicitly here the variables you want Configure to
8# generate. Metaconfig only looks for shell variables, so you
9# have to mention them as if they were shell variables, not
10# %Config entries. Thus you write
11# $startperl
12# to ensure Configure will look for $Config{startperl}.
cb1a09d0 13
3b5ca523 14# This forces PL files to create target in same directory as PL file.
15# This is so that make depend always knows where to find PL derivatives.
16$origdir = cwd;
17chdir dirname($0);
44a8e56a 18$file = basename($0, '.PL');
774d564b 19$file .= '.com' if $^O eq 'VMS';
cb1a09d0 20
c07a80fd 21open OUT,">$file" or die "Can't create $file: $!";
cb1a09d0 22
c07a80fd 23print "Extracting $file (with variable substitutions)\n";
cb1a09d0 24
c07a80fd 25# In this section, perl variables will be expanded during extraction.
26# You can use $Config{...} to use Configure variables.
cb1a09d0 27
c07a80fd 28print OUT <<"!GROK!THIS!";
5f05dabc 29$Config{startperl}
30 eval 'exec $Config{perlpath} -S \$0 \${1+"\$@"}'
9741dab0 31 if \$running_under_some_shell;
c07a80fd 32!GROK!THIS!
cb1a09d0 33
c07a80fd 34# In the following, perl variables are not expanded during extraction.
cb1a09d0 35
c07a80fd 36print OUT <<'!NO!SUBS!';
cb1a09d0 37
6055f9d4 38# pod2text -- Convert POD data to formatted ASCII text.
9741dab0 39#
0e4e3f6e 40# Copyright 1999, 2000, 2001, 2004, 2006, 2008 Russ Allbery <rra@stanford.edu>
6055f9d4 41#
3c014959 42# This program is free software; you may redistribute it and/or modify it
6055f9d4 43# under the same terms as Perl itself.
44#
9741dab0 45# The driver script for Pod::Text, Pod::Text::Termcap, and Pod::Text::Color,
46# invoked by perldoc -t among other things.
6055f9d4 47
48require 5.004;
49
50use Getopt::Long qw(GetOptions);
51use Pod::Text ();
52use Pod::Usage qw(pod2usage);
53
54use strict;
6055f9d4 55
59548eca 56# Silence -w warnings.
57use vars qw($running_under_some_shell);
58
6055f9d4 59# Take an initial pass through our options, looking for one of the form
60# -<number>. We turn that into -w <number> for compatibility with the
61# original pod2text script.
62for (my $i = 0; $i < @ARGV; $i++) {
63 last if $ARGV[$i] =~ /^--$/;
64 if ($ARGV[$i] =~ /^-(\d+)$/) {
65 splice (@ARGV, $i++, 1, '-w', $1);
66 }
67}
68
46bce7d0 69# Insert -- into @ARGV before any single dash argument to hide it from
b7ae008f 70# Getopt::Long; we want to interpret it as meaning stdin (which Pod::Simple
46bce7d0 71# does correctly).
72my $stdin;
73@ARGV = map { $_ eq '-' && !$stdin++ ? ('--', $_) : $_ } @ARGV;
74
9741dab0 75# Parse our options. Use the same names as Pod::Text for simplicity, and
76# default to sentence boundaries turned off for compatibility.
6055f9d4 77my %options;
6055f9d4 78$options{sentence} = 0;
79Getopt::Long::config ('bundling');
59548eca 80GetOptions (\%options, 'alt|a', 'code', 'color|c', 'help|h', 'indent|i=i',
11f72409 81 'loose|l', 'margin|left-margin|m=i', 'overstrike|o',
bc9c7511 82 'quotes|q=s', 'sentence|s', 'stderr', 'termcap|t', 'width|w=i')
83 or exit 1;
6055f9d4 84pod2usage (1) if $options{help};
85
86# Figure out what formatter we're going to use. -c overrides -t.
87my $formatter = 'Pod::Text';
88if ($options{color}) {
89 $formatter = 'Pod::Text::Color';
9741dab0 90 eval { require Term::ANSIColor };
91 if ($@) { die "-c (--color) requires Term::ANSIColor be installed\n" }
6055f9d4 92 require Pod::Text::Color;
93} elsif ($options{termcap}) {
94 $formatter = 'Pod::Text::Termcap';
95 require Pod::Text::Termcap;
73849855 96} elsif ($options{overstrike}) {
97 $formatter = 'Pod::Text::Overstrike';
98 require Pod::Text::Overstrike;
cb1a09d0 99}
73849855 100delete @options{'color', 'termcap', 'overstrike'};
6055f9d4 101
102# Initialize and run the formatter.
8f202758 103my $parser = $formatter->new (%options);
b7ae008f 104do {
b7ae008f 105 my ($input, $output) = splice (@ARGV, 0, 2);
8f202758 106 $parser->parse_from_file ($input, $output);
b7ae008f 107} while (@ARGV);
6055f9d4 108
109__END__
110
111=head1 NAME
112
113pod2text - Convert POD data to formatted ASCII text
114
0e4e3f6e 115=for stopwords
bc9c7511 116-aclost --alt --stderr Allbery
0e4e3f6e 117
6055f9d4 118=head1 SYNOPSIS
119
59548eca 120pod2text [B<-aclost>] [B<--code>] [B<-i> I<indent>] S<[B<-q> I<quotes>]>
bc9c7511 121 [B<--stderr>] S<[B<-w> I<width>]> [I<input> [I<output> ...]]
6055f9d4 122
123pod2text B<-h>
124
125=head1 DESCRIPTION
126
9741dab0 127B<pod2text> is a front-end for Pod::Text and its subclasses. It uses them
128to generate formatted ASCII text from POD source. It can optionally use
129either termcap sequences or ANSI color escape sequences to format the text.
6055f9d4 130
131I<input> is the file to read for POD source (the POD can be embedded in
0e4e3f6e 132code). If I<input> isn't given, it defaults to C<STDIN>. I<output>, if
133given, is the file to which to write the formatted output. If I<output>
134isn't given, the formatted output is written to C<STDOUT>. Several POD
135files can be processed in the same B<pod2text> invocation (saving module
136load and compile times) by providing multiple pairs of I<input> and
137I<output> files on the command line.
6055f9d4 138
139=head1 OPTIONS
140
141=over 4
142
143=item B<-a>, B<--alt>
144
145Use an alternate output format that, among other things, uses a different
146heading style and marks C<=item> entries with a colon in the left margin.
147
59548eca 148=item B<--code>
149
150Include any non-POD text from the input file in the output as well. Useful
151for viewing code documented with POD blocks with the POD rendered and the
152code left intact.
153
6055f9d4 154=item B<-c>, B<--color>
155
156Format the output with ANSI color escape sequences. Using this option
157requires that Term::ANSIColor be installed on your system.
158
159=item B<-i> I<indent>, B<--indent=>I<indent>
160
161Set the number of spaces to indent regular text, and the default indentation
162for C<=over> blocks. Defaults to 4 spaces if this option isn't given.
163
9741dab0 164=item B<-h>, B<--help>
165
166Print out usage information and exit.
167
6055f9d4 168=item B<-l>, B<--loose>
169
170Print a blank line after a C<=head1> heading. Normally, no blank line is
9741dab0 171printed after C<=head1>, although one is still printed after C<=head2>,
172because this is the expected formatting for manual pages; if you're
173formatting arbitrary text documents, using this option is recommended.
6055f9d4 174
11f72409 175=item B<-m> I<width>, B<--left-margin>=I<width>, B<--margin>=I<width>
176
177The width of the left margin in spaces. Defaults to 0. This is the margin
178for all text, including headings, not the amount by which regular text is
179indented; for the latter, see B<-i> option.
180
73849855 181=item B<-o>, B<--overstrike>
182
0e4e3f6e 183Format the output with overstrike printing. Bold text is rendered as
73849855 184character, backspace, character. Italics and file names are rendered as
185underscore, backspace, character. Many pagers, such as B<less>, know how
186to convert this to bold or underlined text.
187
ab1f1d91 188=item B<-q> I<quotes>, B<--quotes>=I<quotes>
189
190Sets the quote marks used to surround CE<lt>> text to I<quotes>. If
191I<quotes> is a single character, it is used as both the left and right
192quote; if I<quotes> is two characters, the first character is used as the
193left quote and the second as the right quoted; and if I<quotes> is four
194characters, the first two are used as the left quote and the second two as
195the right quote.
196
197I<quotes> may also be set to the special value C<none>, in which case no
198quote marks are added around CE<lt>> text.
199
6055f9d4 200=item B<-s>, B<--sentence>
201
9741dab0 202Assume each sentence ends with two spaces and try to preserve that spacing.
6055f9d4 203Without this option, all consecutive whitespace in non-verbatim paragraphs
204is compressed into a single space.
205
bc9c7511 206=item B<--stderr>
207
208By default, B<pod2text> puts any errors detected in the POD input in a POD
209ERRORS section in the output manual page. If B<--stderr> is given, errors
210are sent to standard error instead and the POD ERRORS section is
211suppressed.
212
6055f9d4 213=item B<-t>, B<--termcap>
214
215Try to determine the width of the screen and the bold and underline
216sequences for the terminal from termcap, and use that information in
217formatting the output. Output will be wrapped at two columns less than the
218width of your terminal device. Using this option requires that your system
46bce7d0 219have a termcap file somewhere where Term::Cap can find it and requires that
220your system support termios. With this option, the output of B<pod2text>
221will contain terminal control sequences for your current terminal type.
6055f9d4 222
223=item B<-w>, B<--width=>I<width>, B<->I<width>
224
225The column at which to wrap text on the right-hand side. Defaults to 76,
226unless B<-t> is given, in which case it's two columns less than the width of
227your terminal device.
228
229=back
230
9741dab0 231=head1 DIAGNOSTICS
232
b7ae008f 233If B<pod2text> fails with errors, see L<Pod::Text> and L<Pod::Simple> for
9741dab0 234information about what those errors might mean. Internally, it can also
235produce the following diagnostics:
236
237=over 4
238
239=item -c (--color) requires Term::ANSIColor be installed
240
241(F) B<-c> or B<--color> were given, but Term::ANSIColor could not be
242loaded.
243
244=item Unknown option: %s
245
246(F) An unknown command line option was given.
247
248=back
249
b7ae008f 250In addition, other L<Getopt::Long> error messages may result from invalid
251command-line options.
9741dab0 252
6055f9d4 253=head1 ENVIRONMENT
254
255=over 4
256
257=item COLUMNS
258
259If B<-t> is given, B<pod2text> will take the current width of your screen
260from this environment variable, if available. It overrides terminal width
261information in TERMCAP.
262
263=item TERMCAP
264
265If B<-t> is given, B<pod2text> will use the contents of this environment
266variable if available to determine the correct formatting sequences for your
267current terminal device.
268
269=back
270
6055f9d4 271=head1 SEE ALSO
272
fd20da51 273L<Pod::Text>, L<Pod::Text::Color>, L<Pod::Text::Overstrike>,
b7ae008f 274L<Pod::Text::Termcap>, L<Pod::Simple>
fd20da51 275
276The current version of this script is always available from its web site at
277L<http://www.eyrie.org/~eagle/software/podlators/>. It is also part of the
278Perl core distribution as of 5.6.0.
6055f9d4 279
280=head1 AUTHOR
281
3c014959 282Russ Allbery <rra@stanford.edu>.
283
284=head1 COPYRIGHT AND LICENSE
285
0e4e3f6e 286Copyright 1999, 2000, 2001, 2004, 2006, 2008 Russ Allbery
287<rra@stanford.edu>.
3c014959 288
289This program is free software; you may redistribute it and/or modify it
290under the same terms as Perl itself.
cb1a09d0 291
6055f9d4 292=cut
c07a80fd 293!NO!SUBS!
cb1a09d0 294
c07a80fd 295close OUT or die "Can't close $file: $!";
296chmod 0755, $file or die "Can't reset permissions for $file: $!\n";
297exec("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';
3b5ca523 298chdir $origdir;