--- trunk/WebPac.pm 2003/01/16 17:35:54 10 +++ trunk/WebPac.pm 2003/01/22 22:27:19 12 @@ -9,6 +9,9 @@ use Unicode::MapUTF8 qw(to_utf8 from_utf8 utf8_supported_charset); use DBI; +use lib '..'; +use index_DBI; + # configuration options # FIX: they really should go in configuration file! my $TEMPLATE_PATH = '/data/webpac/template_html'; @@ -165,12 +168,46 @@ my $q = $self->query(); + my $field = $q->param("f$i"); + my $limit = $q->param("v$i"); + my $html; - $html .= "show index of ".$q->param("f$i")." for ".$q->param("v$i"); + my $index = new index_DBI(); + my $total = $index->check($field); + if (! $total) { + my $tmpl = $self->load_tmpl('no_index.html'); + $tmpl->param('field',$field); + $html = $tmpl->output; + return $html; + } - return $html; + my $tmpl = $self->load_tmpl('index_res.html'); + $tmpl->param('field',$field); + $tmpl->param('limit',$limit); + $tmpl->param('total',$total); + + my $pager = HTML::Pager->new( + query => $q, + get_data_callback => sub { + my ($offset, $rows) = @_; + + my @result = $index->fetch($field,'item',$limit, $offset, $rows); + return \@result; + }, + rows => $total, + page_size => $ON_PAGE, + persist_vars => [ + 'rm', + "f$i", "v$i", "f".$i."_index", + 'offset', + ], + debug => 1, + template => $tmpl, + ); + + return $pager->output; } 1;