cd httpd-docs-1.3/apidoc
./mkapidict -l0 -d api.list -o index.html -t api-dict.html -v
only creates HTML files listed in Routine Descriptions
section and doesn't create files like apidoc_apache_sfio.html.
This patch fixes the problem. Is this subject to code
freeze of apache-1.3 and needs three +1? Or can I just
commit it because it's part of documentation?
Index: mkapidict
===================================================================
RCS file: /home/cvspublic/httpd-docs-1.3/apidoc/mkapidict,v
retrieving revision 1.16
diff -u -r1.16 mkapidict
--- mkapidict 2000/09/18 01:58:02 1.16
+++ mkapidict 2001/02/28 10:55:52
@@ -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;
--
Yoshiki Hayashi