X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=samples%2Fzoom%2Fzoomscan.pl;h=b18c9d7093b966e8ebdc8d81bf04e8cb4e107b2d;hb=ecc0ec8f7c966c6566128351e46b5e0ba92d17d9;hp=15948794f35769b7fcf2468ead97257432976290;hpb=b8e3c8c65a2cbb7697f70cd958ce6251bee80248;p=ZOOM-Perl-moved-to-github.git diff --git a/samples/zoom/zoomscan.pl b/samples/zoom/zoomscan.pl index 1594879..b18c9d7 100644 --- a/samples/zoom/zoomscan.pl +++ b/samples/zoom/zoomscan.pl @@ -1,7 +1,5 @@ #!/usr/bin/perl -w -# $Id: zoomscan.pl,v 1.4 2007-08-17 18:35:17 mike Exp $ -# # This is the scanning counterpart to zoomscan.pl's searching # perl -I../../blib/lib -I../../blib/arch zoomscan.pl # @@ -28,7 +26,7 @@ my($host, $scanQuery) = @ARGV; eval { my $conn = new ZOOM::Connection($host, 0); $conn->option(preferredRecordSyntax => "usmarc"); - ### Could use ZOOM::Query::CQL below, but that only work in SRU/W. + ### Could use ZOOM::Query::CQL below, but that only works in SRU/W. my $q = $opts{q} ? new ZOOM::Query::CQL($scanQuery) : new ZOOM::Query::PQF($scanQuery); my $ss = $conn->scan($q);