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

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

revision 80 by dpavlin, Tue Jul 8 08:24:13 2003 UTC revision 120 by dpavlin, Tue Sep 2 13:24:33 2003 UTC
# Line 26  my $SWISH = $cfg_global->val('webpac', ' Line 26  my $SWISH = $cfg_global->val('webpac', '
26  my $INDEX = $cfg_global->val('webpac', 'index') || die "need index in global.conf, section webpac";  my $INDEX = $cfg_global->val('webpac', 'index') || die "need index in global.conf, section webpac";
27  my $MAX_HITS = $cfg_global->val('webpac', 'max_hits') || 0;  my $MAX_HITS = $cfg_global->val('webpac', 'max_hits') || 0;
28  my $ON_PAGE =$cfg_global->val('webpac', 'on_page') || 10;  my $ON_PAGE =$cfg_global->val('webpac', 'on_page') || 10;
29    my $MIN_WILDCARD =$cfg_global->val('webpac', 'min_wildcard') || 1;
30    
31    
32  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions
# Line 77  sub show_results_list { Line 78  sub show_results_list {
78          my @path_arr = $q->param('path');          my @path_arr = $q->param('path');
79          my $full = $q->param('full');          my $full = $q->param('full');
80    
81            my @persist_vars = ( 'rm' );
82    
83          for(my $i = 1; $i <=30; $i++) {          for(my $i = 1; $i <=30; $i++) {
84    
85                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
86    
87                  next if (! $q->param("v$i"));                  next if (! $q->param("v$i"));
88                  next if (! $q->param("f$i"));                  next if (! $q->param("f$i"));
89    
90                    push @persist_vars, "f$i";
91                    push @persist_vars, "v$i";
92    
93                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
94                  my @param_vals = $q->param("v$i");                  my @param_vals = $q->param("v$i");
95                  my @swish_q;                  my @swish_q;
# Line 103  sub show_results_list { Line 110  sub show_results_list {
110                                          $s.="$2* ";                                          $s.="$2* ";
111                                  } elsif (m/(and|or|not)/i) {                                  } elsif (m/(and|or|not)/i) {
112                                          $s.="$_ ";                                          $s.="$_ ";
113                                    # don't add * to words with less than x chars
114                                    } elsif (length($_) <= $MIN_WILDCARD) {
115                                            $s.="$_ ";
116                                  } else {                                  } else {
117                                          $s.="$_* ";                                          $s.="$_* ";
118                                  }                                  }
# Line 147  sub show_results_list { Line 157  sub show_results_list {
157          die $SWISH::errstr unless $sh;          die $SWISH::errstr unless $sh;
158          # construct swish query          # construct swish query
159          my $sw_q = join(" and ",@s_arr);          my $sw_q = join(" and ",@s_arr);
160          if (@path_arr) {          if (@path_arr && $q->param('show_full')) {
161                  $sw_q .= "and (swishdocpath=\"";                  $sw_q .= "and (swishdocpath=\"";
162                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
163                  $sw_q .= "\")";                  $sw_q .= "\")";
# Line 171  sub show_results_list { Line 181  sub show_results_list {
181    
182                          my @result;                          my @result;
183                          for (my $i=0; $i<$rows; $i++) {                          for (my $i=0; $i<$rows; $i++) {
184                                  push @result, $swish_results[$offset+$i] if $swish_results[$offset+$i];                                  my $r = $swish_results[$offset+$i];
185                                    if ($r && $q->param('show_full')) {
186                                            push @result, $r;
187                                    } elsif ($r) {
188                                            # if not full output, skip html
189                                            delete $r->{html};
190                                            push @result, $r;
191                                    }
192                          }                          }
193                          return \@result;                          return \@result;
194                  },                  },
195                  rows => $hits,                  rows => $hits,
196                  page_size => $ON_PAGE,                  page_size => $ON_PAGE,
197                  # some optional parameters                  # some optional parameters
198                  persist_vars => [                  persist_vars => [ @persist_vars ],
                         'rm',  
                         'f1', 'v1',  
                         'f2', 'v2',  
                         'f3', 'v3',  
                         'f4', 'v4',  
                         'f5', 'v5',  
                         'f6', 'v6',  
                         'f7', 'v7',  
                         'f8', 'v8',  
                         'f9', 'v9',  
                         ],  
199                  #cell_space_color => '#000000',                  #cell_space_color => '#000000',
200                  #cell_background_color => '#ffffff',                  #cell_background_color => '#ffffff',
201                  #nav_background_color => '#dddddd',                  #nav_background_color => '#dddddd',

Legend:
Removed from v.80  
changed lines
  Added in v.120

  ViewVC Help
Powered by ViewVC 1.1.26