--- trunk/WebPac.pm 2003/03/23 01:17:49 47 +++ trunk/WebPac.pm 2003/07/04 20:37:04 63 @@ -8,24 +8,29 @@ use SWISH; use Text::Iconv; use DBI; +use Config::IniFiles; use lib '..'; use index_DBI; use back2html; # configuration options -# FIX: they really should go in configuration file! +# FIXME they really should go in configuration file! my $TEMPLATE_PATH = '/data/webpac/template_html'; my $CHARSET = 'ISO-8859-2'; my $SWISH = '/usr/bin/swish-e'; my $INDEX = '/data/webpac/index/isis.index'; -my $MAX_HITS = 500; +my $MAX_HITS = 0; my $ON_PAGE = 10; Text::Iconv->raise_error(0); # Conversion errors raise exceptions my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET); +# read global.conf configuration +my $cfg_global = new Config::IniFiles( -file => '../global.conf' ) || die "can't open 'global.conf'"; + + sub setup { my $self = shift; $self->tmpl_path($TEMPLATE_PATH); @@ -90,6 +95,8 @@ $s.= ($s) ? "and " : ""; $s.="not " if ($1 eq "-"); $s.="$2* "; + } elsif (m/(and|or|not)/i) { + $s.="$_ "; } else { $s.="$_* "; } @@ -137,6 +144,9 @@ $tmpl->param('hits',$hits); $tmpl->param('search',$sw_q); + $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0); + $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0); + # create a Pager object my $pager = HTML::Pager->new( # required parameters @@ -189,7 +199,12 @@ my $html; - my $index = new index_DBI(); + my $index = new index_DBI( + $cfg_global->val('global', 'dbi_dbd'), + $cfg_global->val('global', 'dbi_dsn'), + $cfg_global->val('global', 'dbi_user'), + $cfg_global->val('global', 'dbi_passwd') || '' + ); my $total = $index->check($field); if (! $total) { @@ -204,7 +219,7 @@ $tmpl->param('limit',$limit); $tmpl->param('total',$total); -# FIX: I should set offset and leave out limit from fetch!! +# FIXME I should set offset and leave out limit from fetch!! # if (! $q->param("PAGER_offset") { # $q->param("Pager_offet) # }