/[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

Contents of /trunk2/all2all.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 374 - (show annotations)
Sun Jun 20 16:57:52 2004 UTC (19 years, 9 months ago) by dpavlin
File MIME type: text/plain
File size: 1591 byte(s)
save mfn as field v000, _get logger handles calls from main as it should,
support for <filename> tag

1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 all2all.pl - basic script for all WebPAC needs
6
7 =cut
8
9 use strict;
10 use Data::Dumper;
11 use Carp;
12
13 use lib './lib';
14 use WebPAC;
15
16
17 my $webpac = new WebPAC(
18 code_page => 'ISO-8859-2',
19 limit_mfn => 500,
20 # debug => 1,
21 ) || die;
22
23 my $log = $webpac->_get_logger();
24
25 $|=1;
26
27 my $maxmfn = $webpac->open_isis(
28 filename => shift @ARGV || '/data/hidra/THS/THS',
29 lookup => [
30 { 'key' => 'd:v900', 'val' => 'v250^a' },
31 # { 'eval' => '"v901^a" eq "Podruèje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },
32 # { 'eval '=> '"v901^a" eq "Mikrotezaurus"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
33 # { 'eval' => '"v901^a" eq "Deskriptor"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
34 { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
35 { 'key' => '900_mfn:v900', 'val' => 'v000' },
36 ],
37 );
38
39 $log->info("rows: $maxmfn");
40
41 $webpac->open_import_xml(type => 'isis_hidra_ths');
42
43 while (my $rec = $webpac->fetch_rec) {
44
45 my @ds = $webpac->data_structure($rec);
46
47 if ($log->is_debug) {
48 $log->debug("rec = ",Dumper($rec));
49 $log->debug("ds = ",Dumper(\@ds));
50 }
51
52 next if (! @ds);
53
54 my $filename = $webpac->{'current_filename'};
55
56 if ($filename) {
57 open(OUT,"> $filename") || $log->logdie("can't open output '$filename': $!");
58 print OUT $webpac->output(
59 template => 'html.tt',
60 data => \@ds,
61 );
62 close(OUT);
63 } else {
64 print $webpac->output(
65 template => 'text.tt',
66 data => \@ds,
67 );
68 }
69
70 }
71
72 if ($log->is_debug) {
73 $log->debug("lookup hash: ",Dumper($webpac->{'lookup'}));
74 $log->debug("data hash: ",Dumper($webpac->{'data'}));
75 }

Properties

Name Value
cvs2svn:cvs-rev 1.64
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26