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

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

revision 80 by dpavlin, Tue Jul 8 08:24:13 2003 UTC revision 140 by dpavlin, Thu Oct 30 00:10:09 2003 UTC
# Line 12  use Config::IniFiles; Line 12  use Config::IniFiles;
12  use Text::Unaccent;  use Text::Unaccent;
13    
14  use lib '..';  use lib '..';
15  use index_DBI;  use index_DBI_cache;
16  use back2html;  use back2html;
17    
18    
# Line 26  my $SWISH = $cfg_global->val('webpac', ' Line 26  my $SWISH = $cfg_global->val('webpac', '
26  my $INDEX = $cfg_global->val('webpac', 'index') || die "need index in global.conf, section webpac";  my $INDEX = $cfg_global->val('webpac', 'index') || die "need index in global.conf, section webpac";
27  my $MAX_HITS = $cfg_global->val('webpac', 'max_hits') || 0;  my $MAX_HITS = $cfg_global->val('webpac', 'max_hits') || 0;
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;
30    
31    
32  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions
# Line 77  sub show_results_list { Line 78  sub show_results_list {
78          my @path_arr = $q->param('path');          my @path_arr = $q->param('path');
79          my $full = $q->param('full');          my $full = $q->param('full');
80    
81            my @persist_vars = ( 'rm' );
82            my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.$q->param('PAGER_offset') || 0 );
83    
84          for(my $i = 1; $i <=30; $i++) {          for(my $i = 1; $i <=30; $i++) {
85    
86                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
87    
88                  next if (! $q->param("v$i"));                  next if (! $q->param("v$i"));
89                  next if (! $q->param("f$i"));                  next if (! $q->param("f$i"));
90    
91                    push @persist_vars, "f$i";
92                    push @persist_vars, "v$i";
93    
94                    push @url_params,"f$i=".$q->url_param("f$i");
95                    push @url_params,"v$i=".$q->url_param("v$i");
96    
97                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
98                  my @param_vals = $q->param("v$i");                  my @param_vals = $q->param("v$i");
99                  my @swish_q;                  my @swish_q;
# Line 101  sub show_results_list { Line 112  sub show_results_list {
112                                          $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
113                                          $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
114                                          $s.="$2* ";                                          $s.="$2* ";
115                                  } elsif (m/(and|or|not)/i) {                                  } elsif (m/^\s*(and|or|not)\s*$/i) {
116                                            $s.="$_ ";
117                                    # don't add * to words with less than x chars
118                                    } elsif (length($_) <= $MIN_WILDCARD) {
119                                          $s.="$_ ";                                          $s.="$_ ";
120                                  } else {                                  } else {
121                                          $s.="$_* ";                                          $s.="$_* ";
# Line 115  sub show_results_list { Line 129  sub show_results_list {
129                  push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";                  push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";
130          }          }
131    
132          my $tmpl = $self->load_tmpl('results.html');          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);
133    
134          sub esc_html {          sub esc_html {
135                  my $html = shift;                  my $html = shift;
# Line 147  sub show_results_list { Line 161  sub show_results_list {
161          die $SWISH::errstr unless $sh;          die $SWISH::errstr unless $sh;
162          # construct swish query          # construct swish query
163          my $sw_q = join(" and ",@s_arr);          my $sw_q = join(" and ",@s_arr);
164          if (@path_arr) {          if (@path_arr && $q->param('show_full')) {
165                  $sw_q .= "and (swishdocpath=\"";                  $sw_q .= "and (swishdocpath=\"";
166                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
167                  $sw_q .= "\")";                  $sw_q .= "\")";
168                  $tmpl->param('full',1); # show full records                  $tmpl->param('full',1); # show full records
169            } else {
170                    $tmpl->param('full',0);
171          }          }
172    
173          my $hits = $sh->query($sw_q);          my $hits = $sh->query($sw_q);
# Line 162  sub show_results_list { Line 178  sub show_results_list {
178          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);
179          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);
180    
181            $tmpl->param('url_params',"?".join("&",@url_params));
182    
183          # create a Pager object          # create a Pager object
184          my $pager = HTML::Pager->new(          my $pager = HTML::Pager->new(
185                  # required parameters                  # required parameters
# Line 171  sub show_results_list { Line 189  sub show_results_list {
189    
190                          my @result;                          my @result;
191                          for (my $i=0; $i<$rows; $i++) {                          for (my $i=0; $i<$rows; $i++) {
192                                  push @result, $swish_results[$offset+$i] if $swish_results[$offset+$i];                                  my $r = $swish_results[$offset+$i];
193                                    if ($r && $tmpl->param('full')) {
194                                            push @result, $r;
195                                    } elsif ($r) {
196                                            # if not full output, skip html
197                                            delete $r->{html};
198                                            push @result, $r;
199                                    }
200                          }                          }
201                          return \@result;                          return \@result;
202                  },                  },
203                  rows => $hits,                  rows => $hits,
204                  page_size => $ON_PAGE,                  page_size => $ON_PAGE,
205                  # some optional parameters                  # some optional parameters
206                  persist_vars => [                  persist_vars => [ @persist_vars ],
                         'rm',  
                         'f1', 'v1',  
                         'f2', 'v2',  
                         'f3', 'v3',  
                         'f4', 'v4',  
                         'f5', 'v5',  
                         'f6', 'v6',  
                         'f7', 'v7',  
                         'f8', 'v8',  
                         'f9', 'v9',  
                         ],  
207                  #cell_space_color => '#000000',                  #cell_space_color => '#000000',
208                  #cell_background_color => '#ffffff',                  #cell_background_color => '#ffffff',
209                  #nav_background_color => '#dddddd',                  #nav_background_color => '#dddddd',
# Line 221  sub show_index { Line 235  sub show_index {
235                  $cfg_global->val('global', 'dbi_passwd') || ''                  $cfg_global->val('global', 'dbi_passwd') || ''
236          );          );
237    
238          my $total = $index->check($field);          my $total = $index->count($field,$limit);
239          if (! $total) {          if (! $total) {
240                  my $tmpl = $self->load_tmpl('no_index.html');                  my $tmpl = $self->load_tmpl('no_index.html');
241                  $tmpl->param('field',$field);                  $tmpl->param('field',$field);
# Line 229  sub show_index { Line 243  sub show_index {
243                  return $html;                  return $html;
244          }          }
245    
246          my $tmpl = $self->load_tmpl('index_res.html');          my $tmpl = $self->load_tmpl('index_res.html', global_vars => 1);
247          $tmpl->param('field',$field);          $tmpl->param('field',$field);
248          $tmpl->param('limit',$limit);          $tmpl->param('limit',$limit);
249          $tmpl->param('total',$total);          $tmpl->param('total',$total);
# Line 244  sub show_index { Line 258  sub show_index {
258                  get_data_callback => sub {                  get_data_callback => sub {
259                          my ($offset, $rows) = @_;                          my ($offset, $rows) = @_;
260    
261                          my @result = $index->fetch($field,'item',$limit, $offset, $rows);                          my @result = $index->fetch($field,$limit, $offset, $rows);
262                          return \@result;                          return \@result;
263                  },                  },
264                  rows => $total,                  rows => $total,

Legend:
Removed from v.80  
changed lines
  Added in v.140

  ViewVC Help
Powered by ViewVC 1.1.26