/[webpac]/trunk/WebPac.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/WebPac.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 320 by dpavlin, Sun Apr 18 00:57:39 2004 UTC revision 643 by dpavlin, Sun Jan 23 15:18:03 2005 UTC
# Line 12  use Text::Unaccent; Line 12  use Text::Unaccent;
12  use Data::Pageset;  use Data::Pageset;
13    
14  use lib '..';  use lib '..';
15  use index_DBI_cache;  use index_DBI_filter;
16  use back2html;  use back2html;
17    
18    
# Line 183  sub make_pager_vars { Line 183  sub make_pager_vars {
183          my @persist_vars = @_;          my @persist_vars = @_;
184          my $hidden_vars = '';          my $hidden_vars = '';
185          foreach my $v (@persist_vars) {          foreach my $v (@persist_vars) {
186                  $hidden_vars .= '<input type="hidden" name="'.$v.'" value="'.$q->param($v).'"/>'."\n";                  foreach my $val ($q->param($v)) {
187                            next if (! $val || $val eq '');
188                            $hidden_vars .= '<input type="hidden" name="'.$v.'" value="'.$val.'"/>'."\n";
189                    }
190          }          }
191    
192          $tmpl->param('PAGER_HIDDEN', $hidden_vars);          $tmpl->param('PAGER_HIDDEN', $hidden_vars);
193          $tmpl->param('PAGER_JAVASCRIPT', qq{          $tmpl->param('PAGER_JAVASCRIPT', qq#
194  <SCRIPT LANGUAGE="Javascript">  <SCRIPT LANGUAGE="Javascript">
195  <!-- Begin  <!-- Begin
196          // dummy emulator for HTML::Pager templates          // dummy emulator for HTML::Pager templates
# Line 196  sub make_pager_vars { Line 199  sub make_pager_vars {
199          }          }
200  // End -->  // End -->
201  </script>    </script>  
202          });          #);
203  }  }
204    
205  #--------------------------------------------------------------------------  #--------------------------------------------------------------------------
# Line 228  sub show_results_list { Line 231  sub show_results_list {
231          my @path_arr = $q->param('path');          my @path_arr = $q->param('path');
232          my $full = $q->param('full');          my $full = $q->param('full');
233    
234          my @persist_vars = ( 'rm' );          my @persist_vars = ( 'rm', 'persist_search' );
235          my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.($q->param('PAGER_offset') || 0) );          my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.($q->param('PAGER_offset') || 0) );
236    
237            my @persist_search_vars;
238            my @url_params_persist;
239            if ($q->param("persist_search")) {
240                    @persist_search_vars = split(/\s*,\s*/, $q->param("persist_search"));
241                    push @url_params_persist, "persist_search=".$q->url_param("persist_search");
242                    push @url_params,"persist_search=".$q->url_param("persist_search");
243            }
244    
245          # support parametars "f" and "v" for start          # support parametars "f" and "v" for start
246          for(my $i = ""; $i <=30; $i++) {          for(my $i = 0; $i <=30; $i++) {
247    
248                    $i = '' if ($i == 0);
249    
250                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
251    
252                  next if (! $q->param("v$i"));                  next if (! $q->param("v$i") || $q->param("v$i") eq '');
253                  next if (! $q->param("f$i"));                  next if (! $q->param("f$i"));
254    
255                    my $persist = grep(/^$i$/,@persist_search_vars);
256            
257                  push @persist_vars, "f$i";                  push @persist_vars, "f$i";
258                  push @persist_vars, "v$i";                  push @persist_vars, "v$i";
259                  push @persist_vars, "e$i" if ($q->param("e$i"));                  push @persist_vars, "e$i" if ($q->param("e$i"));
260    
261                    # create url parametars (and persistent ones)
262    
263                  push @url_params,"f$i=".$q->url_param("f$i");                  push @url_params,"f$i=".$q->url_param("f$i");
264                    push @url_params_persist,"f$i=".$q->url_param("f$i") if ($persist);
265    
266                  foreach my $v ($q->url_param("v$i")) {                  foreach my $v ($q->url_param("v$i")) {
267                          push @url_params,"v$i=$v";                          push @url_params,"v$i=$v";
268                            push @url_params_persist,"v$i=$v" if ($persist);
269                    }
270    
271                    if ($q->param("e$i")) {
272                            push @url_params,"e$i=".$q->url_param("e$i");
273    #                       push @url_params_persist,"e$i=".$q->url_param("e$i");
274                  }                  }
                 push @url_params,"e$i=".$q->url_param("e$i");  
275    
276                  my $wc="*";     # swish wildcard                  my $wc="*";     # swish wildcard
277                  $wc="" if ($i eq "");   # don't apply wildcard on field 0                  $wc="" if ($i eq "");   # don't apply wildcard on field 0
# Line 268  sub show_results_list { Line 292  sub show_results_list {
292    
293                          # filed e[nr] is exact match bitmask                          # filed e[nr] is exact match bitmask
294                          # 1 = beginning, 2=end, 3=both                          # 1 = beginning, 2=end, 3=both
295                          $pre = '"xxbxx ' if ($q->param("e$i") & 1);                          my $exact_flag = $q->param("e$i") || 0;
296                          $post = ' xxexx"' if ($q->param("e$i") & 2);                          $pre = '"xxbxx ' if ($exact_flag & 1);
297                            $post = ' xxexx"' if ($exact_flag & 2);
298                          # add qotes on other side                          # add qotes on other side
299                          if ($q->param("e$i")) {                          if ($q->param("e$i")) {
300                                  $pre = '"' if (! $pre);                                  $pre = '"' if (! $pre);
# Line 336  sub show_results_list { Line 361  sub show_results_list {
361    
362          # create new swish instance          # create new swish instance
363          my $swish = SWISH::API->new($INDEX);          my $swish = SWISH::API->new($INDEX);
364          $swish->AbortLastError if $swish->Error;          die $swish->ErrorString.": ".$swish->LastErrorMsg if $swish->Error;
365    
366          # execute query and get number of results from SWISH-E          # execute query and get number of results from SWISH-E
367          my $search = $swish->New_Search_Object;          my $search = $swish->New_Search_Object;
# Line 344  sub show_results_list { Line 369  sub show_results_list {
369          $search->SetSort($sort);          $search->SetSort($sort);
370    
371          my $results = $search->Execute($sw_q);          my $results = $search->Execute($sw_q);
372          $swish->AbortLastError if $swish->Error;          die $swish->ErrorString.": ".$swish->LastErrorMsg if $swish->Error;
373    
374          my $hits = $results->Hits;          my $hits = $results->Hits;
375    
# Line 387  sub show_results_list { Line 412  sub show_results_list {
412                          rank => $result->Property('swishrank')                          rank => $result->Property('swishrank')
413                  };                  };
414    
415                  $r->{html} = back2html($from_utf8->convert($result->Property('html'))) if ($q->param('show_full'));                  $r->{html} = back2html($from_utf8->convert($result->Property('html')), join("&",@url_params_persist)) if ($q->param('show_full'));
416    
417                  push @pager_data_list, $r;                  push @pager_data_list, $r;
418          }          }
# Line 413  sub show_index { Line 438  sub show_index {
438          my $field = $q->param("f$i");          my $field = $q->param("f$i");
439          my $limit = $q->param("v$i");          my $limit = $q->param("v$i");
440    
441            my $filter = $q->param("filter");
442    
443          my $html;          my $html;
444    
445          my $index = new index_DBI(          my $index = new index_DBI(
# Line 422  sub show_index { Line 449  sub show_index {
449                  $cfg_global->val('global', 'dbi_passwd') || ''                  $cfg_global->val('global', 'dbi_passwd') || ''
450          );          );
451    
452          my $total = $index->count($field,$limit);          my $total = $index->count($field,$limit,$filter);
453    
454          if (! $total) {          if (! defined($total)) {
455                  my $tmpl = $self->load_tmpl(url_ex($q,'no_index.html'));                  my $tmpl = $self->load_tmpl(url_ex($q,'no_index.html'));
456                  $tmpl->param('field',$field);                  $tmpl->param('field',$field);
457                  $html = $tmpl->output;                  $html = $tmpl->output;
# Line 457  sub show_index { Line 484  sub show_index {
484          make_pager($q, $tmpl, $pager);          make_pager($q, $tmpl, $pager);
485          make_pager_vars($q, $tmpl, @persist_vars);          make_pager_vars($q, $tmpl, @persist_vars);
486    
487          my @pager_data_list = $index->fetch($field,$limit, $pager->first - 1, $pager->entries_on_this_page);          my @pager_data_list = $index->fetch($field,$limit, $pager->first - 1, $pager->entries_on_this_page, $filter);
488          $tmpl->param('PAGER_DATA_LIST', \@pager_data_list);          $tmpl->param('PAGER_DATA_LIST', \@pager_data_list);
489    
490          return in_template($q,$tmpl->output);          return in_template($q,$tmpl->output);

Legend:
Removed from v.320  
changed lines
  Added in v.643

  ViewVC Help
Powered by ViewVC 1.1.26