/[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 149 by dpavlin, Sun Nov 16 16:57:11 2003 UTC revision 150 by dpavlin, Sun Nov 16 22:39:06 2003 UTC
# Line 95  sub show_results_list { Line 95  sub show_results_list {
95          my @persist_vars = ( 'rm' );          my @persist_vars = ( 'rm' );
96          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 );
97    
98          for(my $i = 1; $i <=30; $i++) {          # support parametars "f" and "v" for start
99            for(my $i = ""; $i <=30; $i++) {
100    
101                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
102    
# Line 108  sub show_results_list { Line 109  sub show_results_list {
109                  push @url_params,"f$i=".$q->url_param("f$i");                  push @url_params,"f$i=".$q->url_param("f$i");
110                  push @url_params,"v$i=".$q->url_param("v$i");                  push @url_params,"v$i=".$q->url_param("v$i");
111    
112                    my $wc="*";     # swish wildcard
113                    $wc="" if ($i eq "");   # don't apply wildcard on field 0
114    
115                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
116                  my @param_vals = $q->param("v$i");                  my @param_vals = $q->param("v$i");
117                  my @swish_q;                  my @swish_q;
# Line 125  sub show_results_list { Line 129  sub show_results_list {
129                                  if (m/^([+-])(\S+)/) {                                  if (m/^([+-])(\S+)/) {
130                                          $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
131                                          $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
132                                          $s.="$2* ";                                          $s.="$2$wc ";
133                                  } elsif (m/^\s*(and|or|not)\s*$/i) {                                  } elsif (m/^\s*(and|or|not)\s*$/i) {
134                                          $s.="$_ ";                                          $s.="$_ ";
135                                  # don't add * to words with less than x chars                                  # don't add * to words with less than x chars
136                                  } elsif (length($_) <= $MIN_WILDCARD) {                                  } elsif (length($_) <= $MIN_WILDCARD) {
137                                          $s.="$_ ";                                          $s.="$_ ";
138                                  } else {                                  } else {
139                                          $s.="$_* ";                                          $s.="$_$wc ";
140                                  }                                  }
141                          }                          }
142                          $s =~ s/\*+/*/g;                          $s =~ s/\*+/*/g;

Legend:
Removed from v.149  
changed lines
  Added in v.150

  ViewVC Help
Powered by ViewVC 1.1.26