/[webpac]/branches/tehnika/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 /branches/tehnika/WebPac.pm

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

revision 704 by dpavlin, Sat Apr 30 15:48:40 2005 UTC revision 731 by dpavlin, Thu Apr 13 19:47:32 2006 UTC
# Line 247  sub show_results_list { Line 247  sub show_results_list {
247          my $full = $q->param('full');          my $full = $q->param('full');
248    
249          my @persist_vars = ( 'rm', 'persist_search' );          my @persist_vars = ( 'rm', 'persist_search' );
250          my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.($q->param('PAGER_offset') || 0) );          my $url_params = {
251                    'rm' => 'results',
252                    'show_full' => 1,
253                    'last_PAGER_offset' => ($q->param('PAGER_offset') || 0),
254            };
255    
256          my @persist_search_vars;          my @persist_search_vars;
257          my @url_params_persist;          my $url_params_persist = {};
258          if ($q->param("persist_search")) {          if ($q->param("persist_search")) {
259                  @persist_search_vars = split(/\s*,\s*/, $q->param("persist_search"));                  @persist_search_vars = split(/\s*,\s*/, $q->param("persist_search"));
260                  push @url_params_persist, "persist_search=".$q->url_param("persist_search");                  $url_params_persist->{'persist_search'} = $q->url_param("persist_search");
261                  push @url_params,"persist_search=".$q->url_param("persist_search");                  $url_params->{'persist_search'} = $q->url_param("persist_search");
262          }          }
263    
264          # support parametars "f" and "v" for start          # support parametars "f" and "v" for start
# Line 275  sub show_results_list { Line 279  sub show_results_list {
279    
280                  # create url parametars (and persistent ones)                  # create url parametars (and persistent ones)
281    
282                  push @url_params,"f$i=".$q->url_param("f$i");                  $url_params->{"f$i"} = $q->url_param("f$i");
283                  push @url_params_persist,"f$i=".$q->url_param("f$i") if ($persist);                  $url_params_persist->{"f$i"} = $q->url_param("f$i") if ($persist);
284    
285                    my @v;
286    
287                  foreach my $v ($q->url_param("v$i")) {                  foreach my $v ($q->url_param("v$i")) {
288                          # escape quotes so that phrase search work                          # escape quotes so that phrase search work
289                          $v =~ s/"/%22/g;                          $v =~ s/"/%22/g;
290                          push @url_params,"v$i=$v";                          push @v, $v;
                         push @url_params_persist,"v$i=$v" if ($persist);  
291                  }                  }
292                    $url_params->{"v$i"} = \@v;
293                    $url_params_persist->{"v$i"} = \@v if ($persist);
294    
295                  if ($q->param("e$i")) {                  if ($q->param("e$i")) {
296                          push @url_params,"e$i=".$q->url_param("e$i");                          $url_params->{"e$i"} = $q->url_param("e$i");
297  #                       push @url_params_persist,"e$i=".$q->url_param("e$i");  #                       $url_params_persist->{"e$i"} = $q->url_param("e$i");
298                  }                  }
299    
300                  my $wc="*";     # swish wildcard                  my $wc="*";     # swish wildcard
# Line 389  sub show_results_list { Line 396  sub show_results_list {
396          if ($filter) {          if ($filter) {
397                  $sw_q .= " and (swishdocpath=\"$filter\")" unless (@path_arr);                  $sw_q .= " and (swishdocpath=\"$filter\")" unless (@path_arr);
398                  push @persist_vars, "filter";                  push @persist_vars, "filter";
399                  push @url_params, "filter=$filter";                  $url_params->{'filter'} = $filter;
400                  push @url_params_persist, "filter=$filter";                  $url_params_persist->{'filter'} = $filter;
401          }          }
402    
403          my $swish_msg = ' ';          my $swish_msg = ' ';
# Line 418  sub show_results_list { Line 425  sub show_results_list {
425          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);
426    
427          # URL parametars for search results          # URL parametars for search results
428          $tmpl->param('url_params',"?".join("&",@url_params));          sub cook_url_params {
429          $tmpl->param('url_params_paths',"?".join("&",@url_params).'&'.join("&",map { my $t = $_; $t =~ s/\#/%23/g; "path=$t"; } @path_arr));                  my $hash = shift || return;
430                    return join("&", map {
431                            my $var = $_;
432                            if (ref($hash->{$var}) eq 'ARRAY') {
433                                    join('&',
434                                            map { $var.'='.$_ } @{$hash->{$var}}
435                                    );
436                            } else {
437                                    $var."=".$hash->{$var};
438                            }
439                    } keys %{$hash});
440            }
441    
442            $tmpl->param('url_params',"?".cook_url_params($url_params));
443            $tmpl->param('url_params_paths',"?".cook_url_params($url_params).'&'.join("&",map { my $t = $_; $t =~ s/\#/%23/g; "path=$t"; } @path_arr));
444    
445    
446    
# Line 456  sub show_results_list { Line 477  sub show_results_list {
477                          rank => $result->Property('swishrank')                          rank => $result->Property('swishrank')
478                  };                  };
479    
480                  $r->{html} = back2html($from_utf8->convert($result->Property('html')), join("&",@url_params_persist)) if ($q->param('show_full'));                  #$r->{html} = back2html($from_utf8->convert($result->Property('html')), cook_url_params($url_params_persist)) if ($q->param('show_full'));
481                    $r->{html} = back2html($from_utf8->convert($result->Property('html')), $filter ? 'filter='.$filter : '') if ($q->param('show_full'));
482    
483                  push @pager_data_list, $r;                  push @pager_data_list, $r;
484          }          }

Legend:
Removed from v.704  
changed lines
  Added in v.731

  ViewVC Help
Powered by ViewVC 1.1.26