/[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 1165 by dpavlin, Sat Apr 25 17:11:33 2009 UTC revision 1174 by dpavlin, Sun Apr 26 00:07:58 2009 UTC
# Line 22  print header( Line 22  print header(
22    
23  sub dump_yaml {  sub dump_yaml {
24          my $name = shift;          my $name = shift;
25          print qq|<pre># $name\n|, YAML::Dump( @_ ), qq|</pre>| if $debug;          print qq|<div class=dump><tt>$name</tt><pre>|, YAML::Dump( @_ ), qq|</pre></div>| if $debug;
26  }  }
27    
28  sub show_pager {  sub show_pager {
# Line 76  sub show_pager { Line 76  sub show_pager {
76  }  }
77    
78  my $path = $ENV{PATH_INFO} || 'ecas';  my $path = $ENV{PATH_INFO} || 'ecas';
79    $path =~ s{^/+}{};
80    $path =~ s{/+$}{};
81  my $dir = $0;  my $dir = $0;
82  $dir =~ s{/[^/]+.cgi}{};  $dir =~ s{/[^/]+.cgi}{};
83    
84    dump_yaml( 'dir', $dir );
85    
86  my $config = YAML::LoadFile( "$dir/$path/config.yml" );  my $config = YAML::LoadFile( "$dir/$path/config.yml" );
87    
88  my $database = (keys %{ $config->{databases} })[0];  my $database = (keys %{ $config->{databases} })[0];
# Line 102  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            my $input;
112            foreach ( split(/[\n\r]+/, read_file( "$dir/$path/$path-$file.txt" ) ) ) {
113                    my ( $val,$label ) = split(/\s*\t\s*/,$_,2);
114                    push @{ $input->{ '-values' } }, $val;
115                                    $input->{ '-labels' }->{$val} = $label;
116            }
117            return $input;
118    }
119    
120  # XXX pipe delimit list!  my $attr_labels    = read_config_txt 'labels';
121  my $select_attr_operators = << '__ATTR_OPERATORS__';  my $attr_operators = read_config_txt 'operators';
 Q*                      |       Bilo koja riječ  
 BW Q            |       Početak  
 BW Q EW         |       Točan oblik  
 __ATTR_OPERATORS__  
122    
123  my $attr_operator;  my @attr = @{ $attr_labels->{'-values'} };
124    @attr = keys %{ $stats->{attr} } unless @attr;
125    
 foreach ( split(/[\n\r]+/, $select_attr_operators ) ) {  
         my ( $operator,$label ) = split(/\s+\|\s+/,$_,2);  
         push @{ $attr_operator->{ '-values' } }, $operator;  
                 $attr_operator->{ '-labels' }->{$operator} = $label;  
 }  
126    
127  warn "## attr_operator = ", dump( $attr_operator );  warn dump( $attr_labels, $attr_operators );
128    
129  my $only_input;  my $only_input;
130    
# Line 133  foreach ( @{ $db->{input} } ) { Line 138  foreach ( @{ $db->{input} } ) {
138    
139  warn "## only_input = ", dump( $only_input );  warn "## only_input = ", dump( $only_input );
140    
141    my @style = ( '../../style.css' );
142    push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";
143    dump_yaml( 'style', \@style );
144    
145  print  print
146          start_html(          start_html(
147                  -title => $db->{name},                  -title => $db->{name},
148                  -style => '../../style.css',                  -style => [ @style ],
149          ),          ),
150          h1( $db->{name} ),          h1( $db->{name} ),
151          qq|<div id=description>|, $db->{description}, qq|</div>|,          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(                  radio_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                  hidden( -name => 'current_page', -default => 1 ),                  # we need current_page fixed at 1 so that every submit through form will reset it
163                    qq|<input type=hidden name=current_page value=1 >|,
164                  checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?                  checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?
165                  qq|<div id=inputs>|,                  qq|<div id=inputs>|,
166                  h2( 'Select input' ),                  h2( 'Select input' ),
# Line 172  if ( my $search = param('search') ) { Line 182  if ( my $search = param('search') ) {
182          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
183          $swish->abort_last_error if $swish->Error;          $swish->abort_last_error if $swish->Error;
184    
         param( 'entries_per_page', $entries_per_page ) unless param('entries_per_page'); # FIXME not needed?  
185          my $pager = Data::Page->new;          my $pager = Data::Page->new;
         $pager->total_entries( param('current_page') * param('entries_per_page') );  
186          $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );          $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );
187    
188          dump_yaml( 'pager', $pager );          dump_yaml( 'pager', $pager );
# Line 218  if ( my $search = param('search') ) { Line 226  if ( my $search = param('search') ) {
226    
227          $pager->total_entries( $swish_results->hits );          $pager->total_entries( $swish_results->hits );
228    
229            $swish_results->seek_result( $pager->first );
230    
231          if ( ! $pager->total_entries ) {          if ( ! $pager->total_entries ) {
232                  my $no_results = 'No results for search <b>%s</b>';                  my $no_results = 'No results for search <b>%s</b>';
233                  $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;                  $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;
# Line 234  if ( my $search = param('search') ) { Line 244  if ( my $search = param('search') ) {
244                  my $start = $pager->first;                  my $start = $pager->first;
245                  print qq|<ol start=$start>\n|;                  print qq|<ol start=$start>\n|;
246    
247                    my $limit = $pager->entries_on_this_page;
248    
249                  while ( my $result = $swish_results->next_result ) {                  while ( my $result = $swish_results->next_result ) {
250                            last if $limit-- == 0;
251    
252                          my $data = from_json $result->property('data');                          my $data = from_json $result->property('data');
253    
254                            dump_yaml( 'data', $data );
255    
256                          print qq|<li>|;                          print qq|<li>|;
257                          foreach my $attr ( @attr ) {                          foreach my $attr ( @attr ) {
258                                  next unless defined $data->{$attr};                                  next unless defined $data->{$attr};
# Line 248  if ( my $search = param('search') ) { Line 264  if ( my $search = param('search') ) {
264                                                  $html_markup_skip->{$attr} = $@;                                                  $html_markup_skip->{$attr} = $@;
265                                          }                                          }
266                                  }                                  }
267                                  print qq|<div><label>$attr</label><span class=$attr>$v</span></div>\n|;                                  my $label = $attr_labels->{'-labels'}->{$attr} || $attr;
268                                    print qq|<div><label>$label</label><span class=$attr>$v</span></div>\n|;
269                          }                          }
270                          print qq|</li>\n|;                          print qq|</li>\n|;
271                  }                  }

Legend:
Removed from v.1165  
changed lines
  Added in v.1174

  ViewVC Help
Powered by ViewVC 1.1.26