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

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

revision 147 by dpavlin, Sun Nov 16 16:14:37 2003 UTC revision 183 by dpavlin, Sat Nov 29 17:51:12 2003 UTC
# Line 28  my $MAX_HITS = $cfg_global->val('webpac' Line 28  my $MAX_HITS = $cfg_global->val('webpac'
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;  my $MIN_WILDCARD =$cfg_global->val('webpac', 'min_wildcard') || 1;
30  my $TEMPLATE =$cfg_global->val('webpac', 'template');  my $TEMPLATE =$cfg_global->val('webpac', 'template');
31    my $UNAC_FILTER =$cfg_global->val('global', 'unac_filter');
32    
33    if ($UNAC_FILTER) {
34            require $UNAC_FILTER;
35    }
36    
37  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions
38    
# Line 95  sub show_results_list { Line 99  sub show_results_list {
99          my @persist_vars = ( 'rm' );          my @persist_vars = ( 'rm' );
100          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 );
101    
102          for(my $i = 1; $i <=30; $i++) {          # support parametars "f" and "v" for start
103            for(my $i = ""; $i <=30; $i++) {
104    
105                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
106    
# Line 106  sub show_results_list { Line 111  sub show_results_list {
111                  push @persist_vars, "v$i";                  push @persist_vars, "v$i";
112    
113                  push @url_params,"f$i=".$q->url_param("f$i");                  push @url_params,"f$i=".$q->url_param("f$i");
114                  push @url_params,"v$i=".$q->url_param("v$i");                  foreach my $v ($q->url_param("v$i")) {
115                            push @url_params,"v$i=$v";
116                    }
117                    push @url_params,"e$i=".$q->url_param("e$i");
118    
119                    my $wc="*";     # swish wildcard
120                    $wc="" if ($i eq "");   # don't apply wildcard on field 0
121    
122                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
123                  my @param_vals = $q->param("v$i");                  my @param_vals = $q->param("v$i");
124                  my @swish_q;                  my @swish_q;
125                    my ($pre,$post,$exact) = ('','','');
126                  while (my $search = shift @param_vals) {                  while (my $search = shift @param_vals) {
127                          my $s;                          my $s;
128                          # remove accents                          # remove accents
# Line 121  sub show_results_list { Line 133  sub show_results_list {
133                          $search =~ s/^\s+//;                          $search =~ s/^\s+//;
134                          $search =~ s/\s+$//;                          $search =~ s/\s+$//;
135    
136                            # filed e[nr] is exact match bitmask
137                            # 1 = beginning, 2=end, 3=both
138                            $pre = '"xxbxx ' if ($q->param("e$i") & 1);
139                            $post = ' xxexx"' if ($q->param("e$i") & 2);
140                            # add qotes on other side
141                            if ($q->param("e$i")) {
142                                    $pre = '"' if (! $pre);
143                                    $post = '"' if (! $post);
144                                    $wc = '';       # don't use windcard in exact
145                                    $exact = '_exact';
146                            }
147    
148                          foreach (split(/\s+/,$search)) {                          foreach (split(/\s+/,$search)) {
149                                  if (m/^([+-])(\S+)/) {                                  if (m/^([+-])(\S+)/) {
150                                          $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
151                                          $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
152                                          $s.="$2* ";                                          $s.=$2.$wc." ";
153                                  } elsif (m/^\s*(and|or|not)\s*$/i) {                                  } elsif (m/^\s*(and|or|not)\s*$/i) {
154                                          $s.="$_ ";                                          $s.=$_." ";
155                                  # don't add * to words with less than x chars                                  # don't add * to words with less than x chars
156                                  } elsif (length($_) <= $MIN_WILDCARD) {                                  } elsif (length($_) <= $MIN_WILDCARD) {
157                                          $s.="$_ ";                                          $s.=$_." ";
158                                  } else {                                  } else {
159                                          $s.="$_* ";                                          $s.=$_.$wc." ";
160                                  }                                  }
161                          }                          }
162                          $s =~ s/\*+/*/g;                          $s =~ s/\*+/*/g;
163                            $s = $pre.$s.$post if ($q->param("e$i"));
164                          push @swish_q,$s;                          push @swish_q,$s;
165                  }                  }
166                  # FIXME default operator for multi-value fields is or. There is                  # FIXME default operator for multi-value fields is or. There is
167                  # no way to change it, except here for now. Is there need?                  # no way to change it, except here for now. Is there need?
168                  push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";                  push @s_arr, $q->param("f$i")."_swish".$exact."=(".join(" or ",@swish_q).")";
169          }          }
170    
171          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);
# Line 180  sub show_results_list { Line 205  sub show_results_list {
205                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
206                  $sw_q .= "\")";                  $sw_q .= "\")";
207                  $tmpl->param('full',1); # show full records                  $tmpl->param('full',1); # show full records
208            } elsif ($q->param('show_full')) {
209                    # just show full path, no path defined
210                    $tmpl->param('full',1);
211          } else {          } else {
212                  $tmpl->param('full',0);                  $tmpl->param('full',0);
213          }          }

Legend:
Removed from v.147  
changed lines
  Added in v.183

  ViewVC Help
Powered by ViewVC 1.1.26