Update the module index support to use the changed field separator for the

input file to buildindex.py.
This commit is contained in:
Fred Drake 1998-04-11 05:21:14 +00:00
parent e5cf53ad89
commit 9d4b6c52c3
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ sub top_navigation_panel {
}
sub bot_navigation_panel {
"<div class=navigation><hr>"
"<p>\n<div class=navigation><hr>"
. &make_nav_panel
. "</div>"
}
@ -115,7 +115,7 @@ sub add_module_idx{
open(MODIDXFILE, ">modindex.dat") || die "\n$!\n";
foreach $key (keys %Modules) {
# dump the line in the data file; just use a dummy seqno field
print MODIDXFILE "$Modules{$key}\0$key###\n";
print MODIDXFILE "$Modules{$key}" . $IDXFILE_FIELD_SEP . "$key###\n";
}
close(MODIDXFILE);
$index = `$myrootdir/tools/buildindex.py modindex.dat`;