blob: 96cfcd8faa26f262af7a150c61e24317c4a09bdb (
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
 | #!/usr/bin/perl
use Getopt::Long;
my $prefix = '';
GetOptions( 'prefix=s' => \$prefix ) || die "Wrong options\n";
$file = $ARGV[0];
open(FILE, "$file") || die "File not found: $file\n";
print "<conceptindex>\n";
$ingroup = 0;
while (<FILE>) {
      if (/\<dt\>\<a href=\'(.+)'\>(.+)\<\/a\>/) {
#              print "Index: $1, $2, $ingroup\n";
               if ($ingroup) {
                       $name = "$ingroup, $2";
               } else {
                       $name = $2;
               }
               $url = "$prefix/$1";
               print "<entry name=\"$name\" url=\"$url\"/>\n";
      } elsif (/\<dt\>(.+)/) {
#              print "Ingroup: $1\n";
              $ingroup = $1;
      } elsif (/\s+\<\/dl>/) {
              $ingroup = 0;
      }
}
print "</conceptindex>\n";
close(FILE);
sub dehtml
{
        my ( $str ) = @_;
        $str =~ s/\<CODE\>//g;
        $str =~ s/\<\/CODE\>//g;
        $str =~ s/\<TT\>//g;
        $str =~ s/\<\/TT\>//g;
        return $str;
}
# Local Variables:
# mode: perl
# fill-column: 120
# End:
 |