You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.0 KiB
53 lines
1.0 KiB
#!/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:
|