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

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

revision 73 by dpavlin, Sat Jul 5 22:31:46 2003 UTC revision 124 by dpavlin, Wed Sep 3 23:07:21 2003 UTC
# Line 15  use lib '..'; Line 15  use lib '..';
15  use index_DBI;  use index_DBI;
16  use back2html;  use back2html;
17    
18  # configuration options  
19  # FIXME they really should go in configuration file!  # read global.conf configuration
20  my $TEMPLATE_PATH = '/data/webpac/template_html';  my $cfg_global = new Config::IniFiles( -file => '../global.conf' ) || die "can't open 'global.conf'";
21  my $CHARSET = 'ISO-8859-2';  
22  my $SWISH = '/usr/bin/swish-e';  # configuration options from global.conf
23  my $INDEX = '/data/webpac/index/isis.index';  my $TEMPLATE_PATH = $cfg_global->val('webpac', 'template_html') || die "need template_html in global.conf, section webpac";
24  my $MAX_HITS = 0;  my $CHARSET = $cfg_global->val('webpac', 'charset') || 'ISO-8859-1';
25  my $ON_PAGE = 10;  my $SWISH = $cfg_global->val('webpac', 'swish') || '/usr/bin/swish-e';
26    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;
28    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
33    
34  my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET);  my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET);
35    
 # read global.conf configuration  
 my $cfg_global = new Config::IniFiles( -file => '../global.conf' ) || die "can't open 'global.conf'";  
   
36    
37  sub setup {  sub setup {
38          my $self = shift;          my $self = shift;
# Line 76  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    
83          for(my $i = 1; $i <=30; $i++) {          for(my $i = 1; $i <=30; $i++) {
84    
85                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
86    
87                  next if (! $q->param("v$i"));                  next if (! $q->param("v$i"));
88                  next if (! $q->param("f$i"));                  next if (! $q->param("f$i"));
89    
90                    push @persist_vars, "f$i";
91                    push @persist_vars, "v$i";
92    
93                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
94                  my @param_vals = $q->param("v$i");                  my @param_vals = $q->param("v$i");
95                  my @swish_q;                  my @swish_q;
# Line 100  sub show_results_list { Line 108  sub show_results_list {
108                                          $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
109                                          $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
110                                          $s.="$2* ";                                          $s.="$2* ";
111                                  } elsif (m/(and|or|not)/i) {                                  } elsif (m/^\s*(and|or|not)\s*$/i) {
112                                            $s.="$_ ";
113                                    # don't add * to words with less than x chars
114                                    } elsif (length($_) <= $MIN_WILDCARD) {
115                                          $s.="$_ ";                                          $s.="$_ ";
116                                  } else {                                  } else {
117                                          $s.="$_* ";                                          $s.="$_* ";
# Line 116  sub show_results_list { Line 127  sub show_results_list {
127    
128          my $tmpl = $self->load_tmpl('results.html');          my $tmpl = $self->load_tmpl('results.html');
129    
130            sub esc_html {
131                    my $html = shift;
132                    $html =~ s/</&lt;/g;
133                    $html =~ s/>/&gt;/g;
134                    return $html;
135            }
136    
137          # call swish          # call swish
138          my $sh = SWISH->connect('Fork',          my $sh = SWISH->connect('Fork',
139                  prog     => $SWISH,                  prog     => $SWISH,
# Line 127  sub show_results_list { Line 145  sub show_results_list {
145                          push @swish_results, {                          push @swish_results, {
146                                  nr => ($#swish_results + 2),                                  nr => ($#swish_results + 2),
147                                  path => $hit->swishdocpath,                                  path => $hit->swishdocpath,
148                                  headline => $from_utf8->convert($hit->headline),                                  headline => esc_html($from_utf8->convert($hit->headline)),
149                                  html => back2html($from_utf8->convert($hit->html)),                                  html => back2html($from_utf8->convert($hit->html)),
150                                  rank => $hit->swishrank };                                  rank => $hit->swishrank };
151    
# Line 139  sub show_results_list { Line 157  sub show_results_list {
157          die $SWISH::errstr unless $sh;          die $SWISH::errstr unless $sh;
158          # construct swish query          # construct swish query
159          my $sw_q = join(" and ",@s_arr);          my $sw_q = join(" and ",@s_arr);
160          if (@path_arr) {          if (@path_arr && $q->param('show_full')) {
161                  $sw_q .= "and (swishdocpath=\"";                  $sw_q .= "and (swishdocpath=\"";
162                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
163                  $sw_q .= "\")";                  $sw_q .= "\")";
164                  $tmpl->param('full',1); # show full records                  $tmpl->param('full',1); # show full records
165            } else {
166                    $tmpl->param('full',0);
167          }          }
168    
169          my $hits = $sh->query($sw_q);          my $hits = $sh->query($sw_q);
# Line 151  sub show_results_list { Line 171  sub show_results_list {
171          $tmpl->param('hits',$hits);          $tmpl->param('hits',$hits);
172          $tmpl->param('search',$sw_q);          $tmpl->param('search',$sw_q);
173    
174          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 1);          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);
175          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 1);          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);
176    
177          # create a Pager object          # create a Pager object
178          my $pager = HTML::Pager->new(          my $pager = HTML::Pager->new(
# Line 163  sub show_results_list { Line 183  sub show_results_list {
183    
184                          my @result;                          my @result;
185                          for (my $i=0; $i<$rows; $i++) {                          for (my $i=0; $i<$rows; $i++) {
186                                  push @result, $swish_results[$offset+$i] if $swish_results[$offset+$i];                                  my $r = $swish_results[$offset+$i];
187                                    if ($r && $tmpl->param('full')) {
188                                            push @result, $r;
189                                    } elsif ($r) {
190                                            # if not full output, skip html
191                                            delete $r->{html};
192                                            push @result, $r;
193                                    }
194                          }                          }
195                          return \@result;                          return \@result;
196                  },                  },
197                  rows => $hits,                  rows => $hits,
198                  page_size => $ON_PAGE,                  page_size => $ON_PAGE,
199                  # some optional parameters                  # some optional parameters
200                  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',  
                         ],  
201                  #cell_space_color => '#000000',                  #cell_space_color => '#000000',
202                  #cell_background_color => '#ffffff',                  #cell_background_color => '#ffffff',
203                  #nav_background_color => '#dddddd',                  #nav_background_color => '#dddddd',
# Line 221  sub show_index { Line 237  sub show_index {
237                  return $html;                  return $html;
238          }          }
239    
240          my $tmpl = $self->load_tmpl('index_res.html');          my $tmpl = $self->load_tmpl('index_res.html', global_vars => 1);
241          $tmpl->param('field',$field);          $tmpl->param('field',$field);
242          $tmpl->param('limit',$limit);          $tmpl->param('limit',$limit);
243          $tmpl->param('total',$total);          $tmpl->param('total',$total);

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

  ViewVC Help
Powered by ViewVC 1.1.26