/[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 1192 by dpavlin, Tue May 26 15:00:57 2009 UTC revision 1226 by dpavlin, Thu Jun 11 17:21:10 2009 UTC
# Line 109  my $db = $config->{databases}->{$databas Line 109  my $db = $config->{databases}->{$databas
109  sub read_config_txt {  sub read_config_txt {
110          my ( $file ) = @_;          my ( $file ) = @_;
111          my $input;          my $input;
112          foreach ( split(/[\n\r]+/, read_file( "$dir/$path/$path-$file.txt" ) ) ) {          my $path ="$dir/$path/$path-$file.txt";
113            if ( ! -e $path ) {
114                    warn "missing $path";
115                    return;
116            }
117            foreach ( split(/[\n\r]+/, read_file( $path ) ) ) {
118                  my ( $val,$label ) = split(/\s*\t\s*/,$_,2);                  my ( $val,$label ) = split(/\s*\t\s*/,$_,2);
119                  push @{ $input->{ '-values' } }, $val;                  push @{ $input->{ '-values' } }, $val;
120                                  $input->{ '-labels' }->{$val} = $label;                                  $input->{ '-labels' }->{$val} = $label;
# Line 145  dump_yaml( 'style', \@style ); Line 150  dump_yaml( 'style', \@style );
150  sub search_form {  sub search_form {
151          qq|<a name="form"></a>|,          qq|<a name="form"></a>|,
152          start_form( -action => self_url( query => 0 ) ),          start_form( -action => self_url( query => 0 ) ),
153                  radio_group(                  checkbox_group(
154                          -name => 'attr',                          -name => 'attr',
155                          %$attr_labels,                          %$attr_labels,
156  #                       -linebreak => 0,  #                       -linebreak => 0,
# Line 193  if ( my $search = param('search') ) { Line 198  if ( my $search = param('search') ) {
198          if ( $search =~ m{(=|"|AND|OR)} ) {          if ( $search =~ m{(=|"|AND|OR)} ) {
199                  push @search, $search;                  push @search, $search;
200          } elsif ( my $op = param('attr_operator') ) {          } elsif ( my $op = param('attr_operator') ) {
201                  my $attr = param('attr');                  my $attr = param('attr') || 'all';
202                  my $v = $search;                  my $v = $search;
203                  $v =~ s/^\s+//;                  $v =~ s/^\s+//;
204                  warn "-- v: $v\n";                  warn "-- v: $v\n";
# Line 278  if ( my $search = param('search') ) { Line 283  if ( my $search = param('search') ) {
283                                                  warn "disable html markup for $attr: $@";                                                  warn "disable html markup for $attr: $@";
284                                                  $html_markup_skip->{$attr} = $@;                                                  $html_markup_skip->{$attr} = $@;
285                                          }                                          }
286                                    } else {
287                                            $v =~ s{(http://\S+)}{<a href="$1">$1</a>};
288                                  }                                  }
289                                  my $label = $attr_labels->{'-labels'}->{$attr} || $attr;                                  my $label = $attr_labels->{'-labels'}->{$attr} || $attr;
290                                  print qq|<div><label>$label</label><span class=$attr>$v</span></div>\n|;                                  print qq|<div><label>$label</label><span class=$attr>$v</span></div>\n|;

Legend:
Removed from v.1192  
changed lines
  Added in v.1226

  ViewVC Help
Powered by ViewVC 1.1.26