/[swish]/trunk/html/swish.cgi
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 /trunk/html/swish.cgi

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

revision 32 by dpavlin, Wed Apr 30 12:40:09 2003 UTC revision 41 by dpavlin, Sun Jun 1 12:13:36 2003 UTC
# Line 31  sub e { Line 31  sub e {
31          return $out;          return $out;
32  }  }
33    
34  my $spelling_alt;  my @spellings;
35  # FIX: doesn't work very well  # FIX: doesn't work very well
36  if ($config->{findaffix}) {  if ($config->{findaffix}) {
37          $spelling_alt = new Lingua::Spelling::Alternative;          foreach my $findaffix (split(/[, ]+/,x($config->{findaffix}))) {
38          $spelling_alt->load_findaffix(x($config->{findaffix}));                  my $spelling_alt = new Lingua::Spelling::Alternative;
39                    $spelling_alt->load_findaffix($findaffix);
40                    push @spellings,$spelling_alt;
41            }
42  }  }
43  if ($config->{affix}) {  if ($config->{affix}) {
44          $spelling_alt = new Lingua::Spelling::Alternative;          foreach my $affix (split(/[, ]+/,x($config->{affix}))) {
45          $spelling_alt->load_affix(x($config->{affix}));                  my $spelling_alt = new Lingua::Spelling::Alternative;
46                    $spelling_alt->load_affix($affix);
47                    push @spellings,$spelling_alt;
48            }
49  }  }
50    
51  my $hits=0;  my $hits=0;
# Line 54  my $path = param('path');      # limit to thi Line 60  my $path = param('path');      # limit to thi
60  my %path_label;  my %path_label;
61  my @path_name;  my @path_name;
62  foreach (@{$config->{paths}->{path}}) {  foreach (@{$config->{paths}->{path}}) {
63    
64    print STDERR "##: $_->{limit}",x($_->{content}),"\n";
65          push @path_name,x($_->{limit});          push @path_name,x($_->{limit});
66          $path_label{$_->{limit}} = x($_->{content});          $path_label{$_->{limit}} = x($_->{content});
67  }  }
# Line 71  print popup_menu(-name=>'max_hits',-valu Line 79  print popup_menu(-name=>'max_hits',-valu
79  print x($config->{text}->{documents});  print x($config->{text}->{documents});
80  print textfield('search');  print textfield('search');
81  print submit(-value=> x($config->{text}->{submit}));  print submit(-value=> x($config->{text}->{submit}));
82  print br,checkbox(-name=>'no_affix', -checked=>0, -label=>x($config->{text}->{no_spell})) if ($spelling_alt);  print br,checkbox(-name=>'no_affix', -checked=>0, -label=>x($config->{text}->{no_spell})) if (@spellings);
83  print checkbox(-name=>'no_properties', -checked=>0, -label=>($config->{text}->{no_properties})) if (@properties);  print checkbox(-name=>'no_properties', -checked=>0, -label=>($config->{text}->{no_properties})) if (@properties);
84  if (@path_name) {  if (@path_name) {
85          print br,x($config->{text}->{limit});          print br,x($config->{text}->{limit});
# Line 92  if (param('search')) { Line 100  if (param('search')) {
100          $search =~ s/^\s+//;          $search =~ s/^\s+//;
101          $search =~ s/\s+$//;          $search =~ s/\s+$//;
102    
103            my %words;
104    
105          foreach (split(/\s+/,$search)) {          foreach (split(/\s+/,$search)) {
106                  if (m/^([+-])(\S+)/) {                  if (m/^([+-])(\S+)/) {
107                          $s.= ($s) ? "and " : "";                          $s.= ($s) ? "and " : "";
108                          $s.="not " if ($1 eq "-");                          $s.="not " if ($1 eq "-");
109                          if ($spelling_alt && !param('no_affix')) {                          if (@spellings && !param('no_affix')) {
110                                  my $w = $2; $w =~ s/[\*\s]+//g;                                  my $w = $2; $w =~ s/[\*\s]+//g;
111                                  $w =~ s/^(['"]*)([^'"]+)(['"]*)/$2/;                                  $w =~ s/^(['"]*)([^'"]+)(['"]*)/$2/;
112                                  $s.="$1(".join("* or ",$spelling_alt->alternatives($w))."*)$3 ";                                  my $or="";
113                                    foreach my $spelling_alt (@spellings) {
114                                            $s.="$or$1(".join("* or ",$spelling_alt->alternatives($w))."*)$3 ";
115                                            $or = "or ";
116                                    }
117                          } else {                          } else {
118                                  $s.="$2* ";                                  $s.="$2* ";
119                          }                          }
120                  } else {                  } else {
121                          if ($spelling_alt && !param('no_affix')) {                          if (@spellings && !param('no_affix')) {
122                                  my $w = $_; $w =~ s/[\*\s]+//g;                                  my $w = $_; $w =~ s/[\*\s]+//g;
123                                  #$s.="(".join("* or ",$spelling_alt->alternatives($w))."*) ";                                  #$s.="(".join("* or ",$spelling_alt->alternatives($w))."*) ";
124                                  $s.="(".join("* or ",$spelling_alt->alternatives($w))."*) ";                                  my $or="";
125                                    foreach my $spelling_alt (@spellings) {
126                                            $s.="$or(".join("* or ",$spelling_alt->alternatives($w))."*) ";
127                                            $or = "or ";
128                                    }
129                          } else {                          } else {
130                                  $s.="$_* ";                                  $s.="$_* ";
131                          }                          }
# Line 120  if (param('search')) { Line 138  if (param('search')) {
138          $s=~s/\*\*+/*/g;          $s=~s/\*\*+/*/g;
139    
140          # limit to some path          # limit to some path
141          $s = "swishdocpath=(\"$path\") and $s" if ($path);          $s = "swishdocpath=(\"*$path*\") and $s" if ($path);
142    
143          my %params;     # optional parametars for swish          my %params;     # optional parametars for swish
144    
# Line 129  if (param('search')) { Line 147  if (param('search')) {
147    
148          if (@properties) {          if (@properties) {
149                  $hit_fmt = x($config->{hit}) if (! param('no_properties'));                  $hit_fmt = x($config->{hit}) if (! param('no_properties'));
150                  $params{properties} = \@properties if (@properties);                  $params{properties} = \@properties;
151          } else {          } else {
152                  $hit_fmt = x($config->{hit}) if (x($config->{hit}));                  $hit_fmt = x($config->{hit}) if (x($config->{hit}));
153          }          }
# Line 160  if (param('search')) { Line 178  if (param('search')) {
178    
179          $hits = $sh->query($s);          $hits = $sh->query($s);
180    
181          if ($hits > 0) {          if ($hits && $hits > 0) {
182                  print p,hr;                  print p,hr;
183                  printf (x($config->{text}->{hits}),$hits,param('max_hits') || $max_hits,$s);                  printf (x($config->{text}->{hits}),$hits,param('max_hits') || $max_hits,$s);
184          } else {          } else {

Legend:
Removed from v.32  
changed lines
  Added in v.41

  ViewVC Help
Powered by ViewVC 1.1.26