NAME
Tk - a graphical user interface toolkit for Perl
SYNOPSIS
DESCRIPTION
The Perl/Tk manual is split up into a number of sections:
END
my
$no_link
= 0;
foreach
my
$cat
(
@cat
)
{
$no_link
= (
$cat
=~ /C Programming/);
POD
"=head2 $cat\n\n=over 4\n\n"
;
foreach
my
$file
(
sort
{
lc
(
$a
) cmp
lc
(
$b
) } @{
$cat
{
$cat
}})
{
my
(
$base
) = fileparse(
$file
,
".(pod|pm)"
);
if
(
$no_link
)
{
POD
"=item *\n\n$base\n\n"
;
}
else
{
my
$mod
=
"Tk::"
.
$base
;
POD
"=item *\n\nL<$mod|$mod>\n\n"
;
}
}
POD
"=back\n\n"
;
}
POD <<END;
AUTHOR
Nick Ing-Simmons