/[webpac2]/trunk/vhost/webpac2.cgi
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/vhost/webpac2.cgi

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

revision 1173 by dpavlin, Sat Apr 25 22:26:29 2009 UTC revision 1226 by dpavlin, Thu Jun 11 17:21:10 2009 UTC
# Line 106  my $stats; Line 106  my $stats;
106    
107  my $db = $config->{databases}->{$database};  my $db = $config->{databases}->{$database};
108    
109  my @attr = keys %{ $stats->{attr} }; # FIXME replace with real gnerated lookup  sub read_config_txt {
110            my ( $file ) = @_;
111  # XXX pipe delimit list!          my $input;
112  my $select_attr_operators = << '__ATTR_OPERATORS__';          my $path ="$dir/$path/$path-$file.txt";
113  Q*                      |       Bilo koja riječ          if ( ! -e $path ) {
114  BW Q            |       Početak                  warn "missing $path";
115  BW Q EW         |       Točan oblik                  return;
116  __ATTR_OPERATORS__          }
117            foreach ( split(/[\n\r]+/, read_file( $path ) ) ) {
118  my $attr_operator;                  my ( $val,$label ) = split(/\s*\t\s*/,$_,2);
119                    push @{ $input->{ '-values' } }, $val;
120  foreach ( split(/[\n\r]+/, $select_attr_operators ) ) {                                  $input->{ '-labels' }->{$val} = $label;
121          my ( $operator,$label ) = split(/\s+\|\s+/,$_,2);          }
122          push @{ $attr_operator->{ '-values' } }, $operator;          return $input;
                 $attr_operator->{ '-labels' }->{$operator} = $label;  
123  }  }
124    
125  warn "## attr_operator = ", dump( $attr_operator );  my $attr_labels    = read_config_txt 'labels';
126    my $attr_operators = read_config_txt 'operators';
127    
128    my @attr = @{ $attr_labels->{'-values'} };
129    @attr = keys %{ $stats->{attr} } unless @attr;
130    
131    
132    warn dump( $attr_labels, $attr_operators );
133    
134  my $only_input;  my $only_input;
135    
# Line 141  my @style = ( '../../style.css' ); Line 147  my @style = ( '../../style.css' );
147  push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";  push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";
148  dump_yaml( 'style', \@style );  dump_yaml( 'style', \@style );
149    
150  print  sub search_form {
151          start_html(          qq|<a name="form"></a>|,
                 -title => $db->{name},  
                 -style => [ @style ],  
         ),  
         h1( $db->{name} ),  
         qq|<div id=description>|, $db->{description}, qq|</div>|,  
152          start_form( -action => self_url( query => 0 ) ),          start_form( -action => self_url( query => 0 ) ),
153                  radio_group(                  checkbox_group(
154                          -name => 'attr',                          -name => 'attr',
155                          -values => [ @attr ],                          %$attr_labels,
156  #                       -linebreak => 0,  #                       -linebreak => 0,
157                  ),                  ),
158                  textfield( -name => 'search' ),                  textfield( -name => 'search' ),
159                  popup_menu( -name => 'attr_operator', %$attr_operator ),                  popup_menu( -name => 'attr_operator', %$attr_operators ),
160                  submit,                  submit,
161                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),
162                  # we need current_page fixed at 1 so that every submit through form will reset it                  # we need current_page fixed at 1 so that every submit through form will reset it
# Line 169  print Line 170  print
170                          -linebreak=> 'true',                          -linebreak=> 'true',
171                  ),                  ),
172                  qq|</div>|,                  qq|</div>|,
173                    end_form,
174            ;
175    }
176    
 ;  
177    
178  print   end_form;  print
179            start_html(
180                    -title => $db->{name},
181                    -style => [ @style ],
182            ),
183            h1( $db->{name} ),
184            qq|<div id=description>|, $db->{description}, qq|</div>|,
185    ;
186    
187  if ( my $search = param('search') ) {  if ( my $search = param('search') ) {
188    
189          print qq|<div id="results">|;          print qq|
190                    <a href="#form" class="skip" title="skip to search form">#</a>
191                    <div id="results">
192            |;
193    
194          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
195          $swish->abort_last_error if $swish->Error;          $swish->abort_last_error if $swish->Error;
196    
         my $pager = Data::Page->new;  
         $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );  
   
         dump_yaml( 'pager', $pager );  
   
197          my @search = ();          my @search = ();
198          if ( $search =~ m{(=|"|AND|OR)} ) {          if ( $search =~ m{(=|"|AND|OR)} ) {
199                  push @search, $search;                  push @search, $search;
200          } elsif ( my $op = param('attr_operator') ) {          } elsif ( my $op = param('attr_operator') ) {
201                  my $attr = param('attr');                  my $attr = param('attr') || 'all';
202                  my $v = $search;                  my $v = $search;
203                  $v =~ s/^\s+//;                  $v =~ s/^\s+//;
204                  warn "-- v: $v\n";                  warn "-- v: $v\n";
# Line 206  if ( my $search = param('search') ) { Line 214  if ( my $search = param('search') ) {
214                                  $attr . '="' . $template . '"';                                  $attr . '="' . $template . '"';
215                                  ;                                  ;
216                  };                  };
217                  $v =~ s{(\s*)(\S+)}{rewrite($1,$2)}ge;                  if ( $op =~ m{\s} ) {
218                            my $template = $op;
219                               $template =~ s{Q}{$v};
220                            $v = $attr . '="' . $template . '"';
221                    } else {
222                            $v =~ s{(\s*)(\S+)}{rewrite($1,$2)}ge;
223                    }
224    
225                  push @search, $v;                  push @search, $v;
226                    
227                  my @only_input = param('only_input');                  my @only_input = param('only_input');
228                  push @search, '(' . join(') OR (', map { "input=$_" } @only_input) . ')' if @only_input;                  push @search, '((' . join(') OR (', map { "input=\"$_\"" } @only_input) . '))' if @only_input;
229          } else {          } else {
230                  push @search, "all=\"$search\"";                  push @search, "all=\"$search\"";
231          }          }
# Line 223  if ( my $search = param('search') ) { Line 237  if ( my $search = param('search') ) {
237    
238          dump_yaml( 'swish_results', $swish_results );          dump_yaml( 'swish_results', $swish_results );
239    
240            my $pager = Data::Page->new;
241            $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );
242          $pager->total_entries( $swish_results->hits );          $pager->total_entries( $swish_results->hits );
243    
244          $swish_results->seek_result( $pager->first );          dump_yaml( 'pager', $pager );
245    
246            $swish_results->seek_result( $pager->first - 1 );
247    
248          if ( ! $pager->total_entries ) {          if ( ! $pager->total_entries ) {
249                  my $no_results = 'No results for search <b>%s</b>';                  my $no_results = 'No results for search <b>%s</b>';
# Line 240  if ( my $search = param('search') ) { Line 258  if ( my $search = param('search') ) {
258    
259                  print qq|<ul class="pager">$pager_html</ul>\n\n| if $pager_html;                  print qq|<ul class="pager">$pager_html</ul>\n\n| if $pager_html;
260    
261                  my $start = $pager->first;                  my $nr = $pager->first;
262                  print qq|<ol start=$start>\n|;                  print qq|<ol start=$nr>\n|;
263    
264                  my $limit = $pager->entries_on_this_page;                  my $limit = $pager->entries_on_this_page;
265    
266                    my $nr = 1;
267    
268                  while ( my $result = $swish_results->next_result ) {                  while ( my $result = $swish_results->next_result ) {
                         last if $limit-- == 0;  
269    
270                          my $data = from_json $result->property('data');                          my $data = from_json $result->property('data');
271    
272                          dump_yaml( 'data', $data );                          dump_yaml( 'data', $data );
273    
274                          print qq|<li>|;                          my $li_class = '';
275                            $li_class = qq| class="z"| if $nr % 2 == 0;
276                            print qq|<li$li_class>|;
277                          foreach my $attr ( @attr ) {                          foreach my $attr ( @attr ) {
278                                  next unless defined $data->{$attr};                                  next unless defined $data->{$attr};
279                                  my $v = $data->{$attr};                                  my $v = $data->{$attr};
# Line 262  if ( my $search = param('search') ) { Line 283  if ( my $search = param('search') ) {
283                                                  warn "disable html markup for $attr: $@";                                                  warn "disable html markup for $attr: $@";
284                                                  $html_markup_skip->{$attr} = $@;                                                  $html_markup_skip->{$attr} = $@;
285                                          }                                          }
286                                    } else {
287                                            $v =~ s{(http://\S+)}{<a href="$1">$1</a>};
288                                  }                                  }
289                                  print qq|<div><label>$attr</label><span class=$attr>$v</span></div>\n|;                                  my $label = $attr_labels->{'-labels'}->{$attr} || $attr;
290                                    print qq|<div><label>$label</label><span class=$attr>$v</span></div>\n|;
291                          }                          }
292                          print qq|</li>\n|;                          print qq|</li>\n|;
293    
294                            last if $nr++ == $pager->last;
295                  }                  }
296                  print qq|</ol>\n\n|;                  print qq|</ol>\n\n|;
297    
# Line 277  if ( my $search = param('search') ) { Line 303  if ( my $search = param('search') ) {
303    
304  }  }
305    
306    print search_form;
307    
308  dump_yaml( "config databases $database", $db );  dump_yaml( "config databases $database", $db );
309  dump_yaml( 'html_markup_skip', $html_markup_skip );  dump_yaml( 'html_markup_skip', $html_markup_skip );
310    

Legend:
Removed from v.1173  
changed lines
  Added in v.1226

  ViewVC Help
Powered by ViewVC 1.1.26