X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=vhost%2Fwebpac2.cgi;h=5e4ac0ea030d50c36498a7025f0444ed75c3f06c;hb=e85cf693e793caa2069dc9006d5809b72869a265;hp=e59820e2d891c4aed8472977a13ceee562a599c5;hpb=5ebb6723e1fac31e01fc757c4472be1fddc64984;p=webpac2 diff --git a/vhost/webpac2.cgi b/vhost/webpac2.cgi index e59820e..5e4ac0e 100755 --- a/vhost/webpac2.cgi +++ b/vhost/webpac2.cgi @@ -11,9 +11,12 @@ use Data::Page; use Data::Dump qw/dump/; use SWISH::API; use JSON; +use Text::Unaccent::PurePerl qw/unac_string/; +use HTML::FillInForm::Lite; +use Encode; my $range_around = 5; -my $entries_per_page = 30; +my @entries_per_page = ( 30, 50, 100, 500 ); my $debug = param('debug'); print header( @@ -136,6 +139,7 @@ my $inputs_available = 0; foreach ( @{ $db->{input} } ) { my $input = $_->{name} || die "no name in ",dump( $_ ); + next unless defined $stats->{input}->{$input}; # skip inputs without data if ( ! $only_input->{'-labels'}->{$input} ) { push @{ $only_input->{'-values'} }, $input; $only_input->{'-labels'}->{$input} = $_->{description} || $input; @@ -150,6 +154,15 @@ push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css"; dump_yaml( 'style', \@style ); sub search_form { + + my $form_html = "$dir/$path/$path-search.html"; + if ( -e $form_html ) { + my $html = read_file( $form_html ); + my $q = CGI->new(); + my $h = HTML::FillInForm::Lite->new(); + return $h->fill(\$html, $q); + } + qq||, start_form( -action => self_url( query => 0 ) ), checkbox_group( @@ -159,8 +172,9 @@ sub search_form { ), textfield( -name => 'search' ), $attr_operators ? popup_menu( -name => 'attr_operator', %$attr_operators ) : '', - submit, - hidden( -name => 'entries_per_page', -default => $entries_per_page ), + submit( -value => 'Search' ), +# hidden( -name => 'entries_per_page', -default => $entries_per_page ), + popup_menu( -name => 'entries_per_page', -values => [ @entries_per_page ], -title => 'entries per page' ), # we need current_page fixed at 1 so that every submit through form will reset it qq||, checkbox( -name => 'debug', -default => 0 ), # FIXME hidden? @@ -189,6 +203,8 @@ print if ( my $search = param('search') ) { + $search = unac_string( Encode::decode('utf-8',$search) ); + print qq|
@@ -201,7 +217,7 @@ if ( my $search = param('search') ) { my @attrs = param('attr'); my $op = param('attr_operator'); - if ( $search =~ m{(=|"|AND|OR)} ) { + if ( $search =~ m{(=|"|\bAND\b|\bOR\b)} ) { push @search, $search; } elsif ( @attrs ) { @@ -280,9 +296,14 @@ if ( my $search = param('search') ) { while ( my $result = $swish_results->next_result ) { - my $data = from_json $result->property('data'); - + my $data = $result->property('data'); dump_yaml( 'data', $data ); + # FIXME if we produce valid json we shouldn't need eval here! + eval { $data = from_json( $data, {utf8 => 1} ); }; + if ( $@ ) { + warn "ERROR: $@ from ",dump( $data ); + next; + } my $li_class = ''; $li_class = qq| class="z"| if $nr % 2 == 0;