Once again syncing after too long an absence
[p5sagit/p5-mst-13.2.git] / pod / pod2man.PL
CommitLineData
4633a7c4 1#!/usr/local/bin/perl
2
3use Config;
4use File::Basename qw(&basename &dirname);
3b5ca523 5use Cwd;
4633a7c4 6
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}.
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);
18$file = basename($0, '.PL');
774d564b 19$file .= '.com' if $^O eq 'VMS';
4633a7c4 20
21open OUT,">$file" or die "Can't create $file: $!";
22
23print "Extracting $file (with variable substitutions)\n";
24
25# In this section, perl variables will be expanded during extraction.
26# You can use $Config{...} to use Configure variables.
27
28print OUT <<"!GROK!THIS!";
5f05dabc 29$Config{startperl}
30 eval 'exec $Config{perlpath} -S \$0 \${1+"\$@"}'
146174a9 31 if \$running_under_some_shell;
5d94fbed 32!GROK!THIS!
33
4633a7c4 34# In the following, perl variables are not expanded during extraction.
35
36print OUT <<'!NO!SUBS!';
cb1a09d0 37
146174a9 38# pod2man -- Convert POD data to formatted *roff input.
0e06870b 39# $Id: pod2man.PL,v 1.4 2000/11/19 05:47:46 eagle Exp $
146174a9 40#
ee8c7f54 41# Copyright 1999, 2000 by Russ Allbery <rra@stanford.edu>
146174a9 42#
43# This program is free software; you can redistribute it and/or modify it
44# under the same terms as Perl itself.
146174a9 45
46require 5.004;
47
48use Getopt::Long qw(GetOptions);
49use Pod::Man ();
50use Pod::Usage qw(pod2usage);
51
52use strict;
ee8c7f54 53
54# Insert -- into @ARGV before any single dash argument to hide it from
55# Getopt::Long; we want to interpret it as meaning stdin (which Pod::Parser
56# does correctly).
57my $stdin;
58@ARGV = map { $_ eq '-' && !$stdin++ ? ('--', $_) : $_ } @ARGV;
146174a9 59
60# Parse our options, trying to retain backwards compatibility with pod2man
61# but allowing short forms as well. --lax is currently ignored.
62my %options;
ee8c7f54 63Getopt::Long::config ('bundling_override');
146174a9 64GetOptions (\%options, 'section|s=s', 'release|r=s', 'center|c=s',
65 'date|d=s', 'fixed=s', 'fixedbold=s', 'fixeditalic=s',
22d4bb9c 66 'fixedbolditalic=s', 'official|o', 'quotes|q=s', 'lax|l',
67 'help|h') or exit 1;
146174a9 68pod2usage (0) if $options{help};
69
70# Official sets --center, but don't override things explicitly set.
71if ($options{official} && !defined $options{center}) {
72 $options{center} = 'Perl Programmers Reference Guide';
73}
cb1a09d0 74
0e06870b 75# Initialize and run the formatter, pulling a pair of input and output off
76# at a time.
146174a9 77my $parser = Pod::Man->new (%options);
0e06870b 78my @files;
79do {
80 @files = splice (@ARGV, 0, 2);
81 $parser->parse_from_file (@files);
82} while (@ARGV);
83
146174a9 84__END__
cb1a09d0 85
146174a9 86=head1 NAME
cb1a09d0 87
146174a9 88pod2man - Convert POD data to formatted *roff input
cb1a09d0 89
146174a9 90=head1 SYNOPSIS
cb1a09d0 91
ee8c7f54 92pod2man [B<--section>=I<manext>] [B<--release>=I<version>]
146174a9 93[B<--center>=I<string>] [B<--date>=I<string>] [B<--fixed>=I<font>]
94[B<--fixedbold>=I<font>] [B<--fixeditalic>=I<font>]
22d4bb9c 95[B<--fixedbolditalic>=I<font>] [B<--official>] [B<--lax>]
0e06870b 96[B<--quotes>=I<quotes>] [I<input> [I<output>] ...]
cb1a09d0 97
ee8c7f54 98pod2man B<--help>
cb1a09d0 99
146174a9 100=head1 DESCRIPTION
cb1a09d0 101
146174a9 102B<pod2man> is a front-end for Pod::Man, using it to generate *roff input
103from POD source. The resulting *roff code is suitable for display on a
104terminal using nroff(1), normally via man(1), or printing using troff(1).
105
106I<input> is the file to read for POD source (the POD can be embedded in
107code). If I<input> isn't given, it defaults to STDIN. I<output>, if given,
108is the file to which to write the formatted output. If I<output> isn't
0e06870b 109given, the formatted output is written to STDOUT. Several POD files can be
110processed in the same B<pod2man> invocation (saving module load and compile
111times) by providing multiple pairs of I<input> and I<output> files on the
112command line.
146174a9 113
114B<--section>, B<--release>, B<--center>, B<--date>, and B<--official> can be
115used to set the headers and footers to use; if not given, Pod::Man will
116assume various defaults. See below or L<Pod::Man> for details.
117
118B<pod2man> assumes that your *roff formatters have a fixed-width font named
119CW. If yours is called something else (like CR), use B<--fixed> to specify
120it. This generally only matters for troff output for printing. Similarly,
121you can set the fonts used for bold, italic, and bold italic fixed-width
122output.
123
124Besides the obvious pod conversions, Pod::Man, and therefore pod2man also
125takes care of formatting func(), func(n), and simple variable references
126like $foo or @bar so you don't have to use code escapes for them; complex
127expressions like C<$fred{'stuff'}> will still need to be escaped, though.
128It also translates dashes that aren't used as hyphens into en dashes, makes
129long dashes--like this--into proper em dashes, fixes "paired quotes," and
130takes care of several other troff-specific tweaks. See L<Pod::Man> for
131complete information.
cb1a09d0 132
146174a9 133=head1 OPTIONS
cb1a09d0 134
146174a9 135=over 4
cb1a09d0 136
146174a9 137=item B<-c> I<string>, B<--center>=I<string>
cb1a09d0 138
146174a9 139Sets the centered page header to I<string>. The default is "User
140Contributed Perl Documentation", but also see B<--official> below.
cb1a09d0 141
146174a9 142=item B<-d> I<string>, B<--date>=I<string>
cb1a09d0 143
146174a9 144Set the left-hand footer string to this value. By default, the modification
145date of the input file will be used, or the current date if input comes from
146STDIN.
cb1a09d0 147
146174a9 148=item B<--fixed>=I<font>
cb1a09d0 149
146174a9 150The fixed-width font to use for vertabim text and code. Defaults to CW.
151Some systems may want CR instead. Only matters for troff(1) output.
cb1a09d0 152
146174a9 153=item B<--fixedbold>=I<font>
cb1a09d0 154
146174a9 155Bold version of the fixed-width font. Defaults to CB. Only matters for
156troff(1) output.
cb1a09d0 157
146174a9 158=item B<--fixeditalic>=I<font>
cb1a09d0 159
146174a9 160Italic version of the fixed-width font (actually, something of a misnomer,
161since most fixed-width fonts only have an oblique version, not an italic
162version). Defaults to CI. Only matters for troff(1) output.
cb1a09d0 163
146174a9 164=item B<--fixedbolditalic>=I<font>
cb1a09d0 165
146174a9 166Bold italic (probably actually oblique) version of the fixed-width font.
167Pod::Man doesn't assume you have this, and defaults to CB. Some systems
168(such as Solaris) have this font available as CX. Only matters for troff(1)
169output.
cb1a09d0 170
146174a9 171=item B<-h>, B<--help>
cb1a09d0 172
146174a9 173Print out usage information.
cb1a09d0 174
146174a9 175=item B<-l>, B<--lax>
cb1a09d0 176
146174a9 177Don't complain when required sections are missing. Not currently used, as
178POD checking functionality is not yet implemented in Pod::Man.
cb1a09d0 179
146174a9 180=item B<-o>, B<--official>
cb1a09d0 181
146174a9 182Set the default header to indicate that this page is part of the standard
183Perl release, if B<--center> is not also given.
cb1a09d0 184
22d4bb9c 185=item B<-q> I<quotes>, B<--quotes>=I<quotes>
186
187Sets the quote marks used to surround CE<lt>> text to I<quotes>. If
188I<quotes> is a single character, it is used as both the left and right
189quote; if I<quotes> is two characters, the first character is used as the
190left quote and the second as the right quoted; and if I<quotes> is four
191characters, the first two are used as the left quote and the second two as
192the right quote.
193
194I<quotes> may also be set to the special value C<none>, in which case no
195quote marks are added around CE<lt>> text (but the font is still changed for
196troff output).
197
146174a9 198=item B<-r>, B<--release>
cb1a09d0 199
146174a9 200Set the centered footer. By default, this is the version of Perl you run
201B<pod2man> under. Note that some system an macro sets assume that the
202centered footer will be a modification date and will prepend something like
203"Last modified: "; if this is the case, you may want to set B<--release> to
204the last modified date and B<--date> to the version number.
cb1a09d0 205
146174a9 206=item B<-s>, B<--section>
cb1a09d0 207
146174a9 208Set the section for the C<.TH> macro. The standard section numbering
209convention is to use 1 for user commands, 2 for system calls, 3 for
210functions, 4 for devices, 5 for file formats, 6 for games, 7 for
211miscellaneous information, and 8 for administrator commands. There is a lot
212of variation here, however; some systems (like Solaris) use 4 for file
213formats, 5 for miscellaneous information, and 7 for devices. Still others
214use 1m instead of 8, or some mix of both. About the only section numbers
215that are reliably consistent are 1, 2, and 3.
cb1a09d0 216
146174a9 217By default, section 1 will be used unless the file ends in .pm in which case
218section 3 will be selected.
cb1a09d0 219
146174a9 220=back
cb1a09d0 221
146174a9 222=head1 DIAGNOSTICS
cb1a09d0 223
146174a9 224If B<pod2man> fails with errors, see L<Pod::Man> and L<Pod::Parser> for
225information about what those errors might mean.
cb1a09d0 226
227=head1 EXAMPLES
228
229 pod2man program > program.1
146174a9 230 pod2man SomeModule.pm /usr/perl/man/man3/SomeModule.3
cb1a09d0 231 pod2man --section=7 note.pod > note.7
232
146174a9 233If you would like to print out a lot of man page continuously, you probably
234want to set the C and D registers to set contiguous page numbering and
235even/odd paging, at least on some versions of man(7).
cb1a09d0 236
146174a9 237 troff -man -rC1 -rD1 perl.1 perldata.1 perlsyn.1 ...
cb1a09d0 238
146174a9 239To get index entries on stderr, turn on the F register, as in:
cb1a09d0 240
146174a9 241 troff -man -rF1 perl.1
cb1a09d0 242
146174a9 243The indexing merely outputs messages via C<.tm> for each major page,
244section, subsection, item, and any C<XE<lt>E<gt>> directives. See
245L<Pod::Man> for more details.
cb1a09d0 246
146174a9 247=head1 BUGS
cb1a09d0 248
146174a9 249Lots of this documentation is duplicated from L<Pod::Man>.
cb1a09d0 250
146174a9 251POD checking and the corresponding B<--lax> option don't work yet.
cb1a09d0 252
146174a9 253=head1 NOTES
cb1a09d0 254
146174a9 255For those not sure of the proper layout of a man page, here are some notes
256on writing a proper man page.
cb1a09d0 257
146174a9 258The name of the program being documented is conventionally written in bold
259(using BE<lt>E<gt>) wherever it occurs, as are all program options.
260Arguments should be written in italics (IE<lt>E<gt>). Functions are
261traditionally written in italics; if you write a function as function(),
262Pod::Man will take care of this for you. Literal code or commands should
263be in CE<lt>E<gt>. References to other man pages should be in the form
264C<manpage(section)>, and Pod::Man will automatically format those
265appropriately. As an exception, it's traditional not to use this form when
266referring to module documentation; use C<LE<lt>Module::NameE<gt>> instead.
cb1a09d0 267
146174a9 268References to other programs or functions are normally in the form of man
269page references so that cross-referencing tools can provide the user with
270links and the like. It's possible to overdo this, though, so be careful not
271to clutter your documentation with too much markup.
cb1a09d0 272
146174a9 273The major headers should be set out using a C<=head1> directive, and are
274historically written in the rather startling ALL UPPER CASE format, although
275this is not mandatory. Minor headers may be included using C<=head2>, and
276are typically in mixed case.
cb1a09d0 277
146174a9 278The standard sections of a manual page are:
cb1a09d0 279
146174a9 280=over 4
cb1a09d0 281
146174a9 282=item NAME
cb1a09d0 283
146174a9 284Mandatory section; should be a comma-separated list of programs or functions
285documented by this podpage, such as:
cb1a09d0 286
146174a9 287 foo, bar - programs to do something
cb1a09d0 288
146174a9 289Manual page indexers are often extremely picky about the format of this
290section, so don't put anything in it except this line. A single dash, and
291only a single dash, should separate the list of programs or functions from
292the description. Functions should not be qualified with C<()> or the like.
293The description should ideally fit on a single line, even if a man program
294replaces the dash with a few tabs.
cb1a09d0 295
146174a9 296=item SYNOPSIS
cb1a09d0 297
146174a9 298A short usage summary for programs and functions. This section is mandatory
299for section 3 pages.
cb1a09d0 300
146174a9 301=item DESCRIPTION
cb1a09d0 302
146174a9 303Extended description and discussion of the program or functions, or the body
304of the documentation for man pages that document something else. If
305particularly long, it's a good idea to break this up into subsections
306C<=head2> directives like:
cb1a09d0 307
146174a9 308 =head2 Normal Usage
cb1a09d0 309
146174a9 310 =head2 Advanced Features
cb1a09d0 311
146174a9 312 =head2 Writing Configuration Files
cb1a09d0 313
146174a9 314or whatever is appropriate for your documentation.
cb1a09d0 315
146174a9 316=item OPTIONS
cb1a09d0 317
146174a9 318Detailed description of each of the command-line options taken by the
319program. This should be separate from the description for the use of things
320like L<Pod::Usage|Pod::Usage>. This is normally presented as a list, with
321each option as a separate C<=item>. The specific option string should be
322enclosed in BE<lt>E<gt>. Any values that the option takes should be
323enclosed in IE<lt>E<gt>. For example, the section for the option
324B<--section>=I<manext> would be introduced with:
cb1a09d0 325
146174a9 326 =item B<--section>=I<manext>
cb1a09d0 327
146174a9 328Synonymous options (like both the short and long forms) are separated by a
329comma and a space on the same C<=item> line, or optionally listed as their
330own item with a reference to the canonical name. For example, since
331B<--section> can also be written as B<-s>, the above would be:
cb1a09d0 332
146174a9 333 =item B<-s> I<manext>, B<--section>=I<manext>
cb1a09d0 334
146174a9 335(Writing the short option first is arguably easier to read, since the long
336option is long enough to draw the eye to it anyway and the short option can
337otherwise get lost in visual noise.)
cb1a09d0 338
146174a9 339=item RETURN VALUE
cb1a09d0 340
146174a9 341What the program or function returns, if successful. This section can be
342omitted for programs whose precise exit codes aren't important, provided
343they return 0 on success as is standard. It should always be present for
344functions.
a0d0e21e 345
146174a9 346=item ERRORS
a0d0e21e 347
ee8c7f54 348Exceptions, error return codes, exit statuses, and errno settings.
349Typically used for function documentation; program documentation uses
350DIAGNOSTICS instead. The general rule of thumb is that errors printed to
351STDOUT or STDERR and intended for the end user are documented in DIAGNOSTICS
352while errors passed internal to the calling program and intended for other
146174a9 353programmers are documented in ERRORS. When documenting a function that sets
354errno, a full list of the possible errno values should be given here.
cb1a09d0 355
146174a9 356=item DIAGNOSTICS
cb1a09d0 357
146174a9 358All possible messages the program can print out--and what they mean. You
359may wish to follow the same documentation style as the Perl documentation;
360see perldiag(1) for more details (and look at the POD source as well).
cb1a09d0 361
146174a9 362If applicable, please include details on what the user should do to correct
363the error; documenting an error as indicating "the input buffer is too
364small" without telling the user how to increase the size of the input buffer
365(or at least telling them that it isn't possible) aren't very useful.
cb1a09d0 366
146174a9 367=item EXAMPLES
cb1a09d0 368
146174a9 369Give some example uses of the program or function. Don't skimp; users often
370find this the most useful part of the documentation. The examples are
371generally given as verbatim paragraphs.
cb1a09d0 372
146174a9 373Don't just present an example without explaining what it does. Adding a
374short paragraph saying what the example will do can increase the value of
375the example immensely.
cb1a09d0 376
146174a9 377=item ENVIRONMENT
cb1a09d0 378
146174a9 379Environment variables that the program cares about, normally presented as a
380list using C<=over>, C<=item>, and C<=back>. For example:
cb1a09d0 381
146174a9 382 =over 6
a0d0e21e 383
146174a9 384 =item HOME
bbc6b0c7 385
146174a9 386 Used to determine the user's home directory. F<.foorc> in this
387 directory is read for configuration details, if it exists.
cb1a09d0 388
146174a9 389 =back
cb1a09d0 390
146174a9 391Since environment variables are normally in all uppercase, no additional
392special formatting is generally needed; they're glaring enough as it is.
a0d0e21e 393
146174a9 394=item FILES
a0d0e21e 395
146174a9 396All files used by the program or function, normally presented as a list, and
397what it uses them for. File names should be enclosed in FE<lt>E<gt>. It's
398particularly important to document files that will be potentially modified.
a0d0e21e 399
146174a9 400=item CAVEATS
cb1a09d0 401
146174a9 402Things to take special care with, sometimes called WARNINGS.
1c98b8f6 403
146174a9 404=item BUGS
cb1a09d0 405
146174a9 406Things that are broken or just don't work quite right.
a0d0e21e 407
146174a9 408=item RESTRICTIONS
a0d0e21e 409
146174a9 410Bugs you don't plan to fix. :-)
a0d0e21e 411
146174a9 412=item NOTES
a0d0e21e 413
146174a9 414Miscellaneous commentary.
a0d0e21e 415
146174a9 416=item SEE ALSO
cb1a09d0 417
146174a9 418Other man pages to check out, like man(1), man(7), makewhatis(8), or
419catman(8). Normally a simple list of man pages separated by commas, or a
420paragraph giving the name of a reference work. Man page references, if they
421use the standard C<name(section)> form, don't have to be enclosed in
422LE<lt>E<gt>, but other things in this section probably should be when
423appropriate. You may need to use the C<LE<lt>...|...E<gt>> syntax to keep
424B<pod2man> and B<pod2text> from being too verbose; see perlpod(1).
a0d0e21e 425
146174a9 426If the package has a web site, include a URL here.
a0d0e21e 427
146174a9 428=item AUTHOR
a0d0e21e 429
146174a9 430Who wrote it (use AUTHORS for multiple people). Including your current
431e-mail address (or some e-mail address to which bug reports should be sent)
432so that users have a way of contacting you is a good idea. Remember that
433program documentation tends to roam the wild for far longer than you expect
434and pick an e-mail address that's likely to last if possible.
a0d0e21e 435
146174a9 436=item HISTORY
a0d0e21e 437
146174a9 438Programs derived from other sources sometimes have this, or you might keep a
439modification log here.
a0d0e21e 440
146174a9 441=back
442
443In addition, some systems use CONFORMING TO to note conformance to relevant
444standards and MT-LEVEL to note safeness for use in threaded programs or
445signal handlers. These headings are primarily useful when documenting parts
446of a C library. Documentation of object-oriented libraries or modules may
447use CONSTRUCTORS and METHODS sections for detailed documentation of the
448parts of the library and save the DESCRIPTION section for an overview; other
449large modules may use FUNCTIONS for similar reasons. Some people use
450OVERVIEW to summarize the description if it's quite long. Sometimes there's
451an additional COPYRIGHT section at the bottom, for licensing terms.
452AVAILABILITY is sometimes added, giving the canonical download site for the
453software or a URL for updates.
454
455Section ordering varies, although NAME should I<always> be the first section
456(you'll break some man page systems otherwise), and NAME, SYNOPSIS,
457DESCRIPTION, and OPTIONS generally always occur first and in that order if
458present. In general, SEE ALSO, AUTHOR, and similar material should be left
459for last. Some systems also move WARNINGS and NOTES to last. The order
460given above should be reasonable for most purposes.
461
462Finally, as a general note, try not to use an excessive amount of markup.
463As documented here and in L<Pod::Man>, you can safely leave Perl variables,
464function names, man page references, and the like unadorned by markup and
465the POD translators will figure it out for you. This makes it much easier
466to later edit the documentation. Note that many existing translators
467(including this one currently) will do the wrong thing with e-mail addresses
468or URLs when wrapped in LE<lt>E<gt>, so don't do that.
469
470For additional information that may be more accurate for your specific
471system, see either man(5) or man(7) depending on your system manual section
472numbering conventions.
473
474=head1 SEE ALSO
475
476L<Pod::Man|Pod::Man>, L<Pod::Parser|Pod::Parser>, man(1), nroff(1),
477troff(1), man(7)
478
479The man page documenting the an macro set may be man(5) instead of man(7) on
480your system.
481
482=head1 AUTHOR
483
484Russ Allbery E<lt>rra@stanford.eduE<gt>, based I<very> heavily on the
485original B<pod2man> by Larry Wall and Tom Christiansen. Large portions of
486this documentation, particularly the sections on the anatomy of a proper man
487page, are taken from the B<pod2man> documentation by Tom.
cb1a09d0 488
146174a9 489=cut
5d94fbed 490!NO!SUBS!
ee8c7f54 491#'# (cperl-mode)
4633a7c4 492
493close OUT or die "Can't close $file: $!";
494chmod 0755, $file or die "Can't reset permissions for $file: $!\n";
495exec("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';
3b5ca523 496chdir $origdir;