/[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 354 by dpavlin, Wed Jun 16 11:31:42 2004 UTC revision 366 by dpavlin, Thu Jun 17 01:44:25 2004 UTC
# Line 15  use WebPAC; Line 15  use WebPAC;
15    
16  my $webpac = new WebPAC(  my $webpac = new WebPAC(
17          code_page => 'ISO-8859-2',          code_page => 'ISO-8859-2',
18            limit_mfn => 5,
19            debug => 1,
20  ) || die;  ) || die;
21    
22  $|=1;  $|=1;
23    
 print "reading database\n";  
24  my $maxmfn = $webpac->open_isis(  my $maxmfn = $webpac->open_isis(
25          filename => shift @ARGV || '/data/hidra/THS-500/THS',          filename => shift @ARGV || '/data/hidra/THS/THS',
26          lookup => [          lookup => [
27          { 'key' => 'd:v900', 'val' => 'v250^a' },          { 'key' => 'd:v900', 'val' => 'v250^a' },
28  #       { 'eval' => '"v901^a" eq "Područje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },  #       { 'eval' => '"v901^a" eq "Područje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },
# Line 33  my $maxmfn = $webpac->open_isis( Line 34  my $maxmfn = $webpac->open_isis(
34    
35  print "rows: $maxmfn\n\n";  print "rows: $maxmfn\n\n";
36    
37  for (my $mfn = 1; $mfn <= $maxmfn; $mfn++) {  $webpac->open_import_xml(type => 'isis_hidra_ths');
         my $rec = $webpac->{'data'}->{$mfn} || die "no record with mfn $mfn";  
38    
39          print "-- ",$webpac->fill_in($rec,'v250^a (v901^a)'),"\n";  while (my $rec = $webpac->fetch_rec) {
40    
41      my $ds = $webpac->data_structure($rec);
42    
43      if(0) {
44    
45            print "-- ",$webpac->parse($rec,'v250^a / [v562^4] v562^a'),"\n";
46    
47            print " ",
48                    $webpac->parse($rec,'eval{v901^a eq "Deskriptor"}v250^a / [v562^4] v562^a'),
49                    $webpac->parse($rec,'eval{v901^a ne "Deskriptor"}250a [251]'),
50                    "\n";
51    
52          my @t = $webpac->fill_in($rec,'v553^1;;v553^a');          my @t = $webpac->fill_in($rec,'v553^1;;v553^a');
53          print " Uži pojam: ",join("\t\n",@t),"\n" if (@t);          print " Uži pojam: ",join("\t\n",@t),"\n" if (@t);
54    
55          @t = $webpac->fill_in($rec,'[a:v251::];;[d:[a:v251::]]');          @t = $webpac->fill_in($rec,'eval{v901^a eq "Područje"}[a:v251::];;[d:[a:v251::]]');
56          print " Područje: ",join("\t\n",@t),"\n" if (@t);          print " Područje: ",join("\t\n",@t),"\n" if (@t);
57    
58          @t = $webpac->fill_in($rec,'[a:v561^4:v251:];;[d:[a:v561^4:v251:]]');          @t = $webpac->fill_in($rec,'eval{v901^a eq "Mikrotezaurus"}[a:v561^4:v251:];;[d:[a:v561^4:v251:]]');
59          print " Mikrotezaurus: ",join("\t\n",@t),"\n" if (@t);          print " Mikrotezaurus: ",join("\t\n",@t),"\n" if (@t);
60    
61          @t = $webpac->fill_in($rec,'[a:v561^4:v562^4:v900];;[d:[a:v561^4:v562^4:v900]]');          @t = $webpac->fill_in($rec,'eval{v901^a eq "Deskriptor"}[a:v561^4:v562^4:v900];;[d:[a:v561^4:v562^4:v900]]');
62          print " Deskriptor: ",join("\t\n",@t),"\n" if (@t);          print " Deskriptor: ",join("\t\n",@t),"\n" if (@t);
63      }
64    
65  }  }
66    
67  print "## lookup ",Dumper($webpac->{'lookup'});  print "## lookup ",Dumper($webpac->{'lookup'});

Legend:
Removed from v.354  
changed lines
  Added in v.366

  ViewVC Help
Powered by ViewVC 1.1.26