yoshiki 01/02/28 18:54:08
Modified: apidoc mkapidict
Log:
Fix the bug not generating HTML files other than Routine Descriptions.
dump_list expects array, not hash.
Revision Changes Path
1.17 +3 -3 httpd-docs-1.3/apidoc/mkapidict
Index: mkapidict
===================================================================
RCS file: /home/cvs/httpd-docs-1.3/apidoc/mkapidict,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- mkapidict 2000/09/18 01:58:02 1.16
+++ mkapidict 2001/03/01 02:54:08 1.17
@@ -207,7 +207,7 @@
&list_items(@keys);
&verbose(($#keys + 1) . " found.");
&verbose("Dumping structures.");
-&dump_list('S', %Structure);
+&dump_list('S', @keys);
print $ofh <<EOHT;
<h2><a name="Cells">Global Data Cells</a></h2>
@@ -219,7 +219,7 @@
&list_items(@keys);
&verbose(($#keys + 1) . " found.");
&verbose("Dumping data cells.");
-&dump_list('D', %Cell);
+&dump_list('D', @keys);
print $ofh <<EOHT;
<h2><a name="Constants">Constant Definitions</a></h2>
@@ -249,7 +249,7 @@
&list_items(@keys);
&verbose(($#keys + 1) . " found.");
&verbose("Dumping constants.");
-&dump_list('C', %Constant);
+&dump_list('C', @keys);
&verbose("Dumping epilogue.");
print $ofh @Epilogue;