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

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

revision 124 by dpavlin, Wed Sep 3 23:07:21 2003 UTC revision 150 by dpavlin, Sun Nov 16 22:39:06 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++) {          # 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 90  sub show_results_list { Line 106  sub show_results_list {
106                  push @persist_vars, "f$i";                  push @persist_vars, "f$i";
107                  push @persist_vars, "v$i";                  push @persist_vars, "v$i";
108    
109                    push @url_params,"f$i=".$q->url_param("f$i");
110                    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 107  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;
# Line 125  sub show_results_list { Line 147  sub show_results_list {
147                  push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";                  push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";
148          }          }
149    
150          my $tmpl = $self->load_tmpl('results.html');          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);
151    
152          sub esc_html {          sub esc_html {
153                  my $html = shift;                  my $html = shift;
# Line 162  sub show_results_list { Line 184  sub show_results_list {
184                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
185                  $sw_q .= "\")";                  $sw_q .= "\")";
186                  $tmpl->param('full',1); # show full records                  $tmpl->param('full',1); # show full records
187            } elsif ($q->param('show_full')) {
188                    # just show full path, no path defined
189                    $tmpl->param('full',1);
190          } else {          } else {
191                  $tmpl->param('full',0);                  $tmpl->param('full',0);
192          }          }
# Line 174  sub show_results_list { Line 199  sub show_results_list {
199          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);
200          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);
201    
202            $tmpl->param('url_params',"?".join("&",@url_params));
203    
204          # create a Pager object          # create a Pager object
205          my $pager = HTML::Pager->new(          my $pager = HTML::Pager->new(
206                  # required parameters                  # required parameters
# Line 208  sub show_results_list { Line 235  sub show_results_list {
235    
236          my $html = $pager->output;          my $html = $pager->output;
237    
238          return $html;          return in_template($html);
239  }  }
240    
241  sub show_index {  sub show_index {
# Line 229  sub show_index { Line 256  sub show_index {
256                  $cfg_global->val('global', 'dbi_passwd') || ''                  $cfg_global->val('global', 'dbi_passwd') || ''
257          );          );
258    
259          my $total = $index->check($field);          my $total = $index->count($field,$limit);
260          if (! $total) {          if (! $total) {
261                  my $tmpl = $self->load_tmpl('no_index.html');                  my $tmpl = $self->load_tmpl('no_index.html');
262                  $tmpl->param('field',$field);                  $tmpl->param('field',$field);
# Line 252  sub show_index { Line 279  sub show_index {
279                  get_data_callback => sub {                  get_data_callback => sub {
280                          my ($offset, $rows) = @_;                          my ($offset, $rows) = @_;
281    
282                          my @result = $index->fetch($field,'item',$limit, $offset, $rows);                          my @result = $index->fetch($field,$limit, $offset, $rows);
283                          return \@result;                          return \@result;
284                  },                  },
285                  rows => $total,                  rows => $total,
# Line 266  sub show_index { Line 293  sub show_index {
293                  template => $tmpl,                  template => $tmpl,
294          );          );
295    
296          return $pager->output;          return in_template($pager->output);
297  }  }
298    
299  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26