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 ];
34 foreach( sort { ( $groups{$a->[2]} <=> $groups{$b->[2]} ) or ( $a->[3] cmp $b->[3] ); } @dump ) {
35 my( $file, $num, $type, $name, $text ) = @{$_};
37 while( shift @{[ $dircp =~ /([^\/]+)/, "//" ]} eq shift @{[ $file =~ /([^\/]+)/, "///" ]} ) {
38 $dircp =~ s/[^\/]+\/?//;
39 $file =~ s/[^\/]+\/?//;
41 $dircp =~ s/[^\/]+/../g;
42 $file = $dircp."/".$file;
44 $file =~ s/\.[^.]+$//;
45 $text =~ s/\(/!!PARENT_OPEN!!/g;
46 print OUT "- <<$file:auto_$num,`$text`>>\n";