/[mws]/trunk/MWS_swish.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 /trunk/MWS_swish.pm

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

revision 17 by dpavlin, Fri May 7 11:25:01 2004 UTC revision 20 by dpavlin, Fri May 7 23:35:39 2004 UTC
# Line 46  sub search_index { Line 46  sub search_index {
46          }          }
47    
48          print STDERR "swish search: $s\n";          print STDERR "swish search: $s\n";
49    
50            # convert to UTF-8
51            $s = $iso2utf->convert($s) || $s;
52          my $results = $index->Query($s);          my $results = $index->Query($s);
53    
54          # store total number of hits          # store total number of hits
# Line 53  sub search_index { Line 56  sub search_index {
56    
57          my @res_ids;          my @res_ids;
58    
59          my $count = 0;          my $count = 1;
60    
61          while ( my $r = $results->NextResult ) {          while ( my $r = $results->NextResult ) {
62    
# Line 68  sub search_index { Line 71  sub search_index {
71                  push @res_ids, $id;                  push @res_ids, $id;
72    
73                  foreach my $p (qw(from to cc bcc)) {                  foreach my $p (qw(from to cc bcc)) {
74                          @{$self->{cache}->{$id}->{$p}} = split(/##/, p($r,$p.'_phrase'));                          @{$self->{cache}->{$id}->{$p}} = ();
75                            foreach my $v (split(/##/, p($r,$p.'_phrase'))) {
76                                    push @{$self->{cache}->{$id}->{$p}}, $v;
77                                    $self->add_counter($p,$v);
78                            }
79                  }                  }
80    
81                  foreach my $p (qw(subject body date)) {                  foreach my $p (qw(subject body date)) {
82                          $self->{cache}->{$id}->{$p} = p($r,$p);                          $self->{cache}->{$id}->{$p} = p($r,$p);
83                  }                  }
84    
85                    $self->add_counter_calendar(p($r,'date_utime'));
86    
87                  # this is redundant, but needed for templates later...                  # this is redundant, but needed for templates later...
88                  $self->{cache}->{$id}->{'id'} = $id;                  $self->{cache}->{$id}->{'id'} = $id;
89    
90                  last if ($count++ > $self->{max_results});                  last if (++$count > $self->{max_results});
91          }          }
92    
93          return @res_ids;          return @res_ids;

Legend:
Removed from v.17  
changed lines
  Added in v.20

  ViewVC Help
Powered by ViewVC 1.1.26