--- trunk2/all2all.pl 2004/09/23 23:17:42 466 +++ trunk2/all2all.pl 2004/09/26 15:11:36 471 @@ -64,7 +64,7 @@ { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' }, { 'key' => '900_mfn:v900', 'val' => 'v000' }, # tree structure - { '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' }, { 'eval' => '"v251"', 'key' => 'code:v900', 'val' => 'v561^4:v251' }, { 'eval' => '"v561^4" && "v562^4"', 'key' => 'code:v900', 'val' => 'v561^4:v562^4' }, ], @@ -200,9 +200,11 @@ lookup_mfn => sub { shift @{$l->{"900_mfn:".$_[1]}} }, have_children => sub { return $l->{"a:".$_[0]."::"} }, have_children_at_level => sub { - my $l2 = shift; - my $l1 = substr($l2,0,1); - return(9, "a:$l1:$l2:" ) if ($l->{"a:$l1:$l2"}); + return unless (defined($l->{"code:".$_[1]})); + my $code = shift @{$l->{"code:".$_[1]}}; + print STDERR "## $_[1] -> $code\n"; + return undef unless($code); + return(9, $l->{"a:$code:"} ) if (defined($l->{"a:$code:"})); }, style => 'display: none', },{ @@ -274,13 +276,13 @@ have_children => sub { 0 }, },{ # 9 - level which is never reached except explicitly - code_arr => sub { @{$l->{$_[0]}} }, + code_arr => sub { @{$_[0]} }, filter_code => sub { shift }, lookup_v900 => sub { shift @{$l->{"code:".$_[0]}} }, lookup_term => sub { shift @{$l->{"d:".$_[0]}} }, lookup_mfn => sub { shift @{$l->{"900_mfn:".$_[0]}} }, have_children => sub { 0 }, - 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]}) }, },{ });