/[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 1249 by dpavlin, Fri Jul 24 09:29:03 2009 UTC revision 1329 by dpavlin, Mon Mar 8 17:28:02 2010 UTC
# Line 12  use Data::Dump qw/dump/; Line 12  use Data::Dump qw/dump/;
12  use SWISH::API;  use SWISH::API;
13  use JSON;  use JSON;
14  use Text::Unaccent::PurePerl qw/unac_string/;  use Text::Unaccent::PurePerl qw/unac_string/;
15    use HTML::FillInForm::Lite;
16    use Encode;
17    
18  my $range_around = 5;  my $range_around = 5;
19  my @entries_per_page = ( 30, 50, 100, 500 );  my @entries_per_page = ( 30, 50, 100, 500 );
# Line 152  push @style, "../../$path/$path.css" if Line 154  push @style, "../../$path/$path.css" if
154  dump_yaml( 'style', \@style );  dump_yaml( 'style', \@style );
155    
156  sub search_form {  sub search_form {
157    
158            my $form_html = "$dir/$path/$path-search.html";
159            if ( -e $form_html ) {
160                    my $html = read_file( $form_html );
161                    my $q = CGI->new();
162                    my $h = HTML::FillInForm::Lite->new();
163                    return $h->fill(\$html, $q);
164            }
165    
166          qq|<a name="form"></a>|,          qq|<a name="form"></a>|,
167          start_form( -action => self_url( query => 0 ) ),          start_form( -action => self_url( query => 0 ) ),
168                  checkbox_group(                  checkbox_group(
# Line 192  print Line 203  print
203    
204  if ( my $search = param('search') ) {  if ( my $search = param('search') ) {
205    
206          $search = unac_string( $search );          $search = unac_string( Encode::decode('utf-8',$search) );
207    
208          print qq|          print qq|
209                  <a href="#form" class="skip" title="skip to search form">#</a>                  <a href="#form" class="skip" title="skip to search form">#</a>
# Line 206  if ( my $search = param('search') ) { Line 217  if ( my $search = param('search') ) {
217          my @attrs = param('attr');          my @attrs = param('attr');
218          my $op = param('attr_operator');          my $op = param('attr_operator');
219    
220          if ( $search =~ m{(=|"|AND|OR)} ) {          if ( $search =~ m{(=|"|\bAND\b|\bOR\b)} ) {
221                  push @search, $search;                  push @search, $search;
222          } elsif ( @attrs ) {          } elsif ( @attrs ) {
223    

Legend:
Removed from v.1249  
changed lines
  Added in v.1329

  ViewVC Help
Powered by ViewVC 1.1.26