ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/pod/genhelp.pl
Revision: 1.1
Committed: Fri Sep 8 01:54:26 2006 UTC (17 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Log Message:
version 2 :)

File Contents

# Content
1 #!/usr/bin/perl
2
3 # $Id$
4
5 use strict;
6 use warnings;
7 use Pod::POM;
8 use Pod::POM::View::Text;
9
10 my $pom = Pod::POM->new();
11 my $pod = $pom->parse_file($ARGV[0]);
12
13 foreach my $head1 (grep { /Listing/ } $pod->head1()) {
14 my $i = 0;
15 my @command;
16 foreach my $head2 ($head1->head2) {
17 ($command[$i], undef) = split ' ', $head2->title;
18 if ($command[$i] =~ /^X</) {
19 (undef, $command[$i]) = split '>', $command[$i];
20 }
21 open (HELP, ">help/".$command[$i]);
22 my $content = $head2->present('Pod::POM::View::Text');
23 print HELP $content;
24 close HELP;
25 $i++;
26 }
27 }