ffzg/recall_notices.pl: added --interval and --dedup
[koha.git] / C4 / Search / PazPar2.pm
index f543c96..fed5c2c 100644 (file)
@@ -4,20 +4,21 @@ package C4::Search::PazPar2;
 #
 # This file is part of Koha.
 #
-# Koha is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2 of the License, or (at your option) any later
-# version.
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
 #
-# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along with
-# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 use strict;
+#use warnings; FIXME - Bug 2505
 
 use LWP::UserAgent;
 use URI;
@@ -33,6 +34,8 @@ C4::Search::PazPar2 - implement client for PazPar2
 
 =head1 SYNOPSIS
 
+=cut
+
 =head1 DESCRIPTION
 
 =cut
@@ -102,6 +105,7 @@ sub show {
     my $self = shift;
     my $start = shift;
     my $count = shift;
+    my $sort = shift;
 
     my $uri = URI->new($self->{'endpoint'});
     $uri->query_param(command => 'show');
@@ -109,6 +113,7 @@ sub show {
     $uri->query_param(num => $count);
     $uri->query_param(block => 1);
     $uri->query_param(session => $self->{'session'});
+    $uri->query_param(sort => $sort);
     my $response = $self->{'ua'}->get($uri);
     if ($response->is_success) {
         return $response->content;
@@ -161,7 +166,7 @@ sub termlist {
 
 =head1 AUTHOR
 
-Koha Development Team <info@koha.org>
+Koha Development Team <http://koha-community.org/>
 
 Galen Charlton <galen.charlton@liblime.com>