/[webpac2]/Webpacus/lib/Webpacus/Model/WebPAC.pm
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 /Webpacus/lib/Webpacus/Model/WebPAC.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 404 by dpavlin, Sun Feb 19 20:16:11 2006 UTC revision 413 by dpavlin, Mon Feb 20 21:47:54 2006 UTC
# Line 245  sub search { Line 245  sub search {
245    
246          $log->debug( sprintf("search took %.6fs and returned $hits hits.", $times->{est}) );          $log->debug( sprintf("search took %.6fs and returned $hits hits.", $times->{est}) );
247    
248          $log->dumper($result->{hints}, 'result->hints' );          $self->{hints} = $result->{hints};
249            $log->dumper($self->{hints}, 'hints' );
250    
251          #          #
252          # fetch results          # fetch results
# Line 330  sub search { Line 331  sub search {
331          return \@results;          return \@results;
332  }  }
333    
334    =head2 hints
335    
336      my $hints = $m->hints;
337    
338    Return various useful hints about result
339    
340    =cut
341    
342    sub hints {
343            my $self = shift;
344    
345            unless ($self->{hints}) {
346                    $self->{log}->fatal("no hints found!");
347                    return;
348            }
349    
350            my $hints;
351    
352            while (my ($key,$val) = each %{ $self->{hints} }) {
353    
354                    if ($key =~ m/^(?:HITS*|TIME|DOCNUM|WORDNUM)$/) {
355                            $hints->{ lc($key) } = $val;
356                    } elsif ($key =~ m/^HINT#/) {
357                            my ($word,$count) = split(/\t/,$val,2);
358                            $hints->{words}->{$word} = $count;
359                    } elsif ($key =~ m/^LINK#/) {
360                            my ($url,undef,undef,undef,undef,undef,$results) = split(/\t/,$val,7);
361                            if ($url =~ m#/node/(.+)$#) {
362                                    $hints->{node}->{$1} = $results;
363                            }
364                    }
365            }
366    
367            return $hints;
368    }
369    
370    
371  =head2 record  =head2 record
372    
373    my $html = $m->record(    my $html = $m->record(
# Line 514  It also has follwing template toolikit f Line 552  It also has follwing template toolikit f
552    
553  =cut  =cut
554    
555    # Escape <, >, & and ", and to produce valid XML
556    my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  
557    my $escape_re  = join '|' => keys %escape;
558    
559  sub apply {  sub apply {
560          my $self = shift;          my $self = shift;
561    
# Line 561  C<d('FieldName','delimiter')>, where C<d Line 603  C<d('FieldName','delimiter')>, where C<d
603                          if (ref($v) eq 'ARRAY') {                          if (ref($v) eq 'ARRAY') {
604                                  if ($#{$v} == 0) {                                  if ($#{$v} == 0) {
605                                          $v = $v->[0];                                          $v = $v->[0];
606                                            $v =~ s/($escape_re)/$escape{$1}/g;
607                                  } else {                                  } else {
608                                          $join = $default_delimiter->{$type} unless defined($join);                                          $join = $default_delimiter->{$type} unless defined($join);
609                                          $v = join($join, @{$v});                                          $v = join($join, map {
610                                                    s/($escape_re)/$escape{$1}/g;
611                                            } @{$v});
612                                  }                                  }
613                          } else {                          } else {
614                                  warn("TT filter $type(): field $name values aren't ARRAY, ignoring");                                  warn("TT filter $type(): field $name values aren't ARRAY, ignoring");

Legend:
Removed from v.404  
changed lines
  Added in v.413

  ViewVC Help
Powered by ViewVC 1.1.26