-$Id: Changes,v 1.6 2005-12-19 13:47:11 mike Exp $
+$Id: Changes,v 1.7 2005-12-19 17:39:19 mike Exp $
Revision history for Perl extension Net::Z3950::ZOOM.
but they don't seem to work: the code in them is slapped
down right next to the CODE:, so declarations are not
acceptable there either.)
+ - Add new function Net::Z3950::ZOOM::connection_scan1(), which
+ uses a query object to indicate the start-term. This opens
+ the way for using CQL queries for scanning once the
+ underlying ZOOM-C code supports this.
1.00 Wed Dec 14 11:18:33 GMT 2005
- First distributed version.
-# $Id: ZOOM.pod,v 1.22 2005-12-13 16:46:59 mike Exp $
+# $Id: ZOOM.pod,v 1.23 2005-12-19 17:42:15 mike Exp $
use strict;
use warnings;
a C<ZOOM::Query::PQF> object. See the documentation of that class for
information about PQF.
-=head4 scan()
+=head4 scan() / scan1()
+
+ ### Code sample needed here!
Many Z39.50 servers allow you to browse their indexes to find terms to
search for. This is done using the C<scan> method, which creates and
but overriding this can be useful to get a high-level overview of the
index.
+The C<scan1()> method is the same as C<scan()> except that it takes a
+Query object as its argument instead of a PQF string. This means
+that it can be used to scan using a CQL term, so long as the
+underlying ZOOM-C library supports this.
+
=back
=head4 package()