/[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 1177 by dpavlin, Wed Apr 29 18:06:19 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__';          foreach ( split(/[\n\r]+/, read_file( "$dir/$path/$path-$file.txt" ) ) ) {
113  Q*                      |       Bilo koja riječ                  my ( $val,$label ) = split(/\s*\t\s*/,$_,2);
114  BW Q            |       Početak                  push @{ $input->{ '-values' } }, $val;
115  BW Q EW         |       Točan oblik                                  $input->{ '-labels' }->{$val} = $label;
116  __ATTR_OPERATORS__          }
117            return $input;
 my $attr_operator;  
   
 foreach ( split(/[\n\r]+/, $select_attr_operators ) ) {  
         my ( $operator,$label ) = split(/\s+\|\s+/,$_,2);  
         push @{ $attr_operator->{ '-values' } }, $operator;  
                 $attr_operator->{ '-labels' }->{$operator} = $label;  
118  }  }
119    
120  warn "## attr_operator = ", dump( $attr_operator );  my $attr_labels    = read_config_txt 'labels';
121    my $attr_operators = read_config_txt 'operators';
122    
123    my @attr = @{ $attr_labels->{'-values'} };
124    @attr = keys %{ $stats->{attr} } unless @attr;
125    
126    
127    warn dump( $attr_labels, $attr_operators );
128    
129  my $only_input;  my $only_input;
130    
# Line 141  my @style = ( '../../style.css' ); Line 142  my @style = ( '../../style.css' );
142  push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";  push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";
143  dump_yaml( 'style', \@style );  dump_yaml( 'style', \@style );
144    
145  print  sub search_form {
146          start_html(          qq|<a name="form"></a>|,
                 -title => $db->{name},  
                 -style => [ @style ],  
         ),  
         h1( $db->{name} ),  
         qq|<div id=description>|, $db->{description}, qq|</div>|,  
147          start_form( -action => self_url( query => 0 ) ),          start_form( -action => self_url( query => 0 ) ),
148                  radio_group(                  radio_group(
149                          -name => 'attr',                          -name => 'attr',
150                          -values => [ @attr ],                          %$attr_labels,
151  #                       -linebreak => 0,  #                       -linebreak => 0,
152                  ),                  ),
153                  textfield( -name => 'search' ),                  textfield( -name => 'search' ),
154                  popup_menu( -name => 'attr_operator', %$attr_operator ),                  popup_menu( -name => 'attr_operator', %$attr_operators ),
155                  submit,                  submit,
156                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),
157                  # 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 165  print
165                          -linebreak=> 'true',                          -linebreak=> 'true',
166                  ),                  ),
167                  qq|</div>|,                  qq|</div>|,
168                    end_form,
169            ;
170    }
171    
 ;  
172    
173  print   end_form;  print
174            start_html(
175                    -title => $db->{name},
176                    -style => [ @style ],
177            ),
178            h1( $db->{name} ),
179            qq|<div id=description>|, $db->{description}, qq|</div>|,
180    ;
181    
182  if ( my $search = param('search') ) {  if ( my $search = param('search') ) {
183    
184          print qq|<div id="results">|;          print qq|
185                    <a href="#form" class="skip" title="skip to search form">#</a>
186                    <div id="results">
187            |;
188    
189          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
190          $swish->abort_last_error if $swish->Error;          $swish->abort_last_error if $swish->Error;
191    
         my $pager = Data::Page->new;  
         $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );  
   
         dump_yaml( 'pager', $pager );  
   
192          my @search = ();          my @search = ();
193          if ( $search =~ m{(=|"|AND|OR)} ) {          if ( $search =~ m{(=|"|AND|OR)} ) {
194                  push @search, $search;                  push @search, $search;
# Line 223  if ( my $search = param('search') ) { Line 226  if ( my $search = param('search') ) {
226    
227          dump_yaml( 'swish_results', $swish_results );          dump_yaml( 'swish_results', $swish_results );
228    
229            my $pager = Data::Page->new;
230            $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );
231          $pager->total_entries( $swish_results->hits );          $pager->total_entries( $swish_results->hits );
232    
233          $swish_results->seek_result( $pager->first );          dump_yaml( 'pager', $pager );
234    
235            $swish_results->seek_result( $pager->first - 1 );
236    
237          if ( ! $pager->total_entries ) {          if ( ! $pager->total_entries ) {
238                  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 247  if ( my $search = param('search') ) {
247    
248                  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;
249    
250                  my $start = $pager->first;                  my $nr = $pager->first;
251                  print qq|<ol start=$start>\n|;                  print qq|<ol start=$nr>\n|;
252    
253                  my $limit = $pager->entries_on_this_page;                  my $limit = $pager->entries_on_this_page;
254    
255                    my $nr = 1;
256    
257                  while ( my $result = $swish_results->next_result ) {                  while ( my $result = $swish_results->next_result ) {
                         last if $limit-- == 0;  
258    
259                          my $data = from_json $result->property('data');                          my $data = from_json $result->property('data');
260    
261                          dump_yaml( 'data', $data );                          dump_yaml( 'data', $data );
262    
263                          print qq|<li>|;                          my $li_class = '';
264                            $li_class = qq| class="z"| if $nr % 2 == 0;
265                            print qq|<li$li_class>|;
266                          foreach my $attr ( @attr ) {                          foreach my $attr ( @attr ) {
267                                  next unless defined $data->{$attr};                                  next unless defined $data->{$attr};
268                                  my $v = $data->{$attr};                                  my $v = $data->{$attr};
# Line 263  if ( my $search = param('search') ) { Line 273  if ( my $search = param('search') ) {
273                                                  $html_markup_skip->{$attr} = $@;                                                  $html_markup_skip->{$attr} = $@;
274                                          }                                          }
275                                  }                                  }
276                                  print qq|<div><label>$attr</label><span class=$attr>$v</span></div>\n|;                                  my $label = $attr_labels->{'-labels'}->{$attr} || $attr;
277                                    print qq|<div><label>$label</label><span class=$attr>$v</span></div>\n|;
278                          }                          }
279                          print qq|</li>\n|;                          print qq|</li>\n|;
280    
281                            last if $nr++ == $pager->last;
282                  }                  }
283                  print qq|</ol>\n\n|;                  print qq|</ol>\n\n|;
284    
# Line 277  if ( my $search = param('search') ) { Line 290  if ( my $search = param('search') ) {
290    
291  }  }
292    
293    print search_form;
294    
295  dump_yaml( "config databases $database", $db );  dump_yaml( "config databases $database", $db );
296  dump_yaml( 'html_markup_skip', $html_markup_skip );  dump_yaml( 'html_markup_skip', $html_markup_skip );
297    

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

  ViewVC Help
Powered by ViewVC 1.1.26