/[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 121 by dpavlin, Tue Sep 2 21:31:54 2003 UTC revision 147 by dpavlin, Sun Nov 16 16:14:37 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 27  my $INDEX = $cfg_global->val('webpac', ' Line 27  my $INDEX = $cfg_global->val('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;  my $MIN_WILDCARD =$cfg_global->val('webpac', 'min_wildcard') || 1;
30    my $TEMPLATE =$cfg_global->val('webpac', 'template');
31    
32    
33  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions
# Line 49  sub setup { Line 50  sub setup {
50          $self->header_props(-charset=>$CHARSET);          $self->header_props(-charset=>$CHARSET);
51  }  }
52    
53    sub in_template {
54            my $html = shift || "This page is left unintentionally blank";
55            return $html if (! defined($TEMPLATE));
56            if (open(T, $TEMPLATE)) {
57                    my $template_html = join("\n",<T>);
58                    close(T);
59                    $template_html =~ s/##webpac##/$html/gsi;
60                    return $template_html;
61            } else {
62                    return "Can't read template '$TEMPLATE'";
63            }
64    }
65    
66  sub show_search_form {  sub show_search_form {
67          my $self = shift;          my $self = shift;
68    
# Line 60  sub show_search_form { Line 74  sub show_search_form {
74    
75          my $fif = new HTML::FillInForm;          my $fif = new HTML::FillInForm;
76    
77          return $fif->fill(scalarref => \$html, fobject => $q,          return in_template($fif->fill(scalarref => \$html, fobject => $q,
78                  target => 'search');                  target => 'search'));
79  }  }
80    
81  sub show_results_list {  sub show_results_list {
# Line 79  sub show_results_list { Line 93  sub show_results_list {
93          my $full = $q->param('full');          my $full = $q->param('full');
94    
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 );
97    
98          for(my $i = 1; $i <=30; $i++) {          for(my $i = 1; $i <=30; $i++) {
99    
# Line 90  sub show_results_list { Line 105  sub show_results_list {
105                  push @persist_vars, "f$i";                  push @persist_vars, "f$i";
106                  push @persist_vars, "v$i";                  push @persist_vars, "v$i";
107    
108                    push @url_params,"f$i=".$q->url_param("f$i");
109                    push @url_params,"v$i=".$q->url_param("v$i");
110    
111                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
112                  my @param_vals = $q->param("v$i");                  my @param_vals = $q->param("v$i");
113                  my @swish_q;                  my @swish_q;
# Line 108  sub show_results_list { Line 126  sub show_results_list {
126                                          $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
127                                          $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
128                                          $s.="$2* ";                                          $s.="$2* ";
129                                  } elsif (m/(and|or|not)/i) {                                  } elsif (m/^\s*(and|or|not)\s*$/i) {
130                                          $s.="$_ ";                                          $s.="$_ ";
131                                  # don't add * to words with less than x chars                                  # don't add * to words with less than x chars
132                                  } elsif (length($_) <= $MIN_WILDCARD) {                                  } elsif (length($_) <= $MIN_WILDCARD) {
# Line 125  sub show_results_list { Line 143  sub show_results_list {
143                  push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";                  push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";
144          }          }
145    
146          my $tmpl = $self->load_tmpl('results.html');          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);
147    
148          sub esc_html {          sub esc_html {
149                  my $html = shift;                  my $html = shift;
# Line 174  sub show_results_list { Line 192  sub show_results_list {
192          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);
193          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);
194    
195            $tmpl->param('url_params',"?".join("&",@url_params));
196    
197          # create a Pager object          # create a Pager object
198          my $pager = HTML::Pager->new(          my $pager = HTML::Pager->new(
199                  # required parameters                  # required parameters
# Line 208  sub show_results_list { Line 228  sub show_results_list {
228    
229          my $html = $pager->output;          my $html = $pager->output;
230    
231          return $html;          return in_template($html);
232  }  }
233    
234  sub show_index {  sub show_index {
# Line 229  sub show_index { Line 249  sub show_index {
249                  $cfg_global->val('global', 'dbi_passwd') || ''                  $cfg_global->val('global', 'dbi_passwd') || ''
250          );          );
251    
252          my $total = $index->check($field);          my $total = $index->count($field,$limit);
253          if (! $total) {          if (! $total) {
254                  my $tmpl = $self->load_tmpl('no_index.html');                  my $tmpl = $self->load_tmpl('no_index.html');
255                  $tmpl->param('field',$field);                  $tmpl->param('field',$field);
# Line 237  sub show_index { Line 257  sub show_index {
257                  return $html;                  return $html;
258          }          }
259    
260          my $tmpl = $self->load_tmpl('index_res.html');          my $tmpl = $self->load_tmpl('index_res.html', global_vars => 1);
261          $tmpl->param('field',$field);          $tmpl->param('field',$field);
262          $tmpl->param('limit',$limit);          $tmpl->param('limit',$limit);
263          $tmpl->param('total',$total);          $tmpl->param('total',$total);
# Line 252  sub show_index { Line 272  sub show_index {
272                  get_data_callback => sub {                  get_data_callback => sub {
273                          my ($offset, $rows) = @_;                          my ($offset, $rows) = @_;
274    
275                          my @result = $index->fetch($field,'item',$limit, $offset, $rows);                          my @result = $index->fetch($field,$limit, $offset, $rows);
276                          return \@result;                          return \@result;
277                  },                  },
278                  rows => $total,                  rows => $total,
# Line 266  sub show_index { Line 286  sub show_index {
286                  template => $tmpl,                  template => $tmpl,
287          );          );
288    
289          return $pager->output;          return in_template($pager->output);
290  }  }
291    
292  1;  1;

Legend:
Removed from v.121  
changed lines
  Added in v.147

  ViewVC Help
Powered by ViewVC 1.1.26