/[webpac]/trunk2/all2all.pl
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 /trunk2/all2all.pl

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

revision 460 by dpavlin, Tue Sep 21 20:43:43 2004 UTC revision 490 by dpavlin, Sat Oct 9 21:44:25 2004 UTC
# Line 7  all2all.pl - basic script for all WebPAC Line 7  all2all.pl - basic script for all WebPAC
7  =cut  =cut
8    
9  use strict;  use strict;
10    use locale;
11  use YAML;  use YAML;
12  use Carp;  use Carp;
13  use Getopt::Long;  use Getopt::Long;
# Line 64  my $maxmfn = $webpac->open_isis( Line 65  my $maxmfn = $webpac->open_isis(
65          { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },          { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
66          { 'key' => '900_mfn:v900', 'val' => 'v000' },          { 'key' => '900_mfn:v900', 'val' => 'v000' },
67          # tree structure          # tree structure
68          { 'eval' => 'length("v251") == 2', 'key' => 'root:v251', 'val' => 'v900' },          { 'eval' => 'length("v251") == 2 && "v800" =~ m/EUROVOC/ || "v800" =~ m/CROVOC/ && "v251" =~ m/^(H|HD|L|Z|P)$/', 'key' => 'root:v251', 'val' => 'v900' },
69          { 'eval' => '"v251"', 'key' => 'code:v900', 'val' => 'v561^4:v251' },          { 'eval' => '"v251"', 'key' => 'code:v900', 'val' => 'v561^4:v251' },
70          { 'eval' => '"v561^4" && "v562^4"', 'key' => 'code:v900', 'val' => 'v561^4:v562^4' },          { 'eval' => '"v561^4" && "v562^4"', 'key' => 'code:v900', 'val' => 'v561^4:v562^4' },
71          ],          ],
# Line 115  while (my $rec = $webpac->fetch_rec) { Line 116  while (my $rec = $webpac->fetch_rec) {
116          foreach my $ds (@ds) {          foreach my $ds (@ds) {
117                  next if (! $ds->{'swish'});                  next if (! $ds->{'swish'});
118    
119                    # strip all non word characters from beginning or end
120                    # of word
121                    my $words = join(" ",@{$ds->{'swish'}});
122                    $words =~ s/^\W+//;
123                    $words =~ s/\W*\s+\W*/ /g;
124                    $words =~ s/\W+$//;
125    
126                  $index->insert(                  $index->insert(
127                          index_name => $ds->{'tag'},                          index_name => $ds->{'tag'},
128                          path => $f,                          #path => $f,
129                            path => $webpac->mfn,
130                          headline => $headline,                          headline => $headline,
131                          words => join(" ",@{$ds->{'swish'}})                          words => $words,
132                  );                  );
133          }          }
134    
# Line 192  my @tree = ({ Line 201  my @tree = ({
201          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },
202          have_children   => sub { return $l->{"a:".$_[0]."::"} },          have_children   => sub { return $l->{"a:".$_[0]."::"} },
203          have_children_at_level => sub {          have_children_at_level => sub {
204                                  my $l2 = shift;                                  return unless (defined($l->{"code:".$_[1]}));
205                                  my $l1 = substr($l2,0,1);                                  my $code = shift @{$l->{"code:".$_[1]}};
206                                  return(9, "a:$l1:$l2:" ) if ($l->{"a:$l1:$l2"});                                  print STDERR "## $_[1] -> $code\n";
207                                    return undef unless($code);
208                                    return(9, $l->{"a:$code:"} ) if (defined($l->{"a:$code:"}));
209                          },                          },
210          style           => 'display: none',          style           => 'display: none',
211          },{          },{
# Line 266  my @tree = ({ Line 277  my @tree = ({
277          have_children   => sub { 0 },          have_children   => sub { 0 },
278          },{          },{
279          # 9 - level which is never reached except explicitly          # 9 - level which is never reached except explicitly
280          code_arr        => sub { @{$l->{$_[0]}} },          code_arr        => sub { @{$_[0]} },
281          filter_code     => sub { shift },          filter_code     => sub { shift },
282          lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },          lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
283          lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },          lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
284          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
285          have_children   => sub { 0 },          have_children   => sub { 0 },
286          have_children_at_level => sub { defined($l->{"a:".$_[1].":".$_[0]}) && return (9,"a:".$_[1].":".$_[0]) },          have_children_at_level => sub { defined($l->{"a:".$_[1].":".$_[0]}) && return (9,$l->{"a:".$_[1].":".$_[0]}) },
287          },{          },{
288  });  });
289    

Legend:
Removed from v.460  
changed lines
  Added in v.490

  ViewVC Help
Powered by ViewVC 1.1.26