/[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 370 - (show annotations)
Thu Jun 17 17:25:12 2004 UTC (19 years, 9 months ago) by dpavlin
File MIME type: text/plain
File size: 1093 byte(s)
method output using Template Toolkit to produce output

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 my $webpac = new WebPAC(
17 code_page => 'ISO-8859-2',
18 limit_mfn => 500,
19 debug => 1,
20 ) || die;
21
22 $|=1;
23
24 my $maxmfn = $webpac->open_isis(
25 filename => shift @ARGV || '/data/hidra/THS/THS',
26 lookup => [
27 { 'key' => 'd:v900', 'val' => 'v250^a' },
28 # { 'eval' => '"v901^a" eq "Podruèje"', 'key' => 'pa:v561^4:v562^4:v461^1', 'val' => 'v900' },
29 # { 'eval '=> '"v901^a" eq "Mikrotezaurus"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
30 # { 'eval' => '"v901^a" eq "Deskriptor"', 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
31 { 'key' => 'a:v561^4:v562^4:v461^1', 'val' => 'v900' },
32 ],
33 );
34
35 print "rows: $maxmfn\n\n";
36
37 $webpac->open_import_xml(type => 'isis_hidra_ths');
38
39 while (my $rec = $webpac->fetch_rec) {
40
41 my @ds = $webpac->data_structure($rec);
42
43 print $webpac->output(
44 template => 'text.tt',
45 data => \@ds,
46 ) if (@ds);
47
48 }
49
50 print "## lookup ",Dumper($webpac->{'lookup'});
51 print "## data ",Dumper($webpac->{'data'});

Properties

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

  ViewVC Help
Powered by ViewVC 1.1.26