--- trunk/vhost/webpac2.cgi 2009/04/25 17:11:33 1165 +++ trunk/vhost/webpac2.cgi 2009/04/25 22:26:29 1173 @@ -22,7 +22,7 @@ sub dump_yaml { my $name = shift; - print qq|
# $name\n|, YAML::Dump( @_ ), qq|
| if $debug; + print qq|
$name
|, YAML::Dump( @_ ), qq|
| if $debug; } sub show_pager { @@ -76,9 +76,13 @@ } my $path = $ENV{PATH_INFO} || 'ecas'; +$path =~ s{^/+}{}; +$path =~ s{/+$}{}; my $dir = $0; $dir =~ s{/[^/]+.cgi}{}; +dump_yaml( 'dir', $dir ); + my $config = YAML::LoadFile( "$dir/$path/config.yml" ); my $database = (keys %{ $config->{databases} })[0]; @@ -133,10 +137,14 @@ warn "## only_input = ", dump( $only_input ); +my @style = ( '../../style.css' ); +push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css"; +dump_yaml( 'style', \@style ); + print start_html( -title => $db->{name}, - -style => '../../style.css', + -style => [ @style ], ), h1( $db->{name} ), qq|
|, $db->{description}, qq|
|, @@ -150,7 +158,8 @@ popup_menu( -name => 'attr_operator', %$attr_operator ), submit, hidden( -name => 'entries_per_page', -default => $entries_per_page ), - hidden( -name => 'current_page', -default => 1 ), + # we need current_page fixed at 1 so that every submit through form will reset it + qq||, checkbox( -name => 'debug', -default => 0 ), # FIXME hidden? qq|
|, h2( 'Select input' ), @@ -172,9 +181,7 @@ my $swish = SWISH::API->new( "$dir/../var/swish/$database" ); $swish->abort_last_error if $swish->Error; - param( 'entries_per_page', $entries_per_page ) unless param('entries_per_page'); # FIXME not needed? my $pager = Data::Page->new; - $pager->total_entries( param('current_page') * param('entries_per_page') ); $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ ); dump_yaml( 'pager', $pager ); @@ -218,6 +225,8 @@ $pager->total_entries( $swish_results->hits ); + $swish_results->seek_result( $pager->first ); + if ( ! $pager->total_entries ) { my $no_results = 'No results for search %s'; $no_results = $swish->error_string . '
%s' if $swish->error; @@ -234,9 +243,15 @@ my $start = $pager->first; print qq|
    \n|; + my $limit = $pager->entries_on_this_page; + while ( my $result = $swish_results->next_result ) { + last if $limit-- == 0; + my $data = from_json $result->property('data'); + dump_yaml( 'data', $data ); + print qq|
  1. |; foreach my $attr ( @attr ) { next unless defined $data->{$attr};