blob: 10fd6afb1112e922eabd4ab19315658752a0e5b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#!/usr/bin/perl
BEGIN { push @INC, '../lib' } # If you haven't installed perl yet.
use Pod::Functions;
local $/ = '';
$level = 0;
$cur = '';
while (<>) {
next unless /^=(?!cut)/ .. /^=cut/;
++$level if /^=over/;
--$level if /^=back/;
# Ignore items that are nested within other items, e.g. don't split on the
# items nested within the pack() and sprintf() items in perlfunc.pod.
if (/=item (\S+)/ and $level == 1) {
my $item = $1;
s/=item //;
$next{$cur} = $item;
$cur = $item;
$syn{$cur} .= $_;
next;
} else {
s,L</,L<perlfunc/,g;
push @{$pod{$cur}}, $_ if $cur;
}
}
for $f ( keys %syn ) {
next unless $Type{$f};
$flavor = $Flavor{$f};
$orig = $f;
($name = $f) =~ s/\W//g;
# deal with several functions sharing a description
$func = $orig;
$func = $next{$func} until $pod{$func};
my $body = join "", @{$pod{$func}};
# deal with unbalanced =over and =back cause by the split
my $has_over = $body =~ /^=over/;
my $has_back = $body =~ /^=back/;
$body =~ s/^=over\s*//m if $has_over and !$has_back;
$body =~ s/^=back\s*//m if $has_back and !$has_over;
open (POD, "> $name.pod") || die "can't open $name.pod: $!";
print POD <<EOF;
\=head1 NAME
$orig - $flavor
\=head1 SYNOPSIS
$syn{$orig}
\=head1 DESCRIPTION
$body
EOF
close POD;
}
|