Commit aa3f9fb7 authored by Fred Drake's avatar Fred Drake

By default, use a two-column index.

parent 7cbf462a
......@@ -31,6 +31,9 @@ $BODYTEXT = 'bgcolor="#ffffff"';
$CHILDLINE = "\n<p><hr>\n";
$VERBOSITY = 0;
# default # of columns for the index
$INDEX_COLUMNS = 2;
# A little painful, but lets us clean up the top level directory a little,
# and not be tied to the current directory (as far as I can tell).
......@@ -192,7 +195,7 @@ sub make_index_entry {
sub insert_index{
my($mark,$datafile) = @_;
my $index = `$myrootdir/tools/buildindex.py $datafile`;
my $index = `$myrootdir/tools/buildindex.py --columns $INDEX_COLUMNS $datafile`;
s/$mark/$index/;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment