Bug 17600: Standardize our EXPORT_OK
[srvgit] / misc / cronjobs / sitemap.pl
index 0d61531..93abb02 100755 (executable)
@@ -4,26 +4,27 @@
 #
 # 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 3 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.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 package Main;
 
 use Modern::Perl;
 use utf8;
-use Pod::Usage;
-use Getopt::Long;
-use C4::Biblio;
+use Pod::Usage qw( pod2usage );
+use Getopt::Long qw( GetOptions );
+
+use Koha::Script -cron;
 use Koha::Sitemapper;
 
 
@@ -49,17 +50,16 @@ unless ($url) {
         say "OPACBaseURL syspref isn't defined. You can use --url parameter.";
         exit;
     }
-    $url = 'http://' . $url;
 }
 $url =~ s/\/*$//g;
 
-my $sitemaper = Koha::Sitemapper->new(
+my $sitemapper = Koha::Sitemapper->new(
     verbose => $verbose,
     url     => $url,
     dir     => $dir,
     short   => $short,
 );
-$sitemaper->run();
+$sitemapper->run();
 
 
 =head1 USAGE
@@ -73,7 +73,8 @@ $sitemaper->run();
 =head1 SYNOPSIS
 
   sitemap.pl --verbose
-  sitemap.pl --noshort --url /home/koha/mylibrary/www
+  sitemap.pl --noshort --dir /home/koha/mylibrary/www
+  sitemap.pl --url opac.myDNSname.org
 
 =head1 DESCRIPTION