X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;f=samples%2Fnet-z3950-zoom%2Fzoomtst3.pl;h=8f044f666132e196e4f984963888bd86e0c03083;hb=5c23abd4f7418d955f271041c050f49a3c3cdb3b;hp=16c144078a32ad7221cb7d01223b62f27bfaa891;hpb=4c3fdc54c3f333c976bf4eec94c69de75f8d8d4c;p=ZOOM-Perl-moved-to-github.git diff --git a/samples/net-z3950-zoom/zoomtst3.pl b/samples/net-z3950-zoom/zoomtst3.pl index 16c1440..8f044f6 100644 --- a/samples/net-z3950-zoom/zoomtst3.pl +++ b/samples/net-z3950-zoom/zoomtst3.pl @@ -1,7 +1,9 @@ -# $Id: zoomtst3.pl,v 1.5 2006-04-07 12:15:03 mike Exp $ +# $Id: zoomtst3.pl,v 1.8 2006-11-02 17:48:25 mike Exp $ # # See ../README for a description of this program. # perl -I../../blib/lib -I../../blib/arch zoomtst3.pl [...] +# for example: +# perl -I../../blib/lib -I../../blib/arch zoomtst3.pl z3950.loc.gov:7090/Voyager z3950.indexdata.com:210/gils endeavor.flo.org:7090/Voyager mineral use strict; use warnings; @@ -9,7 +11,7 @@ use Net::Z3950::ZOOM; if (@ARGV < 2) { print STDERR "Usage: $0 target1 target2 ... targetN query\n"; - print STDERR " eg. $0 bagel.indexdata.dk/gils localhost:9999 fish\n"; + print STDERR " eg. $0 z3950.indexdata.dk/gils localhost:9999 fish\n"; exit 1; } @@ -23,7 +25,7 @@ Net::Z3950::ZOOM::options_set($o, count => 10); # Preferred record syntax Net::Z3950::ZOOM::options_set($o, preferredRecordSyntax => "usmarc"); -Net::Z3950::ZOOM::options_set($o, elementSetName => "F"); +Net::Z3950::ZOOM::options_set($o, elementSetName => "B"); # Connect to all targets: options are the same for all of them for (my $i = 0; $i < $n; $i++) {