Bug 25898: Prohibit indirect object notation
[srvgit] / docs / CAS / CASProxy / examples / koha_webservice.pl
index cb161f7..da7fc8b 100755 (executable)
@@ -4,44 +4,47 @@
 #
 # 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>.
 
 =head1 DESCRIPTION
 
-# Here is an exemple of a simple phony webservice, returning "Hello World" if the user is authenticated
+# Here is an example of a simple phony webservice, returning "Hello World" if the user is authenticated
 # The purpose is to show how CAS Proxy can work with koha
 # In this configuration, this page acts as a CAS Client, instead of the user's browser.
 # This page is meant to be called from a foreign application
 
 =head1 CGI PARAMETERS
 
+=over
+
 =item PT
 The Proxy Ticket, needed for check_api_auth, that will try to make the CAS Server validate it.
 
+=back
+
 =cut 
 
 use utf8;
-use strict;
-use warnings;
-binmode(STDOUT, ":utf8");
+use Modern::Perl;
+binmode(STDOUT, ":encoding(UTF-8)");
 
 use C4::Auth qw(check_api_auth);
 use C4::Output;
 use C4::Context;
-use CGI;
+use CGI qw ( -utf8 );
 
-my $cgi = new CGI;
+my $cgi = CGI->new;
 
 print CGI::header('-type'=>'text/plain', '-charset'=>'utf-8');