/[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 158 by dpavlin, Mon Nov 17 21:18:37 2003 UTC revision 164 by dpavlin, Sat Nov 22 22:04:05 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 117  sub show_results_list { Line 121  sub show_results_list {
121                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
122                  my @param_vals = $q->param("v$i");                  my @param_vals = $q->param("v$i");
123                  my @swish_q;                  my @swish_q;
124                    my ($pre,$post,$exact) = ('','','');
125                  while (my $search = shift @param_vals) {                  while (my $search = shift @param_vals) {
126                          my $s;                          my $s;
127                          # remove accents                          # remove accents
# Line 127  sub show_results_list { Line 132  sub show_results_list {
132                          $search =~ s/^\s+//;                          $search =~ s/^\s+//;
133                          $search =~ s/\s+$//;                          $search =~ s/\s+$//;
134    
135                            # filed e[nr] is exact match bitmask
136                            # 1 = beginning, 2=end, 3=both
137                            $pre = '"xxbxx ' if ($q->param("e$i") & 1);
138                            $post = ' xxexx"' if ($q->param("e$i") & 2);
139                            # add qotes on other side
140                            if ($q->param("e$i")) {
141                                    $pre = '"' if (! $pre);
142                                    $post = '"' if (! $post);
143                                    $wc = '';       # don't use windcard in exact
144                                    $exact = '_exact';
145                            }
146    
147                          foreach (split(/\s+/,$search)) {                          foreach (split(/\s+/,$search)) {
148                                  if (m/^([+-])(\S+)/) {                                  if (m/^([+-])(\S+)/) {
149                                          $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
150                                          $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
151                                          $s.="$2$wc ";                                          $s.=$2.$wc." ";
152                                  } elsif (m/^\s*(and|or|not)\s*$/i) {                                  } elsif (m/^\s*(and|or|not)\s*$/i) {
153                                          $s.="$_ ";                                          $s.=$_." ";
154                                  # don't add * to words with less than x chars                                  # don't add * to words with less than x chars
155                                  } elsif (length($_) <= $MIN_WILDCARD) {                                  } elsif (length($_) <= $MIN_WILDCARD) {
156                                          $s.="$_ ";                                          $s.=$_." ";
157                                  } else {                                  } else {
158                                          $s.="$_$wc ";                                          $s.=$_.$wc." ";
159                                  }                                  }
160                          }                          }
161                          $s =~ s/\*+/*/g;                          $s =~ s/\*+/*/g;
162                            $s = $pre.$s.$post if ($q->param("e$i"));
163                          push @swish_q,$s;                          push @swish_q,$s;
164                  }                  }
165                  # FIXME default operator for multi-value fields is or. There is                  # FIXME default operator for multi-value fields is or. There is
166                  # no way to change it, except here for now. Is there need?                  # no way to change it, except here for now. Is there need?
167                  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).")";
168          }          }
169    
170          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);

Legend:
Removed from v.158  
changed lines
  Added in v.164

  ViewVC Help
Powered by ViewVC 1.1.26