seek$fh, 0, 0 or my_die "Can't rewind file '$file': $!";
local$/ = '';
while(<$fh>) {
s/\r$//;
if(s/^=head1 (NAME)\s*/=head2 /) {
unhead1();
$OUT.= "\n\n=head2 ";
$_= <$fh>;
lastunlessdefined$_;
# Remove svn keyword expansions from the Perl FAQ
s/ \(\$Revision: \d+ \$\)//g;
if( /^\s*\Q$pod\E\b/ ) {
s/$pod\.pm/$pod/; # '.pm' in NAME !?
} else{
s/^/$pod, /;
}
}
elsif(s/^=head1 (.*)/=item $1/) {
unhead2();
$OUT.= "=over 4\n\n"unless$inhead1;
$inhead1= 1;
$_.= "\n";
}
elsif(s/^=head2 (.*)/=item $1/) {
unitem();
$OUT.= "=over 4\n\n"unless$inhead2;
$inhead2= 1;
$_.= "\n";
}
elsif(s/^=item ([^=].*)/$1/) {
nextif$podeq 'perldiag';
s/^\s*\*\s*$// && next;
s/^\s*\*\s*//;
s/\n/ /g;
s/\s+$//;
# make sure inner links include the target page
s{L<(?:[^|>]+\|)?\K/}{$pod/}g;
nextif/^[\d.]+$/;
nextif$podeq 'perlmodlib'&& /^ftp:/;
$OUT.= ", "if$initem;
$initem= 1;
s/\.$//;
s/^-X\b/-I<X>/;
}
else{
unhead1() if/^=cut\s*\n/;
next;
}
$OUT.= $_;
}
}
subunhead1 {
unhead2();
if($inhead1) {
$OUT.= "\n\n=back\n\n";
}
$inhead1= 0;
}
subunhead2 {
unitem();
if($inhead2) {
$OUT.= "\n\n=back\n\n";
}
$inhead2= 0;
}
subunitem {
if($initem) {
$OUT.= "\n\n";
}
$initem= 0;
}
=head1 NAME
pod/buildtoc - Generate table of contents
=head1 DESCRIPTION
This program generates a table of contents for the documentation included in the Perl core distribution. This table of contents takes two forms:
=over 4
=item 1 F<pod/perltoc.pod>
A file in Perl's Plain Old Documentation (POD) format found in the F<pod/> directory in the core distribution. Once Perl is installed, this file becomes accessible system-wide via C<perldoc perltoc>.
=item 2 F<pod/roffitall>
A shell script originally written by Tom Christiansen and Raphael Manfredi, also found in the F<pod/> directory, which can be used to translate Perl documentation into F<man> pages.
=back
=head1 USAGE
This program will typically B<not> need to be called directly by a user. Rather, it is one of the last commands invoked during C<make test_prep>:
./perl -Ilib -I. -f pod/buildtoc -q
The only command-line switch is C<-q|--quiet>, which quiets some non-critical warnings.
=head2 Diagnosing Problems
This program C<require>s F<Porting/pod_lib.pl> and makes use of several subroutines found in that file: C<get_pod_metadata()> and C<pods_to_install()> in particular. Consequently, any warnings or exceptions you see when this program is running may be being passed through from those subroutines. You may have to (a) examine those subroutines and/or (b) run that program from the command-line to fully understand what is causing such warnings or exceptions.
=head2 AUTHORS and MAINTENANCE
This program was introduced into the Perl 5 core distribution by Andy Dougherty, based on earlier work by Tom Christiansen. It is maintained by the Perl 5 Porters.
=cut
# ex: set ts=8 sts=4 sw=4 et:
Keyboard Shortcuts
Global
s
Focus search bar
?
Bring up this help dialog
GitHub
gp
Go to pull requests
gi
go to github issues (only if github is preferred repository)