X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=misc%2Fstage_biblios_file.pl;h=6e2b30cca873b9966b32a5cb484ed805dade5282;hb=0486d0c6b781fbda73df19eb825ef330bdc4544a;hp=3f180821042813db35a705956b7c1b86c6dd7848;hpb=5e0b850d49f452ffbca41f47dc190d6d4f2323c7;p=koha_fer diff --git a/misc/stage_biblios_file.pl b/misc/stage_biblios_file.pl index 3f18082104..6e2b30cca8 100755 --- a/misc/stage_biblios_file.pl +++ b/misc/stage_biblios_file.pl @@ -1,7 +1,25 @@ #!/usr/bin/perl +# This file is part of Koha. +# +# Copyright (C) 2007 LibLime +# Parts Copyright BSZ 2011 +# +# 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 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 this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + use strict; -#use warnings; FIXME - Bug 2505 +use warnings; BEGIN { # find Koha's Perl modules # test carefully before changing this @@ -17,6 +35,7 @@ use Getopt::Long; $| = 1; # command-line parameters +my $encoding = ""; my $match_bibs = 0; my $add_items = 0; my $input_file = ""; @@ -25,14 +44,19 @@ my $want_help = 0; my $no_replace ; my $result = GetOptions( + 'encoding:s' => \$encoding, 'file:s' => \$input_file, - 'match-bibs:s' => \$match_bibs, + 'match-bibs:s' => \$match_bibs, 'add-items' => \$add_items, 'no-replace' => \$no_replace, 'comment:s' => \$batch_comment, 'h|help' => \$want_help ); +if ($encoding eq "") { + $encoding = "utf8"; +} + if (not $result or $input_file eq "" or $want_help) { print_usage(); exit 0; @@ -67,11 +91,9 @@ sub process_batch { } close IN; - my $marc_flavor = C4::Context->preference('marcflavour'); - print "... staging MARC records -- please wait\n"; my ($batch_id, $num_valid, $num_items, @import_errors) = - BatchStageMarcRecords($marc_flavor, $marc_records, $input_file, $batch_comment, '', $add_items, 0, + BatchStageMarcRecords($encoding, $marc_records, $input_file, $batch_comment, '', $add_items, 0, 100, \&print_progress_and_commit); print "... finished staging MARC records\n"; @@ -141,6 +163,9 @@ records into the main Koha database. Parameters: --file name of input MARC bib file + --encoding encoding of MARC records, default is utf8. + Other possible options are: MARC-8, + ISO_5426, ISO_6937, ISO_8859-1, EUC-KR --match-bibs use this option to match bibs in the file with bibs already in the database for future overlay.