2 # Script for formatting documentation from definition lists
3 # (they get out of extract-doc.pl as a side-product).
4 # (c) 2008 Michal Vaner <vorner@ucw.cz>
11 open OUT, ">$out" or die "Could not write output $out ($!)\n";
12 open HEAD, $head or die "Could not open head $head ($!)\n";
13 print OUT foreach( <HEAD> );
17 $dir =~ s/\/[^\/]+$//;
21 while( defined( my $line = <> ) ) {
23 push @dump, [ split /,/, $line, 5 ];
27 [ 'enum', 'Enumerations' ],
28 [ 'struct', 'Structures' ],
30 [ 'fun', 'Functions' ],
31 [ 'var', 'Variables' ],
32 [ 'def', 'Preprocessor definitions' ]
35 my( $index, %groups, %heads ) = ( 0 );
38 my( $name, $value ) = @{$_};
39 $groups{$name} = ++ $index;
40 $heads{$name} = $value;
45 foreach( sort { ( $groups{$a->[2]} <=> $groups{$b->[2]} ) or ( $a->[3] cmp $b->[3] ); } @dump ) {
46 my( $file, $anchor, $type, $name, $text ) = @{$_};
47 if( $lasttype ne $type ) {
49 print OUT "\n== $heads{$type} [[$type]]\n\n";
52 while( shift @{[ $dircp =~ /([^\/]+)/, "//" ]} eq shift @{[ $file =~ /([^\/]+)/, "///" ]} ) {
53 $dircp =~ s/[^\/]+\/?//;
54 $file =~ s/[^\/]+\/?//;
56 $dircp =~ s/[^\/]+/../g;
57 $file = $dircp."/".$file;
59 $file =~ s/\.[^.]+$//;
60 $text =~ s/(\.\.\.|\*|'|#|_)/\\$1/g;
61 print OUT "<<$file:$anchor,`$name`>>:: `$text`\n";