--- trunk2/all2all.pl 2004/09/11 22:32:06 424 +++ trunk2/all2all.pl 2004/09/14 17:07:59 441 @@ -9,17 +9,36 @@ use strict; use Data::Dumper; use Carp; +use Getopt::Long; use lib './lib'; use WebPAC; use WebPAC::jsFind; use WebPAC::Index; +use WebPAC::Tree; +# options which can be changed via command line +# +my $code_page = 'ISO-8859-2'; +my ($limit_mfn, $start_mfn, $debug, $low_mem); +my $index_path = './out/index'; + +my $result = GetOptions( + "code_page=s" => \$code_page, + "limit_mfn=i" => \$limit_mfn, + "start_mfn=i" => \$start_mfn, + "debug!" => \$debug, + "low_mem!" => \$low_mem, +); + +# create WebPAC object +# my $webpac = new WebPAC( - code_page => 'ISO-8859-2', - limit_mfn => 500, -# debug => 1, -# low_mem => 1, + code_page => $code_page, + limit_mfn => $limit_mfn, + start_mfn => $start_mfn, + debug => $debug, + low_mem => $low_mem, ) || die; my $log = $webpac->_get_logger() || die "can't get logger"; @@ -27,7 +46,7 @@ $log->debug("creating WebPAC::jsFind object"); my $index = new WebPAC::jsFind( - index_path => './out/index', + index_path => $index_path, keys => 10, ) || die; @@ -56,7 +75,7 @@ $webpac->open_import_xml(type => 'isis_hidra_ths'); -if(0) { # XXX +if(1) { # XXX while (my $rec = $webpac->fetch_rec) { @@ -150,26 +169,14 @@ } # XXX if(0) -$log->info("lookup hash: ",Dumper($webpac->{'lookup'})); +$log->debug("lookup hash: ",Dumper($webpac->{'lookup'})); + +$log->info("creating tree"); # -# tree dump implementation which shouldn't be here :-) +# define tree structure # -my $file = 'out/browse.html'; -open(HTML, "> $file") || $log->logdie("can't open '$file'"); - -print HTML qq{ - - - Browse - - - - - - - -}; +my $tree = new WebPAC::Tree( + dir => './out', + html => 'browse.html', + template => './output_template/tree.tt', + js => 'tree-ids.js', + tree => \@tree, +); +$log->info("closing index"); $index->close; $log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));