Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
authoralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 6 Dec 2005 17:00:23 +0000 (17:00 +0000)
committeralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 6 Dec 2005 17:00:23 +0000 (17:00 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1866 48e7efb5-ca39-0410-a469-dd3cf9ba447f

tools/doxygen/toc_create.pl

index 3a74f0d..0eff98d 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 
 #!/usr/bin/perl -w
 
-($#ARGV >= 1) or die "Usage: toc_create.pl <input-tag-file> <output-doc-file>";
+($#ARGV >= 1) or die "Usage: toc_create.pl <input-doc-file> <output-toc-file>";
 
 my(@toc);
 my($level,$label,$name);
 
 my(@toc);
 my($level,$label,$name);
@@ -63,20 +63,3 @@ while($current_level>-1) {
 }
 print OUTPUT "<!-- End of automatically generated table of contents --!>\n";
 
 }
 print OUTPUT "<!-- End of automatically generated table of contents --!>\n";
 
-
-# foreach $type qw(define enumeration enumvalue function typedef) {
-#     if(defined $database{$type}) {
-#      print OUTPUT "<h2>$type</h2> \n  <ul>\n";
-#      foreach $name (sort keys %{$database{$type}}) {
-#          if($type eq "function") {
-#              print OUTPUT "\t<LI> $name()</LI>\n";
-#          } else {
-#              print OUTPUT "\t<LI> #$name</LI>\n";
-#          }
-#      }
-#      print OUTPUT "\n  </ul>\n";
-#     }
-# }
-# print OUTPUT "*/";
-# close OUTPUT;
-