root/library/doc/toolbox_doc/classnames2files.pl @ 987

Revision 987, 0.5 kB (checked in by miro, 14 years ago)

tools for automatic extraction of toolbox_doc out of doxygen doc

  • Property svn:executable set to *
Line 
1#!/usr/bin/perl -w
2
3use strict;
4use warnings;
5
6use English qw( -no_match_vars );
7use Carp;
8
9while (<>) {
10    my $filename = $_;
11    $filename =~ s/ *(.*?) */$1/; #trim
12    $filename =~ s/bdm::/classbdm_1_1/;
13    $filename =~ s/$/.html/;
14    print "html/" . $filename;
15}
16
17
18__END__
19
20=head1 NAME
21
22filename.pl -- one line description
23
24=head1 USAGE
25
26./filename.pl [options]
27
28Options:
29
30=over
31
32=item C<--option>
33
34Option description
35
36=back
37
38=head1 DESCRIPTION
39
40=head1 DEPENDENCIES
41
42=head1 AUTHOR
43
44Miroslav Tynovsky
45
46=cut
47
Note: See TracBrowser for help on using the browser.