--- trunk/WebPac.pm 2003/02/16 22:41:37 13 +++ trunk/WebPac.pm 2003/02/22 21:21:35 16 @@ -6,7 +6,7 @@ use HTML::Pager; use HTML::FillInForm; use SWISH; -use Unicode::MapUTF8 qw(to_utf8 from_utf8 utf8_supported_charset); +use Text::Iconv; use DBI; use lib '..'; @@ -22,6 +22,9 @@ my $MAX_HITS = 500; my $ON_PAGE = 10; +Text::Iconv->raise_error(1); # Conversion errors raise exceptions + +my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET); sub setup { my $self = shift; @@ -88,6 +91,7 @@ $s.="$_* "; } } + $s =~ s/\*+/*/g; push @s_arr,$q->param("f$i")."_swish=($s)"; } @@ -105,8 +109,8 @@ push @swish_results, { nr => ($#swish_results + 2), path => $hit->swishdocpath, - headline => from_utf8({ -string => $hit->headline, -charset => $CHARSET }), - html => back2html(from_utf8({ -string => $hit->html, -charset => $CHARSET })), + headline => $from_utf8->convert($hit->headline), + html => back2html($from_utf8->convert($hit->html)), rank => $hit->swishrank }; }, @@ -188,6 +192,11 @@ $tmpl->param('limit',$limit); $tmpl->param('total',$total); +# FIX: I should set offset and leave out limit from fetch!! +# if (! $q->param("PAGER_offset") { +# $q->param("Pager_offet) +# } + my $pager = HTML::Pager->new( query => $q, get_data_callback => sub {